how to change home to another partition

来源:互联网 发布:淘宝上的费列罗真假 编辑:程序博客网 时间:2024/05/21 06:21
1.if you need to new an partition,$sudo apt-get install gparted,
a software for partition admin.

*how to change the /home to another to another partition
# cd /
# mv /home /home.old
# mkdir /home      
# mount /dev/sda10 /home

edit /etc/fstab
add a line like :
/dev/sda10  /home   ext2    defaults    1   2