1 / 8

How to Change Linux Partition Label Names

Sometimes you may need to change Linux Partition Label Names. There are many command line and GUI tools available for this purpose. Here are the steps to do it.<br><br>Visit https://fedingo.com/how-to-change-linux-partition-label-names/

Download Presentation

How to Change Linux Partition Label Names

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. How to Change Linux Partition Label Names

  2. Change Disk Partition Label Names Sometimes you may need to change Linux partition label names. In this article, we will learn how to do this. There are several tools and commands to change Linux partition label names, some are meant for a specific type of disk format such as Ext, or NTFS while some are meant for all types of disk format.

  3. e2label or tune2fs e2label and tune2fs are commands to change partition labels of ext2, ext3, ext4 partitions. # e2label /dev/sda1 ROOT OR # tune2fs –L ROOT_PART /dev/sda1

  4. ntfslabel ntfslabel command is used to changing labels of NTFS partitions. # ntfslabel /dev/sda5 NTFS_DIR

  5. reiserfstune If you want to change label of reiserFS formatted partition, you can use reiserfstune command. # reiserfstune –l HOME_PART /dev/sdb1

  6. mkswap You can also use mkswap to command to change label of SWAP partition. After you unmount the SWAP partition, you can run the following command to change its label. # mkswap -L SWAP_PART /dev/sda5

  7. exfatlabel If your partition is exFAT formatted, you can use the following command to change its label. # exfatlabel /dev/sda3 EX_PART

  8. Thank You Visit for details https://fedingo.com/how-to-change-linux-partition-label-names/

More Related