问题是关于 Ubuntu 发布过程。是否预期从 n 到 n+1 版本的迁移?
假设我们有安装了 Ubuntu 14.04 LTS 的服务器。通过 apt-get upgrade 可以顺利升级到 Ubuntu 16.04 LTS 吗?
假设:
当我尝试将磁盘挂载到两个挂载挂载时,出现以下错误:
Mount is denied because the NTFS volume is already exclusively opened.
The volume may be already mounted, or another software may use it which
could be identified for example by the help of the 'fuser' command.
Run Code Online (Sandbox Code Playgroud)
如何防止显示此消息?
我尝试在 Ubuntu 下编译https://unix.stackexchange.com/a/228674。
不幸的是,最终出现以下错误:
/tmp/find-cursor$ make
cc find-cursor.c -o find-cursor -lX11
find-cursor.c:19:39: fatal error: X11/extensions/Xcomposite.h: No such file or directory
#include <X11/extensions/Xcomposite.h>
^
compilation terminated.
make: *** [all] Error 1
Run Code Online (Sandbox Code Playgroud)
我试过以下嫌疑人:
$ sudo apt-get install libxtst-dev libxss-dev libxtst6-dbg libxext6-dbg libxss1-dbg
Run Code Online (Sandbox Code Playgroud)
但在编译时仍然没有运气。为了您的方便,这里是片段:
sudo apt-get install mercurial
cd /tmp
hg clone https://bitbucket.org/Carpetsmoker/find-cursor
cd find-cursor
make
Run Code Online (Sandbox Code Playgroud)
FTR:要编译上面的代码,我必须:
sudo apt-get install libxcomposite-dev libxdamage-dev libxrender-dev并-std=gnu99在 Makefile 中向 cc添加标志