在使用linux過程中,有時需要使用/home獨(dú)立分區(qū)。如果在安裝過程中沒有建立/home分區(qū)情況下,則需要通過磁盤分區(qū)軟件創(chuàng)建/home分區(qū)。再將/home主目錄遷移到/home分區(qū)。網(wǎng)上的方法也不少,但操作比較復(fù)雜。今天我以linuxmint為例介紹一種簡單方法。 1、創(chuàng)建/home分區(qū),復(fù)制home主文件夾。 2、運(yùn)行磁盤軟件,見下圖 3、選中/home分區(qū),點(diǎn)按“其它分區(qū)選項(xiàng)”,選中“編輯掛載選項(xiàng)”,修改掛載點(diǎn)為“/home”,其它選項(xiàng)不需操作。見下圖: 完成后,大功告成。查看fstab文件已經(jīng)變化。下面是我的fstab文件內(nèi)容 # /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/sdb8 during installation UUID=193127ce-ded6-447c-a449-631b179438f3 / ext4 errors=remount-ro 0 1 /swapfile none swap sw 0 0 /dev/disk/by-uuid/ca3796ce-61fe-4390-9b12-f121d7cb9a2a /home auto nosuid,nodev,nofail,x-gvfs-show 0 0 /dev/disk/by-uuid/7EBB5A5E0E826558 \040/media/lyx-mint/軟件 auto nosuid,nodev,nofail,x-gvfs-show 0 0 綠色部分為/home分區(qū)掛載信息。 |
|