zoukankan      html  css  js  c++  java
  • How to mount a disk from terminal

    Acknowledgement to posts on https://askubuntu.com/questions/125257/how-do-i-add-an-additional-hard-drive

    1. Partition

    1.1 Find your disk

    Run the following command to find your disk. Note that sudo is required or there won't be any output.

    sudo blkid

    1.2 Format your disk (1) - create a partition

    If it is already formatted, you should see entry like /dev/sdb1 with UUID and PARTUUID settings. (not formatted properly if only UUID or PARTUUID is shown!) For example, you need to format your hdd with output like this:

    ...
    /dev/sdb: UUID="the UUID" TYPE="ext4"
    ...

     If your disk is not formatted, create a new partition:

     sudo cgdisk /dev/sdb

    Follow the instructions of cgdisk. Choose [New] and press enter to create new partition from free space. The default options are ok. Then cgdisk has results like this

    Part. #     Size        Partition Type            Partition Name
    ----------------------------------------------------------------
                1007.0 KiB  free space
       1        7.3 TiB     Linux filesystem

    Choose [write] and press enter. Input "yes" after you see

    Are you sure you want to write the partition table to disk? (yes or no): yes

    And then press [Quit].

    1.3 Format your disk (2) - formating

    Format the partitioned disk

    sudo mkfs -t ext4 /dev/sdb1

    The formatting takes about one minute. Then after you run `sudo blkid` again, you should be able to see both UUID and PARTUUID like this

    ...
    /dev/sdb1: UUID="...123..." TYPE="ext4" PARTUUID="...456..."
    ...

    2. Mount

    After you are done creating your partitions (it will be just one ext4 data partition after running the commands above), you need to permanently mount it.

    2.1 Create a mount point

    sudo mkdir /hdd

    2.2 Edit /etc/fstab

    Open `/etc/fstab` file with `root` permissions.

    sudo vim /etc/fstab

    Add following to the end of the file:

    UUID=[the generated UUID]    /hdd    ext4    defaults    0    0

     2.3 Mount partition

    Last step and you're done!

    sudo mount /hdd
  • 相关阅读:
    TP5.1 路由验证器验证返回json提示
    win10 docker ubuntu14.04 php 编译安装 php7.3.20
    ubuntu15.10 sources.list 修改
    秒杀系统设计
    class命名规范
    php实现阿里云签名类
    【小程序】应用的生命周期,页面的生命周期
    php.ini配置文件参数中文说明文档
    tp5.1 nginx配置
    phpstudycomposer thinkPHP5.1 使用
  • 原文地址:https://www.cnblogs.com/cxxszz/p/15737923.html
Copyright © 2011-2022 走看看