今天用xftp連線了一下 自己建立得系統
發現使用怎麼也建立不了檔案
原因是 你使用得賬號許可權不夠!!!
除了home下 得許可權是自己得 其他許可權都是root
這個時候想要建立檔案只能使用root賬號登入
但是預設情況下 是不允許直接使用root賬號登入
1、編輯vim /etc/ssh/sshd_config檔案
把permitrootlogin prohibit-password 新增#注釋掉
新新增:permitrootlogin yes
更改permitemptypasswords為 no (這個可能已經是no)
service ssh restart(或者執行:/etc/init.d/ssh restart)
shutdown -r now
這樣就可以直接使用root賬號登入
但是如果還沒有對root賬號設定登入密碼 可以先使用xshell通過
sudo passwd root
命令來設定密碼
建立資料夾
當某資料夾不存在時,建立資料夾 import os path dir file if not os.path.exists path dir os.makedirs path dir 同時建立資料夾有兩種函式,os.mkdir和os.makedirs,兩者的區別在於前者是一級一級建立檔案目錄,後者可...
linux c建立資料夾,並在資料夾中建立檔案
建立資料夾,在在檔案裡面建立檔案 乙個例項 include include include include int main char pathname 100 pathname 0 f pathname 1 l pathname 2 o pathname 3 w pathname 4 pathna...
C 建立資料夾,刪除資料夾,建立檔案,刪除檔案
protected void button1 click object sender,eventargs e 判斷檔案的存在 else string name getfiles.filename 獲取已上傳檔案的名字 string size getfiles.postedfile.contentle...