安装软件可能出现的问题:
情况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 |