Questions tagged «ubuntu»

一般的UBUNTU支持不在主题之列。可能会在https://askubuntu.com/上询问支持问题。Ubuntu是基于Debian GNU / Linux的免费桌面和服务器操作系统。请注意,这是针对特定于Ubuntu的编程问题,而http://askubuntu.com专门用于回答一般的Ubuntu问题。

10
qmake:找不到Qt安装”
我在ubuntu中有一个软件,要求我运行qmake生成Makefile。 但是,运行qmake会返回此错误, qmake: could not find a Qt installation of '' 我已经安装了我认为是必需的软件包, sudo apt-get install qt4-qmake sudo apt-get install qt5-qmake 但是错误并没有消失。 任何帮助将不胜感激!
136 qt  ubuntu  qmake 


4
来自守护程序的Docker错误响应:“冲突...已被容器使用”
我一直在PC上使用Docker来运行Quantum GIS,并遵循以下说明:docker-qgis-desktop-运行QGIS桌面的简单Docker容器 一切正常,直到上周我开始收到此错误消息时: Error response from daemon: Conflict. The name "qgis-desktop-2-4" is already in use by container 235566ae17b8. You have to delete (or rename) that container to be able to reuse that name. 尽管在此站点上寻找了线索,但我不确定是什么意思。在此之前,我没有做任何更改,并且已经使用以下命令成功启动了容器: sudo docker run --rm --name="qgis-desktop-2-4" -i -t -v ${HOME}:/home/${USER} -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=unix$DISPLAY kartoza/qgis-desktop:latest 我怎样才能解决这个问题?
135 linux  ubuntu  docker 


15
在Ubuntu上安装rmagick
我正在尝试在Ubuntu 10.04上安装RMagick。看着这里,但没有喜悦。我什至从源代码编译并安装了ImageMagick,但是当我尝试使用RubyGems安装RMagick时,这里的说明仍然没有帮助。我收到此错误: carcher@carcher-laptop:~/Code/temp/RMagick-2.13.1$ sudo gem install rmagick Building native extensions. This could take a while... ERROR: Error installing rmagick: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 extconf.rb extconf.rb:1:in `require': no such file to load -- mkmf (LoadError) from extconf.rb:1 Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/rmagick-2.13.1 for inspection. Results …

30
在gitlab上获取权限被拒绝(公钥)
我的问题是我无法从GitLab推送或获取。但是,我可以克隆(通过HTTP或SSH)。尝试推送时出现此错误: 权限被拒绝(公钥)致命:无法从远程存储库读取 从我看过的所有线程来看,这是我所做的: 在计算机上设置SSH密钥,并将公共密钥添加到GitLab 完成配置--global以获取用户名和电子邮件 通过SSH和HTTP克隆,以检查是否可以解决问题 完成ssh -T git@gitlab.com命令 如果您对如何解决我的问题有任何见解,将不胜感激。
134 git  ubuntu  ssh  gitlab 

25
当我运行npm install时,它返回ERR!代码EINTEGRITY`(npm 5.3.0)
运行时出现此错误sudo npm install。在我的服务器上,npm的安装较早。我尝试删除该package-lock.json文件,然后运行npm cache clean --force,但没有用。 我的npm版本是5.3.0。 错误: npm ERR! code EINTEGRITY npm ERR! sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA== integrity checksum failed when using sha512: wanted sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA== but got sha512-WXI95kpJrxw4Nnx8vVI90PuUhrQjnNgghBl5tn54rUNKZYbxv+4ACxUzPVpJEtWxKmeDwnQrzjc0C2bYmRJVKg==. (65117 bytes) npm ERR! A complete log of this run can be found in: npm ERR! /home/ubuntu/.npm/_logs/2017-11-29T05_33_52_182Z-debug.log
132 node.js  ubuntu  npm 

2
无法在Ubuntu 11.04中安装R包
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 6年前关闭。 改善这个问题 我是Linux和R的新手。 我在Ubuntu 11.04中安装了R 2.12。今天,我尝试安装新的软件包,所以我运行了以下命令: install.packages('XML') 但是安装失败,并提供以下信息: * installing *source* package ‘XML’ ... checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... …
130 xml  r  ubuntu  installation 

