출처:http://www.markinthedark.nl/news/ubuntu-linux-unix/85-howto-mount-synology-nas-ds211j-to-ubuntu.html
작성자 Mark Veenstra
2011년 9월 08일 목요일 13:45
So you are done configuring your Synology NAS and want to be able to access your Synology NAS through your Ubuntu PC or laptop?
혹시 당신은 Synology NAS를 당신의 우분투(Ubuntu)에 마운트 해서 사용하고 싶습니까?
With Linux you can mount your NAS to your Ubuntu distro. Always wondered how? This tutorial helps you find your way to do.
당신은 우분투에 NAS를 마운트해서 사용하실수 있습니다. 궁금하시죠? 여기서 당신께 그 방법을 알려드리겠습니다.
First of all you need to login into DSM of your Synology. Once you are logged into DSM go to 'Configuration' and then open 'Win/Mac/NFS'.
먼저 Synology DSM에 로그인합니다. DSM에 로그인 하셨다면 "Configuration(제어판)"에서 "Win/Mac/NFS"를 열어 주세요.
In this window click on tab 'NFS-service'. Make sure you enabled the NFS-service and save it. Then go back to the main configuration screen and open the option 'Shared folder'.
해당 창에서 'NFS-서비스'탭을 클릭하신후에 NFS-서비스가 활성화시켜주시고 적용을 합니다. 그리고 다시 제어판으로 돌아와서 공유폴더를 열어주세요.
You will see all of your shared folders in here. Select a folder you want to access from your Ubuntu and click on the button 'NFS-rights'. This will open up a screen and click on the button 'Create'. Enter the next values:
들어가보면 모든 공유폴더를 보실수 있는데요. 여기서 당신이 우분투에 마운트 시킬 공유폴더를 선택하신 다음에 '권한'> 'NFS 권한'을 선택해주세요. 생성버튼을 클릭하신다음에요 다음 값들을 입력하세요.
Hostname or IP: 192.168.1.0/24 (This should be your internal IP range)
호스트이름 또는 IP: 192.168.0.0/24 (당신의 내부 IP 범위여야 합니다)
Rights: Read/Write
권한: 읽기/쓰기
Root squash: NoEnable Asynchroon
Root squash: 매핑 없음
Repeat this for every folder you want to share to your Ubuntu distro. For example I have done this for the shared folders 'photo', 'music' and 'video'. After you finished this for all folders, we are done with DSM. You can close this now.
우분투에 마운트 시킬 폴더들을 이런식으로 반복해서 설정해 주세요. 예를 들어 '사진', '음악' 그리고 '비디오'같이 공유할 폴더들을 말이예요. 다 설정하셨으면 이젠 DSM을 종료 해주세요~!
No we have to mount these shares to Ubuntu. So please log into your Ubuntu and open a terminal window. In this terminal type the following to be sure that this package is installed:
아직 마운트가 끝난게 아니예요. 당신의 우분투를 터미널등을 이용해서 접속해주세요. 다음과 같이 터미널에서 이 패키지들이 설치되어 있는지 확인해 주세요:
[you@ubuntu ~]$ sudo apt-get install nfs-common
Once the package is installed or you verified that the package is already installed, we need to edit the file /etc/fstab. Open this file as follows:
이 패키지가 설치되어 있으면 이 패키지는 이미 설치되어 있습니다 라고 뜰꺼예요. 우리는 /etc/fstab파일을 수정해야 하니깐, 다음과 같이 이 파일을 열어주세요:
[you@ubuntu ~]$ sudo vi /etc/fstab
At the end of this file add the following:
이 파일 끝에다가 다음과 같은 내용을 추가해 주세요.
IPADDRESS-OF-YOUR-NAS:/volume1/photo /mnt/CHOOSE-NAME/photo nfs nouser,atime,auto,rw,dev,exec,suid 0 0
IPADDRESS-OF-YOUR-NAS:/volume1/music /mnt/CHOOSE-NAME/music nfs nouser,atime,auto,rw,dev,exec,suid 0 0
IPADDRESS-OF-YOUR-NAS:/volume1/video /mnt/CHOOSE-NAME/video nfs nouser,atime,auto,rw,dev,exec,suid 0 0
Ofcourse you need to replace IPADDRESS-OF-YOUR-NAS with the actual IP address.
물론 당신은 IPADDRESS-OF-YOUR-NAS에 당신에게 맞는 IP 주소로 변경해 주어야 합니다. photo, music, video도 마찬가지겠죠? 마운트 시킬 폴더 갯수 만큼 추가해주세요.
And please choose a name for the folder to mount to at CHOOSE-NAME.
CHOOSE-NAME에다가는 당신이 마운트 시킬 우분투 폴더명을 입력해주세요.
This choosen name you should write down or remember. This because we need to create the folders you are mounting to.
추가하셨으면 그 경로를 기억해 놓으세요. 왜냐면 이 경로와 같이 폴더를 생성시켜서 마운트 시켜야 되니깐요.
You can creating them by executing next command:
다음과 같은 명령으로 폴더를 생성해주세요:
sudo mkdir /mnt/CHOOSE-NAME /mnt/CHOOSE-NAME/photo /mnt/CHOOSE-NAME/video /mnt/CHOOSE-NAME/music
Everything has now been setup to work. For just this once you need to activate the mount manually as follows:
모든 설정이 완료 되었습니다. 수동으로 일단 마운트 시켜 보시려면 다음과 같은 명령으로 마운트 해주세요:
sudo mount -a
If you would restart your Ubuntu now, the next time it starts it will automatically add the created mounts again. So no need to do all of the above again! From this point you are finished creating the mount. Some user however find it easy to have a shortcut on there desktop to the NAS. You can create a shortcut to your mounted NAS as follows:
우분투를 재시작하더라도 자동으로 이게 마운트 될거예요. 짧은 경로로 사용하실려면 아래 처럼 해주세요:
sudo ln -s /mnt/CHOOSE-NAME /home/user/Desktop/CHOOSE-NAME