Ubuntu Linux Samba 공유 폴더 Mount 하기 (삼바 폴더 마운트 하기)
samba 로 연결된 공유폴더는 / 파일 시스템에 연결 되어 있지 않아서 shell script 등으로 작업이 불가능 할 경우가 있습니다. 이때 공유 폴더를 mount 해서 사용하면 됩니다.
mount 는 root 권한이 필요하므로 sudo 명령어로 실행합니다.
samba 로 공유된 폴더의 경로가 smb://192.168.69.2/share/ 일 경우
$ mkdir share_mount
$ sudo mount -t cifs -o username=jason //192.168.69.2/share/ /home/jason/share_mount
-t : mount type 설정 (cifs : Common Internet File System)
-o : 추가 옵션 설정
더이상 사용하지 않을 경우는 아래와 같은 명령어로 Mount 를 해제 할 수 있습니다.
$ sudo unmount /home/jason/share_mount
samba 폴더외에도 윈도우에서 공유한 폴더도 위와 같은 방법으로 마운트 하여 사용할 수 있습니다.
Ubunut 에서 telnet 연결 끊기 disconnect telnet connection (0) | 2014.09.11 |
---|---|
android source web 에서 확인 하는 방법 (0) | 2013.02.05 |
ubuntu linux 폴더별 용량 (디렉토리별 용량) / folder space usage (directory space usage) (0) | 2012.10.31 |
Ubuntu usb hdd manual mount (USB 하드디스크 수동 mount 하기) (0) | 2012.10.27 |
ubuntu 에서 rpm package 설치하기 (0) | 2012.10.25 |