여유공간이 많아요/home
df -h
산출
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 8,9G 2,1G 6,4G 25% /
tmpfs 499M 4,0K 499M 1% /dev/shm
/vol/home 2,7T 2,3T 403G 86% /home
/home/user/project
내부에는 다음 디렉토리가 있습니다 .
$ ls /home/user/project
log data bin
이 디렉토리를 "마운트"하는 것이 가능합니까?
나는 이것을 달성하고 싶습니다 :
$ df -h
/dev/sda2 8,9G 2,1G 6,4G 25% /
tmpfs 499M 4,0K 499M 1% /dev/shm
/vol/home 2,7T 2,3T 403G 86% /home
/vol/home/user 2,7T 2,3T 403G 86% /project/data
/vol/home/user 2,7T 2,3T 403G 86% /project/log
답변1
파일 시스템 매핑을 구현하는 데 기호 링크를 사용할 수 있습니다.
cd /
ln -s home/user/project
답변2
당신은 그것을 사용할 수 있습니다 mount --bind
. 그러나 나는 그것이 나타날 것이라고 믿지 않는다.df -h
mount --bind /vol/home /home
mount --bind /vol/home/user /project/data
mount --bind /vol/home /project/log
.
-B, --bind
Remount a subtree somewhere else (so that its contents are
available in both places). See above.-