unit UNIT set the default unit to UNIT version display the version number and copyright information of GNU Parted (parted) select /dev/sdb Using /dev/sdb (parted) print Model: ATA ST3500413AS (scsi) Disk /dev/sdb: 500GB Sector size (logical/physical): 512B/512B Partition Table: msdos
Number Start End Size Type File system Flags 1 1049kB 500GB 500GB primary ext4
(parted) quit 其中上面parted的内部命令: help 代表帮助,将会打印所有内部命令 select /dev/sdb 代表切换到硬盘sdb print 代表打印分区文件系统类型 quit 代表退出那么我们已经知道了sdb已被格式化为ext4,接下来就要挂载硬盘来目录了: root@figo:/home/feigo# mkdir /data1 root@figo:/home/feigo# mount /dev/sdb1 /data1 root@figo:/home/feigo# df -Th 文件系统 类型 容量 已用 可用 已用% 挂载点 rootfs rootfs 102G 93G 4.5G 96% / udev devtmpfs 10M 0 10M 0% /dev tmpfs tmpfs 799M 3.0M 796M 1% /run /dev/disk/by-uuid/3640f24a-4870-42e2-ae07-109cb9c35164 ext4 102G 93G 4.5G 96% / tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs tmpfs 4.6G 376K 4.6G 1% /run/shm /dev/sda7 ext4 92M 26M 62M 30% /boot /dev/sda9 ext4 201G 23G 169G 12% /home /dev/sdb1 ext4 459G 198M 435G 1% /data1 可以看到/dev/sdb1已经被挂载到/data1下了,剩余的工作就是迁移数据了。 4. 最后一步就是实现开机自动挂载/dev/sdb1到/data1下: 编辑/etc/fstab文件,加入下面两行内容: root@figo:/home/feigo# vi /etc/fstab # load /dev/sdb1 to /data1 when the system startup /dev/sdb1 /data1 ext4 defaults 1 2 然后再用mount -a确定/etc/fstab设置没有错误,再用mount查看已挂载的设备: root@figo:/home/feigo# mount -a root@figo:/home/feigo# mount sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) udev on /dev type devtmpfs (rw,relatime,size=10240k,nr_inodes=1020978,mode=755) devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=818060k,mode=755) /dev/disk/by-uuid/3640f24a-4870-42e2-ae07-109cb9c35164 on / type ext4 (rw,relatime,errors=remount-ro,user_xattr,barrIEr=1,data=http://www.3lian.com/edu/2015/03-11/ordered) tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k) tmpfs on /run/shm type tmpfs (rw,nosuid,nodev,noexec,relatime,size=4766880k) /dev/sda7 on /boot type ext4 (rw,relatime,user_xattr,barrIEr=1,data=http://www.3lian.com/edu/2015/03-11/ordered) /dev/sda9 on /home type ext4 (rw,relatime,user_xattr,barrIEr=1,data=http://www.3lian.com/edu/2015/03-11/ordered) rPC_pipefs on /var/lib/nfs/rPC_pipefs type rPC_pipefs (rw,relatime) binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,nosuid,nodev,noexec,relatime) /dev/sdb1 on /data1 type ext4 (rw,relatime,user_xattr,barrIEr=1,data=http://www.3lian.com/edu/2015/03-11/ordered) |