Questions tagged «ubuntu»

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

11
无法安装gem-无法构建gem本机扩展-无法加载此类文件-mkmf(LoadError)
Ruby 1.9.3 Gemfile的一部分 #............... gem "pony" gem "bcrypt-ruby", :require => "bcrypt" gem "nokogiri" #.................. 当我尝试安装gems时,出现错误 alex@ubuntu:~/$ bundle Fetching gem metadata from http://rubygems.org/......... Fetching gem metadata from http://rubygems.org/.. Enter your password to install the bundled RubyGems to your system: #####............................................................ Installing bcrypt-ruby (3.0.1) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build …

4
在Ubuntu中安装最新版本的git
我当前的git版本1.7.9.5 ... 我需要至少升级到git 1.7.10才能使git clone命令正常工作 我尝试sudo add-apt-repository ppa:git-core/ppa进行升级,但导致以下结果: Traceback (most recent call last): File "/usr/bin/add-apt-repository", line 125, in <module> ppa_info = get_ppa_info_from_lp(user, ppa_name) File "/usr/lib/python2.7/dist-packages/softwareproperties/ppa.py", line 80, in get_ppa_info_from_lp curl.perform() pycurl.error: (7, "couldn't connect to host") 我应该怎么做才能安装最新的git(以进行升级)?
171 git  ubuntu 

26
无法通过unix:/var/run/docker.sock连接到Docker守护程序。泊坞窗守护程序正在运行吗?
我已经应用了互联网上所有可用的解决方案,但仍然无法运行Docker。 我想在服务器上使用Scrapy Splash。 这是history我运行的命令。 docker run -p 8050:8050 scrapinghub/splash sudo docker run -p 8050:8050 scrapinghub/splash sudo usermod -aG docker $(whoami) sudo docker run -p 8050:8050 scrapinghub/splash newgrp docker sudo docker run -p 8050:8050 scrapinghub/splash reboot sudo docker run -p 8050:8050 scrapinghub/splash docker run -p 8050:8050 scrapinghub/splash 您可以看到我也尝试重新启动服务器,但是它没有帮助。 看到输出 ps -aux …

11
编译Nachos源代码时出现错误“ gnu / stubs-32.h:没有这样的文件或目录”
我正在尝试在笔记本电脑上安装Nachos,并且笔记本电脑上具有Ubuntu 11.04。 代码在C语言中,因此要构建它,我假设我将需要交叉编译器。这是我的问题所在。我使用以下命令下载了MIPS交叉编译器的源代码 wget http://mll.csie.ntu.edu.tw/course/os_f08/assignment/mips-decstation.linux-xgcc.gz 我用解压缩 tar zxvf mips-decstation.linux-xgcc.gz 没关系,但是当我尝试使用make构建nachos os的源代码时,出现此错误- /usr/include/gnu/stubs.h:7:27: fatal error: gnu/stubs-32.h: No such file or directory compilation terminated. make: *** [bitmap.o] Error 1 我正在尝试按照此处给出的说明进行操作-http: //mll.csie.ntu.edu.tw/course/os_f08/217.htm,并且除我尝试使用make之外,其他一切都正常。

9
PHP致命错误:调用未定义函数json_decode()
Apache正在记录日志PHP Fatal error: Call to undefined function json_decode()。经过一番谷歌搜索,似乎这个问题是由于没有最新版本的php导致的。奇怪的是,运行php --version输出 PHP 5.5.1-2+debphp.org~precise+2 (cli) (built: Aug 6 2013 10:49:43) Copyright (c) 1997-2013 The PHP Group Zend Engine v2.5.0, Copyright (c) 1998-2013 Zend Technologies with Zend OPcache v7.0.2-dev, Copyright (c) 1999-2013, by Zend Technologies with Xdebug v2.2.3, Copyright (c) 2002-2013, by Derick Rethans …
165 php  json  apache  ubuntu 


25
如何在Ubuntu上设置和运行PhantomJS?
我设置了PhantomJS并将其录制到视频中:https : //www.dailymotion.com/video/xnizmh_1_webcam 生成说明:http : //phantomjs.org/build.html 我的设置有什么问题吗? 设置好之后,我阅读了快速入门教程并尝试编写此代码 phantomjs hello.js 它给我“找不到命令”错误。我怎么解决这个问题?


8
重命名virtualenv文件夹而不破坏它
我已经创建了文件夹并在其中初始化了virtualenv实例。 $ mkdir myproject $ cd myproject $ virtualenv env 当我运行时(env)$ pip freeze,它将按原样显示已安装的软件包。 现在我想重命名myproject/为project/。 $ mv myproject/ project/ 但是,当我跑步时 $ . env/bin/activate (env)$ pip freeze 提示未安装pip。如何在不破坏环境的情况下重命名项目文件夹?
162 python  ubuntu  virtualenv  pip 


13
在Bash命令提示符下添加git分支
我尝试在bash提示符上添加我当前正在使用的git分支(已检出),但未成功..(同时保持当前路径,该路径完整显示了活动目录/文件)我家中有一个.bashrc文件,但是我也看到很多人提到.profile文件。
161 git  bash  ubuntu 

4
C ++错误:未定义对“ clock_gettime”和“ clock_settime”的引用
我对Ubuntu相当陌生,但似乎无法使它正常工作。它可以在我的学校计算机上正常工作,我不知道自己在做什么。我检查了usr / include和time.h就好了。这是代码: #include <iostream> #include <time.h> using namespace std; int main() { timespec time1, time2; int temp; clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1); //do stuff here clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2); return 0; } 我正在使用CodeBlocks作为我的IDE来进行构建和运行。任何帮助都会很棒,谢谢。
157 c++  linux  ubuntu  posix  time.h 

16
按映像名称停止Docker容器-Ubuntu
在Ubuntu 14.04(Trusty Tahr)上,我正在寻找一种方法来停止正在运行的容器,而我仅有的信息是Docker run命令中使用的映像名称。 是否有命令查找与该映像名称匹配的所有匹配运行容器并停止它们?

12
如何通过脚本创建crontab
我需要通过运行设置服务器的脚本来添加cron作业。我目前正在使用Ubuntu。我可以使用,crontab -e但这将打开一个编辑器来编辑当前的crontab。我想以编程方式执行此操作。 有可能这样做吗?
153 linux  shell  ubuntu  cron  crontab 

13
如何在Linux中的bash脚本中显示GUI消息框?
我正在Ubuntu Linux下编写一些bash脚本。我希望能够从GUI运行它们而无需终端窗口来输入任何输入或查看任何输出。 到目前为止,唯一需要输入的是sudo的密码-gksudo可以很好地处理。但是我还没有找到显示消息框的简便方法。有某种类型的“ gkmessage”命令可用吗?我希望默认的Ubuntu安装中包含某些内容,但是如果有必要,我不介意安装新软件包。
151 linux  bash  scripting  ubuntu  gtk 

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.