summaryrefslogtreecommitdiff
path: root/linux rename drive.txt
diff options
context:
space:
mode:
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
-