1. 程式人生 > >ubuntu 備忘

ubuntu 備忘

應用商店 ext des content style ont tel schema 今天

安裝軟件可能出現的問題:

情況1:

E: 有未能滿足的依賴關系。請嘗試不指明軟件包的名字來運行“apt-get -f install”(也可以指定一個解決辦法)。

說明:

因為安裝的時候出現了一點問題,最後apt-get的包依賴關系被我搞亂了

解決辦法:

在終端輸入:apt-get -f install

然後在輸入:

sudo apt-get install flex

情況2:

有的時候,使用sudo apt-get install可能導致意想不到的錯誤,尤其是中途中斷了安裝時,錯誤信息為:
Errors were encountered while processing:
ttf-dustin
khangman
kdeedu
kde
E: Sub-process /usr/bin/dpkg returned an error code (1)
此時可以這樣解決:
cd /var/lib/dpkg
sudo mv info info.bak
sudo mkdir info
重新安裝,在此為:
sudo apt-get --reinstall install ttf-dustin khangman kdeedu kde

推薦的軟件,待嘗試

http://blog.csdn.net/skykingf/article/details/45267517

win7 遠程桌面ubuntu16.04

使用win10遠程控制ubuntu16.04

使用win10遠程控制ubuntu16.04,網上很多需要安裝xfce桌面的。今天介紹一下,不需要安裝其他桌面,使用Ubuntu16.04自帶桌面,漂亮美觀。 Ubuntu16.04端: 1、打開終端,安裝xrdp,vncserver sudo apt-get install xrdp vnc4server xbase-clients 2、安裝desktop sharing(Ubuntu16.04默認已經安裝),可以到應用商店下載。打開desktop sharing,設置如下: 技術分享
3、安裝安裝dconf-editor,取消權限限制: sudo apt-get install dconf-editor dconf-editor設置:org > gnome > desktop > remote-access,取消 “requlre-encryption” Win10端: 搜索遠程桌面連接,輸入Ubuntu的ip地址,點擊連接。 技術分享 選擇vnc-any,輸入Ubuntu的ip地址,端口不變(5900),桌面共享設定的密碼,即可遠程連接到ubuntu 16.04桌面。 參考http://www.linuxdiyf.com/linux/27078.html dconf-editor有一定概率啟動不了
Starting dconf-editor: imediately crashes:

(dconf-editor:15007): GLib-GIO-ERROR **: Settings schema ‘ca.desrt.dconf-editor.Settings‘ is not installed

Trace/breakpoint trap (core dumped)

執行下面:
sudo glib-compile-schemas /usr/share/glib-2.0/schemas/

參考:https://bugzilla.redhat.com/show_bug.cgi?id=1005156

ubuntu 備忘