Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- python
- 마운트
- 커피
- 비트코인
- mount
- 카페
- Linux
- 파이썬
- ChatGPT
- Trading
- python3-venv
- bot
- 암호화폐
- 리눅스
- CMAKE_CXX_COMPILER
- freqtrade
- nandsim
- 나이키
- 맛집
- 에러
- 트레이딩 봇
- SNRKS
- UBIFS
- No JVM
- virtualbox
- 세종
- 공유폴더
- 챗지피티
- ubuntu
- 가상화폐
Archives
- Today
- Total
beauty in struggle
Mount vmware-linux shared folder, Host 공유폴더 mount 하기 본문
728x90
SMALL
먼저 vmware GUI에서 linux guest에 공유폴더(vm_shared)를 설정 해준다.
vmware guest인 linux의 terminal에서 다음 command로 vmware에서 공유된 폴더를 불러온다.
vmware-hgfsclient *
~/shared 폴더를 만들고, 여기에 shared folder를 mount 한다.
mkdir ~/shared
sudo vmhgfs-fuse .host:/vm_shared ~/shared -o allow_other -o uid=1000
이 설정은 linux가 재시작할 때마다 사라지기 때문에, linux가 booting될때 이 공유폴더가 자동으로 mount 되도록 해준다.
- 먼저 /etc/fstab 파일을 열고,
sudo nano /etc/fstab
- 아래의 내용을 추가해준다.
# To share folders in host with guests of vmware
.host:/vm_shared ~/shared fuse.vmhgfs-fuse defaults,allow_other,uid=1000 0 0
728x90
LIST
'After-work > linux' 카테고리의 다른 글
No CMAKE_CXX_COMPILER could be found (0) | 2023.11.17 |
---|---|
Mounting UBI file system(image) using nandsim (0) | 2023.06.21 |
python jpype: No JVM shared library file (libjvm.so) found 문제 (0) | 2023.04.05 |
WSL에서 python3-venv 설치 오류 해결 (0) | 2023.04.04 |
Javadoc HTML 파일 다운로드 (0) | 2023.03.29 |
Comments