8
命令rbenv install丢失
在Ubuntu 10.04我刚刚安装rbenv。安装命令不存在。 rbenv 0.4.0-49-g8b04303 Usage: rbenv <command> [<args>] Some useful rbenv commands are: commands List all available rbenv commands local Set or show the local application-specific Ruby version global Set or show the global Ruby version shell Set or show the shell-specific Ruby version rehash Rehash rbenv shims (run this …

5
如何通过其他端口(而不是80)启动Nginx
嗨,我是nginx上的新手,我试图在已经运行apache的服务器上(运行Ubuntu 4)对其进行设置。 因此,在完成之后apt-get install,我尝试启动nginx。然后我得到这样的消息: Starting nginx: the configuration file /etc/nginx/nginx.conf syntax is ok configuration file /etc/nginx/nginx.conf test is successful [emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use) [emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use) [emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use) [emerg]: …
128 ubuntu  nginx 

5
禁用SSH的密码身份验证
我访问密码提示的注意寻找一种方法来禁用SSH客户端在这里。 我无法禁用root登录password:提示。我已将文件更改为:sshd_config ChallengeResponseAuthentication no PasswordAuthentication no UsePAM no 并且还更改了权限chmod 700 ~/.ssh和chmod 600 ~/.ssh/authorized_keys。我想念什么?这是否需要我输入密码? 详细转储: debug1: Authentications that can continue: publickey,password debug1: Next authentication method: publickey debug1: Offering RSA public key: /home/user/.ssh/id_rsa debug1: Authentications that can continue: publickey,password debug1: Trying private key: /home/user/.ssh/id_dsa debug1: Trying private key: /home/user/.ssh/id_ecdsa debug1: Next authentication …
127 ubuntu  ssh 

14
如果没有sudo,NPM模块将无法全局安装
我刚刚重新安装了Ubuntu 12.04 LTS,在进行其他操作之前,请执行以下步骤: 使用以下脚本通过程序包管理器安装节点 sudo apt-get update sudo apt-get install python-software-properties python g++ make sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-get install nodejs 尝试在全球安装yeoman,express,n,yeoman的生成器,并且它们均返回相同的错误 npm ERR!错误:EACCES,符号链接“ ../lib/node_modules/n/bin/n” npm ERR!{[错误:EACCES,符号链接'../lib/node_modules/n/bin/n'] errno:3,代码:'EACCES',路径:'../ lib / node_modules / n / bin / n'} npm ERR! npm ERR!请尝试以root / Administrator身份再次运行此命令。 npm ERR!系统Linux 3.8.0-29-通用 npm …

8
MySQL失败:mysql“错误1524(HY000):未加载插件'auth_socket'”
我的本地环境是: 新鲜的Ubuntu 16.04 使用PHP 7 安装了MySQL 5.7 sudo apt-get install mysql-common mysql-server 当我尝试通过CLI登录MySQL时: mysql -u root -p 我遇到了3个步骤的周期性问题。 1)首先是一些套接字问题 ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' 解决方案:重新启动PC。 导致另一个错误: 2)拒绝访问 ERROR 1698 (28000): Access denied for user 'root'@'localhost'. 可能的问题?“ root”用户的密码错误! 解决方案:使用本教程重置root密码。 使用正确的密码和有效的套接字,将出现最后一个错误。 3)不正确的auth插件 mysql "ERROR 1524 …

3
是否有键盘快捷键(热键)可在macOS中打开终端?
终端是我用于编程的主要工具之一。当我能够快速打开终端窗口时,它使我的编程过程更有效率。 在Ubuntu中,我使用(window+ Alt+ T)打开终端。但是现在我在编程工作中使用Macbook。 有时,我使用Spotlight搜索“ Terminal”,然后按Enter。 我想知道是否可以分配键盘热键来执行此操作。 谢谢

18
如何更新npm
我正在尝试安装mean.io样板。运行时失败sudo npm install -g meanio@latest。在失败之前,它指出它“想要” npm版本1.4.x,而我安装了1.2.18。因此,我尝试将npm更新为最新版本;几种方法。最后是... ubuntu@ip-xxx-xx-xx-xxx:~$ sudo npm install -g npm /usr/local/bin/npm -> /usr/local/lib/node_modules/npm/bin/npm-cli.js npm@1.4.7 /usr/local/lib/node_modules/npm ubuntu@ip-xxx-xx-xx-xxx:~$ npm --version 1.2.18 当我刚刚更新到1.4.7时,为什么仍显示1.2.18版?
124 ubuntu  npm 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.