nfs:
nfs提供檔案系統
portmap 提供協議rpc
[root@station230 ~]# /etc/init.d/portmap restart
[root@station230 ~]# /etc/init.d/nfs restart
配置檔案:
主包:nfs-utils
[root@station230 ~]# vim /etc/exports
/tmp *(rw,no_root_squash)
[root@station230 nfs]# mount -t nfs 192.168.100.253:/tmp /mnt/nfs/
[root@station230 nfs]# showmount -e 192.168.100.253
export list for 192.168.100.253:
/tmp *
[root@station230 ~]# showmount -a 192.168.100.253
ssh:
[root@station230 nfs]# /etc/init.d/sshd start
啟動 sshd: [確定]
ssh無密碼登入:
[root@station230 .ssh]# ssh-keygen
[root@station230 .ssh]# scp id_rsa.pub 192.168.100.3:/root/.ssh/authorized_keys
修改埠:
[root@station230 .ssh]# vim /etc/ssh/sshd_config
vim /etc/hosts.allow
vim /etc/hosts.deny
sshd:192.168.100.155
sshd:192.168.100.
sshd:192.168.100.0/255.255.255.0
sshd:192.168.100.0/24
sshd:192.168.100.*
sshd:192.168.100.1?,192.168.100.2?
samba:
配置檔案:
[root@station230 ~]# vim /etc/samba/smb.conf
74 workgroup = mygroup //工作組
75 server string = samba server //描述
security = share //共享級別
289 [mysamba]
290 comment = this is mysamba!
291 path = /haha
292 public = yes
293 writable = yes
重啟服務:
[root@station230 samba]# /etc/init.d/smb restart
客戶端掛載:
[root@station230 /]# mount -t cifs /mnt/samba
password:
[root@station230 /]# cd /mnt/samba
[root@station230 samba]# ls
a b
user級別(帶使用者名稱和密碼):
vim /etc/samba/smb.conf
security = user
[mysamba]
comment = this is mysamba!
path = /heihei
writable = yes
新增本地帳戶:
[root@station230 samba]# useradd smbuser1
新增smb帳戶:
[root@station230 samba]# smbpasswd -a smbuser1
new smb password:
retype new smb password:
added user smbuser1.
掛載(user級別):
[root@station230 samba]# mount -t cifs -o username=smbuser1 /mnt/samba1
password:
[root@station230 samba]# smbclient -l 192.168.1.253
password:
常用共享屬性:
[mysamba]
comment = this is mysamba!
path = /heihei
public = yes
writable = yes
write list = user1 user2 @grp1 @grp2
read only = yes
read list = user1 user2 @grp1 @grp2
browseable = yes
valid users = user1 user2 @grp1 @grp2
printable = no
tftp:基於xinetd的服務
[root@station230 server]# /etc/init.d/xinetd restart
[root@station230 server]# vim /etc/xinetd.d/tftp
disable = no
server_args = -s -c /tftpboot
-c 可以上傳檔案
C 學習筆記(第十一天)
1 概念 父類,基類 class person 子類 派生類 student 繼承person屬性和方法,擴充套件一些自己屬性和函式 studentnum,studentname.employee 繼承person屬性和方法 teacher 繼承person屬性和方法 圖形類shape 求周長 求面...
Oracle學習筆記第十一天
這活按我猜想應該是dba的活,沒有往這方面發展的想法,所以筆記做得簡單點了 概念 備份 備份就是把資料庫複製到轉儲裝置的過程 恢復恢復就是把資料庫由存在故障的狀態轉變為無故障狀態的過程 語法 用exp命令匯出資料 exp username password parameter value 用imp命...
Shell筆記第十一天
while迴圈 語法格式 while 條件判斷 do done 指令碼 bin bash var 1 while var le3 doe cho var le 3 do echo var le 3 do echo var var var 1 done 指令碼2 bin bash file 1 if ...