------------------------
samba
------------------------
+. samba fileset 설치
$ sudo apt-get install samba
+. samba 용 계정추가
$ sudo smbpasswd -a <$username>
+. samba로 공유할 디렉토리 설정
$ sudo vi /etc/samba/smb.conf
[samba_user]
path=/opt/shared
read only=no
valid users=samba_user
browseable=yes
+. samba daemon 재시작
+. samba에 성능 이슈 발생시 IPv6를 제거하고 테스트해 볼 것 !!!
------------------------
nfs
------------------------
+. fileset 설치 및 daemon 재기동
$ sudo apt-get install nfs-common nfs-kernel-server
$ sudo /etc/init.d/nfs-kernel-server restart
+. nfs 환경파일 수정
$ sudo vi /etc/exports
/nfs_home *(rw,no_root_squash,no_all_squash)
------------------------
tftp
------------------------
+. 파일셋 설치
$ sudo apt-get install xinetd tftpd tftp
+. 환경파일 설정
$ vi /etc/xinetd.d/tftpd
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}
+. xinetd 재기동
$ sudo /etc/init.d/xinetd restart
'Linux (pLinux & x86)' 카테고리의 다른 글
ubuntu 12.04 server basic configuration... (0) | 2012.10.30 |
---|---|
apt-get & apt-cache 명령어 정리 (0) | 2012.10.05 |
Ubuntu에서 rpm 파일셋 설치 (0) | 2012.10.05 |
Linux 용 nxfree 설정하기... (0) | 2012.09.17 |
Ubuntu Basic Configuration (for Desktop) (0) | 2012.09.17 |