NAS를 Linux로 편리하게 접근하기...
----------------------------------------------------------------
ftp server를 file system으로 mount (curlftp) : linux 용 netdrive
----------------------------------------------------------------
NAS에서 FTP 서비스를 open 한 경우, 해당 ftp 서버를 local file system으로 mount 가능
# apt-get install curlftpfs
# curlftpfs -o user=ID:PASSWORD -o codepage=euc-kr -o allow_other ftp://${ftp_server_ip} /mnt/${target_dir}
>> '잘못된 인코딩' 에러가 나면서, 한글 파일이 깨질 경우... codepage를 'euc-kr' 혹은 'cp949' 등으로 테스트하면서 적용해야 함...
>> unicode 의 경우는 codepage는 'utf8' 로 mount
# fuser -ck /mnt/${target_dir}; umount /mnt/${target_dir}
----------------------------------------------------------------
cifs file system mount
----------------------------------------------------------------
+. 직접 file system을 mount
mount -t cifs //192.168.0.100/1x /mnt/1x -o username=_user,password=_pwd,iocharset=utf8,rw
mount -t cifs //192.168.0.100/1x /mnt/1x -o username=_user,password=_pwd,iocharset=cp949,rw
+. /etc/fstab파일을 수정해서 file system에 mount 값 적용
- /etc/fstab 파일에 아래의 항목 추가
//192.168.0.100/mnt_source /mnt/mnt_point cifs username=_user,pass=_pwd,rw,ver=1,iocharset=utf8,domain=embeded 0 0
- mkdir -p /mnt/mnt_point
- mnt /mnt/mnt_point (또는 mount -a)
- umount /mnt/mnt_point
'Linux (pLinux & x86)' 카테고리의 다른 글
idle시 HDD spindown 을 통해 HDD saving 모드 지정 (0) | 2013.01.17 |
---|---|
LinuxMint 에서 compiz 설정하기... (0) | 2013.01.17 |
ubuntu 12.04 server basic configuration... (0) | 2012.10.30 |
apt-get & apt-cache 명령어 정리 (0) | 2012.10.05 |
ubuntu에서 samba && nfs && tftp 구성 (0) | 2012.10.05 |