Linux 系统磁盘操作记录

文章目录

    • 1 用dd制作系统启动盘
    • 2 分区
    • 3 挂载分区
      • 3.1 命令行下操作
      • 3.2 图形界面操作
    • 4 设置 swap 分区
    • Reference

1 用dd制作系统启动盘

$ sudo fdisk -l #查看磁盘分区情况
#假设用来制作启动盘的u盘为/dev/sdb
$ sudo umount /dev/sdb* #卸载U盘
# 如果显示 'target is busy',用下面的命令
$ umount -l /dev/sdb*
$ sudo mkfs.vfat /dev/sdb*  #格式化磁盘为FAT格式,linux 系统用 mkfs.ext4
#写iso文件 加上status=progress可以看到写进度
$ sudo dd bs=4M if=/home/rivalak/Downloads/ubuntu-18.04.1-desktop-amd64.iso of=/dev/sdb status=progress
#同步缓存中的数据到磁盘
sync

2 分区

  1. 启动电脑加载刚刚装好的启动盘
  2. 点击试用 ubuntu 系统
  3. 打开 GParted 分区工具开始操作,也可以用 fdisk 命令分区

3 挂载分区

3.1 命令行下操作

$ mkdir ~/Workspace/adhoc
$ sudo mount /dev/sda ~/Workspace/adhoc
# 查看是否挂载成功
$ df -h
# 设置开机自动挂载
$ blkid # 查看 UUID
$ vim /etc/fstab # 添加新挂载的分区

3.2 图形界面操作

这样你可以先在图形界面下格式化磁盘,改一个你想要的名字 再进行挂载

You could edit the /etc/fstab file in a text editor like such as gedit or subl, or you could just do this:

  • Make sure the Hard Drive is connected.
  • Open Disks
  • Click on the Hard Drive you want to modify.
  • Click on the Partition you want to modify.
  • Click on the gear icon
  • Click on Edit Mount Options
  • Move the Automatic Mount Options slider to Off
  • Type in the path you want the Partition mounted too in the Mount Point text box. Click the OK button. 这里千万不要和本磁盘的 label 重名了,不然会挂载不上
  • Type in the super-user password. This will make the necessary changes to the /etc/fstab file for you.

4 设置 swap 分区

创建 swap 分区

Reference

  • sync命令解析
  • Linux 下进行硬盘挂载、分区、删除分区,格式化,卸载方法
  • How to set default mount point? [duplicate]

你可能感兴趣的:(#,Linux)