Last active
June 24, 2018 08:14
-
-
Save dongzhuoyao/3d5957a349c506cb7ad0022e1df0e26e to your computer and use it in GitHub Desktop.
mount disk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
sudo fdisk -l | |
sudo mount -t ext4 /dev/sda1 /data1 && | |
sudo mount -t ext4 /dev/sdb1 /data2 && | |
sudo mount -t ext4 /dev/sdc1 /data3 && | |
sudo mount -t ext4 /dev/sde1 /data4 && | |
sudo mount -t ext4 /dev/sdf1 /data5 && | |
sudo mount -t ext4 /dev/sdg1 /data6 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment