要解決這個問題,思考「什麼控制ubuntu桌面顯示內容?」 答案:桌面顯示桌面路徑的內容。
由於我對/home/lfl/目錄即主目錄下面的資料夾進行了清理,把所有的資料夾都刪除了(包括desktop資料夾),
然後又在主目錄下建立了一些經常要用到的資料夾及檔案,所以當第二次再開啟ubuntu系統時,桌面上面就顯示
出了主目錄下面我所建立的所有檔案及檔案及。
lfl@ubuntu:~$ vi ./.config/user-dirs.dirs
這時會發現檔案user-dirs.dirs裡面的內容如下:
# this file is written by xdg-user-dirs-update
# if you want to change or add directories, just edit the line you're
# interested in. all local changes will be retained on the next run
# format is xdg_***_dir="$home/yyy", where yyy is a shell-escaped
# homedir-relative path, or xdg_***_dir="/yyy", where /yyy is an
# absolute path. no other format is supported.
# xdg_desktop_dir="$home/"
xdg_download_dir="$home/"
xdg_templates_dir="$home/"
xdg_publicshare_dir="$home/"
xdg_documents_dir="$home/"
xdg_music_dir="$home/"
xdg_pictures_dir="$home/"
xdg_videos_dir="$home/"
將內容更換為下面的內容即可:
# this file is written by xdg-user-dirs-update
# if you want to change or add directories, just edit the line you're
# interested in. all local changes will be retained on the next run
# format is xdg_***_dir="$home/yyy", where yyy is a shell-escaped
# homedir-relative path, or xdg_***_dir="/yyy", where /yyy is an
# absolute path. no other format is supported.
# xdg_desktop_dir="$home/desktop"
xdg_download_dir="$home/"
xdg_templates_dir="$home/"
xdg_publicshare_dir="$home/"
xdg_documents_dir="$home/"
xdg_music_dir="$home/"
xdg_pictures_dir="$home/"
xdg_videos_dir="$home/"
現在重啟系統,就可。
標紅色背景的為不同的一行**,即只要主目錄下面有desktop資料夾即可保證正常。
請參見:
謝謝^_^
ubuntu桌面路徑修改
我把使用者目錄下的desktop等目錄全刪除了,然後重啟後發現在使用者目錄下建立的檔案都顯示在桌面上了,這顯示得多醜陋啊!於是查了下原來是桌面路徑被修改了,nano config user dirs.dirs xdg desktop dir home xdg download dir home do...
ubuntu 下建立桌面快捷方式
1 新建檔案eclipse.desktop,命令如下 2 在新建檔案中新增如下內容並儲存 desktop entry encoding utf 8 name eclipse comment eclipse ide exec opt eclipse eclipse icon opt eclipse i...
Ubuntu下Mongodb修改預設路徑
多種方法,下面是兩種。1.通過apt sudo apt get install mongodb 由於預期資料庫容量需要很大,因此準備掛載windows下分出的乙個盤f盤為資料盤,並將apt安裝的mongodb預設db路徑 var lib mongodb 軟鏈結到f盤下乙個目錄,logpath也同樣。...