使用8uFTP登入UBUNTU

2021-08-19 21:56:37 字數 1070 閱讀 9213

sudo apt-get install vsftpd
sudo service vsftpd start
sudo service vsftpd stop
sudo service vsftpd restart
sudo netstat -npltu | grep 21

tcp 0

00.0.0.0:21

0.0.0.0:* listen 13072/vsftpd

sudo service vsftpd status
將配置檔案中」anonymous_enable=yes 「改為 「anonymous_enable=no」(是否允許匿名ftp,若不允許選no)

取消如下配置前的注釋符號:

local_enable=yes(是否允許本地使用者登入)

write_enable=yes(是否允許本地使用者寫的許可權)

chroot_local_user=yes(是否將所有使用者限制在主目錄)

chroot_list_enable=yes(是否啟動限制使用者的名單)

chroot_list_file=/etc/vsftpd.chroot_list(可在檔案中設定多個賬號)

allow_writeable_chroot=yes (不加的話會報這個錯誤

500 oops: vsftpd: refusing to run with writable root inside chroot ()

)然後手動建立

/etc/vsftpd.chroot_list

這個檔案,新增使用者登入使用者,比如說新增root

然後sudo

service vsftpd restart

輸入位址,使用者名稱,密碼。登入成功

使用Windows遠端登入 Ubuntu

key如果不對,可以自行到官方註冊申請。需要注意的是,此方法是把x window system中的x server通過網路移植到了本地,伺服器獲取的硬體引數是本地機的,一旦關閉視窗,也就相當於關閉了x server會話,一些已經執行的程式,有可能會跟著關閉。這點跟windows下的遠端登入不同,wi...

使用Windows遠端登入 Ubuntu

一 ssh登入 1 ubuntu預設沒有安裝ssh 可以在新得利軟體安裝程式裡,搜尋ssh,標記並安裝 或者使用命令 sudo apt get install openssh server sudo e tc init.d ssh restart ssh localhost 2 然後在ubuntu裡...

Ubuntu 系統使用ROOT登入

ubuntu系統預設root使用者是不能登入的,密碼也是空的。如果要使用root使用者登入,必須先為root使用者設定密碼 開啟終端,輸入 sudo passwd root 然後按回車 此時會提示你輸入密碼,在password 後輸入你現在登入的使用者的密碼 然後系統提示你輸入新的unix密碼 en...