Linux上安装Qt安装不上 提示libX11-xcb.so.1 not found on the system

在ubuntu14版本上装Qt时提示libX11-xcb.so.1 not found on the system,装不上,ubuntu16版本可以正常安装。

现在将解决方法记录一下:

提示:libX11-xcb.so.1 not found on the system

先执行如下两行代码:

sudo apt-get install libpangocairo-1.0-0 libx11-xcb1 libxcomposite1 libxcursor1 libxdamage1 libxi6 libxtst6 libnss3 libcups2 libxss1 libxrandr2 libgconf2-4 libasound2 libatk1.0-0 libgtk-3-0
sudo apt-get install libxdamage1 libgtk-3-0 libasound2 libnss3 libxss1 -y

安装完成后,如果用root仍然不能安装但用普通用户能安装,需要先设置能用root用户登录。

设置root用户登录步骤如下:

1、安装ssh(已经安装的略过)

sudo apt install openssh-server

2、设置root密码,ubuntu默认root密码是随机的,需要重置一下

sudo passwd root

3、允许root用户登录,编辑sshd_config

sudo vim /etc/ssh/sshd_config
找到# Authentication项下的
PermitRootLogin prohibit-password改成PermitRootLogin yes

4、重启ssh

sudo systemctl restart sshd

5、重新用root进行登录

你可能感兴趣的:(c++,linux)