方法一:# vi /etc/rc.conf
or
方法二:
# sysinstall
方法一:# vi /etc/rc.conf
or
方法二:
# sysinstall
step1) 允許使用root與密碼登入
# vi /etc/ssh/sshd_config
------------------------------
......
PermitRootLogin yes
......
PasswordAuthentication yes
......
------------------------------
step2) 開啟SSH可以使用root遠端登入
# vi /etc/inetd.conf
------------拿掉註解------------------
......
ssh stream tcp nowait root /usr/sbin/sshd sshd -i -4
ssh stream tcp6 nowait root /usr/sbin/sshd sshd -i -6
......
----------------------------------------
step3) 開機後自動啟動SSH service
# vi /etc/rc.conf
------------------------------
......
sshd_enable="YES"
......
------------------------------
step4)
# /etc/rc.d/sshd restart
step1) 允許使用密碼登入
# vi /etc/ssh/sshd_config
------------------------------
......
PasswordAuthentication yes
......
------------------------------
step2) 開機後自動啟動SSH service
# vi /etc/rc.conf
------------------------------
......
sshd_enable="YES"
......
------------------------------
step3)
# /etc/rc.d/sshd restart
方法一:
# pw user mod <username> -G wheel
or
方法二:
# pw groupmod wheel -m <username>
看使用者的group有哪些。
# groups <username>