summaryrefslogtreecommitdiff
path: root/linux rename drive.txt
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-08-13 16:26:13 -0400
committerluxagraf <sng@luxagraf.net>2020-08-13 16:26:13 -0400
commitc657feb58769c1f975af2f2ab4968da1b1e42158 (patch)
treea1bf11fbaedb094c480ebbdc9e4e0d83508b1090 /linux rename drive.txt
parent0d1cba91e435b1d613735d4537a64673e5c2731d (diff)
added reading moved tech to folder cleaned up old notes
Diffstat (limited to 'linux rename drive.txt')
-rw-r--r--linux rename drive.txt32
1 files changed, 0 insertions, 32 deletions
diff --git a/linux rename drive.txt b/linux rename drive.txt
deleted file mode 100644
index da86d5e..0000000
--- a/linux rename drive.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-title: Rename a drive in Linux
-source: http://askubuntu.com/questions/276911/how-to-rename-partitions
-
-
-From the command line
-
-Replace /dev/sdxN with your partition (e.g. /dev/sdc1).
-
- for FAT32:
-
- sudo mlabel -i /dev/sdxN ::"my_label"
-
- or:
-
- sudo fatlabel /dev/sdxN my_label
-
- for NTFS:
-
- sudo ntfslabel /dev/sdxN my_label
-
- for exFAT:
-
- sudo exfatlabel /dev/sdxN my_label
-
- for ext2/3/4:
-
- sudo e2label /dev/sdxN my_label
-
- for BTRFS:
-
- sudo btrfs filesystem label /dev/sdxN my_label
-