Home > Common Problem > body text

What are the linux partitioning tools?

DDD
Release: 2023-06-09 17:56:13
Original
4106 people have browsed it

Linux partitioning tools include: 1. GParted, the most popular disk partition manager; 2. KDE Partition Manager, which has all basic functions, such as creating, deleting and resizing partitions; 3. GNOME Disk, which provides It has all the basic functions such as deleting, adding new, resizing and adjusting partitions; 4. FDisk, pre-installed in every Linux-based distribution; 5. GNUparted, a command line utility.

What are the linux partitioning tools?

#The operating environment of this article: linux5.18.14 system, dell g3 computer.

Partitions are first created in the Linux operating system during installation, but you can also add, delete, modify and resize partitions at any time after installation. Disk Partition Manager is especially useful for adding new drives or USB When you have a memory stick and have to change its file system, there are various GUI and command line based disk partition managers, we will discuss their usage below and help you choose the best option for you.

Linux partitioning tools are:

1. GParted

GParted is the most popular disk partition manager, it even Comes pre-installed on many Linux distributions, if it is not installed then search in your software center and you will find it, to install this application from the command line you can type the following command in the terminal, depending on your Distro:

For Ubuntu based distributions:

sudo apt install gparted
Copy after login

For Fedora Workstation:

sudo dnf install gparted
Copy after login

For Arch Linux and Arch based distros:

sudo pacman -S gparted
Copy after login

When it starts, it will prompt you for your sudo password for admin authentication , you can also try data rescue if you accidentally deleted some files. It also has a Live CD image that you can burn to disk and then modify your root partition from as well.

2. KDE Partition Manager

This application comes pre-installed in all distributions shipped with the KDE desktop environment, however, if for some reason it is not installed on your distribution, you can always install it from your distribution's software store. If you wish to install it on a distribution with DE other than KDE, just search for it in the Software Center or install it via the command line.

For Ubuntu-based distributions:

sudo apt install kde-partitionmanager
Copy after login

For Fedora Workstation:

sudo dnf install kde-partitionmanager
Copy after login

For Arch Linux and Arch-based Distro:

sudo pacman -S kde-partitionmanager
Copy after login

When you launch it it will ask you for your password to get administrative rights otherwise it will not work properly. It has all the basic functions like creating, deleting and resizing partitions.

3. GNOME Disk

This application is provided by default in the GNOME desktop environment and it provides all the basic functions such as delete, add new, resize and adjust Partition. You can even repair partitions or restore disk images using this application.

To install it on your distribution, you can look for GNOME Disk in the Software Center, or install it via the command line, using the following command:

On Ubuntu-based distributions:

sudo apt install baobab
Copy after login

For Arch Linux and Arch-based distributions:

sudo pacman -S baobab
Copy after login

For Fedora Workstation:

sudo dnf install baobab
Copy after login

4. FDisk

Fdisk comes pre-installed in every Linux-based distribution. To start it, you must specify the disk you want to manage and sudo permissions. For example:

sudo fdisk /dev/sda
Copy after login

命名要修改的设备时要小心。在使用“”运行fdisk命令之前仔细检查所有已安装的驱动器lsblk。

更多命令选项,按m或参考官方文档页面。但是,如果您不习惯使用命令行工具,您应该坚持使用GUI分区管理器。

5. GNUparted

它也是一个命令行实用程序,预装在所有Linux发行版中,要从终端启动它,请键入:

sudo parted
Copy after login

要了解如何使用GNUparted,您可以键入help然后按Enter。

总结

我们希望您已经弄清楚您将在方便时使用哪个分区管理器,建议初学者使用GUI工具,但如果您知道自己在做什么,那么CLI工具会更快。

The above is the detailed content of What are the linux partitioning tools?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!