Tag: Ubuntu

错误:安装eventlet时,命令“gcc”失败,退出状态为1

我想在我的系统上安装eventlet ,以便为软件部署“Herd”..但terminal显示gcc错误: root@agrover-OptiPlex-780:~# easy_install -U eventlet Searching for eventlet Reading http://pypi.python.org/simple/eventlet/ Reading http://wiki.secondlife.com/wiki/Eventlet Reading http://eventlet.net Best match: eventlet 0.9.16 Processing eventlet-0.9.16-py2.7.egg eventlet 0.9.16 is already the active version in easy-install.pth Using /usr/local/lib/python2.7/dist-packages/eventlet-0.9.16-py2.7.egg Processing dependencies for eventlet Searching for greenlet>=0.3 Reading http://pypi.python.org/simple/greenlet/ Reading https://github.com/python-greenlet/greenlet Reading http://bitbucket.org/ambroff/greenlet Best match: greenlet 0.3.4 Downloading http://pypi.python.org/packages/source/g/greenlet/greenlet- 0.3.4.zip#md5=530a69acebbb0d66eb5abd83523d8272 Processing greenlet-0.3.4.zip Writing […]

如何在Ubuntu上安装OpenSSL库?

我试图在使用OpenSSL 1.0.0的Ubuntu 10.04 LTS上构build一些代码。 当我运行make时,它会用“-lssl”选项调用g ++。 来源包括: #include <openssl/bio.h> #include <openssl/buffer.h> #include <openssl/des.h> #include <openssl/evp.h> #include <openssl/pem.h> #include <openssl/rsa.h> 我跑了: $ sudo apt-get install openssl Reading package lists… Done Building dependency tree Reading state information… Done openssl is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded. 但我猜openssl包不包括库。 […]

在编译Nachos源代码时出错“gnu / stubs-32.h:没有这样的文件或目录”

我正试图在笔记本电脑上安装Nachos,笔记本电脑上安装了Ubuntu 11.04。 代码是在C中,所以build立它我假设我将需要交叉编译器。 这是我的问题所在。 我使用该命令下载了MIPS交叉编译器的源代码 wget http://mll.csie.ntu.edu.tw/course/os_f08/assignment/mips-decstation.linux-xgcc.gz 我解压缩使用 tar zxvf mips-decstation.linux-xgcc.gz 这是好的,但是当我尝试构build玉米片的源代码,使用make,我得到这个错误 – /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。

如何在Ubuntu中find文件?

我的系统中有一个文件名为“process.txt”。 我正在使用Ubuntu操作系统。 我知道只有文件名,我不知道哪个目录和所有? 如何find它在目录中的文件? 我想通过命令知道吗? 我尝试了查找命令,但它不工作。

nginx – nginx: bind()到:80失败(98:地址已经在使用)

突然之间,我得到了下面的nginx错误 * Restarting nginx * Stopping nginx nginx …done. * Starting nginx nginx nginx: [emerg] bind() to [::]:80 failed (98: Address already in use) nginx: [emerg] bind() to [::]:80 failed (98: Address already in use) nginx: [emerg] bind() to [::]:80 failed (98: Address already in use) nginx: [emerg] bind() to [::]:80 failed (98: Address already […]

在Ubuntu上安装最新版本的git

我当前的git版本1.7.9.5 … 我需要升级到至lessgit 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(升级)?

删除所有本地git分支

我遵循一个开发stream程,为每个新function或故事卡创build一个新的本地分支。 完成后,我将分支合并到主机中,然后按下。 由于懒惰或健忘的原因,随着时间的推移,往往会发生一大堆地方分支,其中一些(如尖峰)可能没有合并。 我知道如何列出所有本地分支,我知道如何删除一个分支,但我想知道是否有一个git命令,允许我删除所有本地分支? 下面是git branch –merged命令的输出。 user@machine:~/projects/application[master]$ git branch –merged STORY-123-Short-Description STORY-456-Another-Description STORY-789-Blah-Blah * master 所有尝试删除使用grep -v \*列出的分支(按照下面的答案)会导致错误: error: branch 'STORY-123-Short-Description' not found. error: branch 'STORY-456-Another-Description' not found. error: branch 'STORY-789-Blah-Blah' not found. 我在用着: git 1.7.4.1 Ubuntu 10.04 GNU bash,版本4.1.5(1) – 发布 GNU grep 2.5.4

无法在Ubuntu中安装Android Studio

我使用Ubuntu GNOME 14.04,并且安装了Java 8(包括JDK和JRE)。 当我安装Android Studio时,一切正常,但出现一条消息说: 无法运行mksdcard SDK工具 我如何正确安装Android Studio,或者如何解决这个问题?

如何每2小时运行一次cron作业

我是Ubuntu的新手。 我想每2小时运行一次任务。 更新:解决了这个问题: 0 */2 * * * /home/username/test.sh

错误:'无法通过套接字连接到本地MySQL服务器'/var/run/mysqld/mysqld.sock'(2)'

我的问题开始,我不能以rootlogin到我的MySQL安装。 我试图运行没有密码打开mysql …但是每当我运行该命令: # mysqld_safe –skip-grant-tables & 我永远不会得到及时的回应…(我试图按照这里的说明: http : //www.cyberciti.biz/tips/recover-mysql-root-password.html )屏幕看起来像这样: root@jj-SFF-PC:/usr/bin# mysqld_safe –skip-grant-tables 120816 11:40:53 mysqld_safe Logging to syslog. 120816 11:40:53 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql 我没有得到提示开始inputsql命令重置密码。 当我通过CTRL + C杀死它时,我得到以下消息: 错误:'无法通过套接字连接到本地MySQL服务器'/var/run/mysqld/mysqld.sock'(2)' 检查mysqld是否正在运行,并且套接字'/var/run/mysqld/mysqld.sock'存在! 如果我重试命令并保留足够长的时间,我会得到以下一系列消息: root@jj-SFF-PC:/run/mysqld# 120816 13:15:02 mysqld_safe Logging to syslog. 120816 13:15:02 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql […]