
Linux
iteye_10913
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu使用说明
ubuntu开启SSH服务 SSH分客户端openssh-client和openssh-server如果你只是想登陆别的机器的SSH只需要安装openssh-client(ubuntu有默认安装,如果没有则sudo apt-get install openssh-client),如果要使本机开放SSH服务就需要安装openssh-serversudo apt-get install open...原创 2015-03-06 16:17:46 · 155 阅读 · 0 评论 -
RHEL6.4更改yum源
第一步:删除默认的yum源。命令如下rpm-aq | grep yum|xargs rpm -e--nodeps 第二步:下载最新的yum安装包 wget http://vault.centos.org/6.4/os/x86_64/Packages/python-iniparse-0.3.1-2.1.el6.noarch.rpmwget http://vault.centos.o...原创 2015-03-31 00:57:18 · 413 阅读 · 0 评论 -
RedHat安装中文输入法
1.用root登录 ,或su root 2.yum install "@Chinese Support" 3.exit 4.回到桌面,system->preferences->input method 5.如果没有,先注销一下。 6.到里面add输入法到列表里。 7.最后再注销、登录。 注销登录之后,配置过程如下图所示: 安装完成之后在System 》Prefe...原创 2015-03-31 23:04:57 · 7051 阅读 · 0 评论 -
wget: unable to resolve host address的解决方法
摘要:wget:无法解析主机地址。这就能看出是DNS解析的问题。 wget:无法解析主机地址。这就能看出是DNS解析的问题。 解决办法: 登入root(VPS)。进入/etc/resolv.conf。修改内容为下nameserver 8.8.8.8 #google域名服务器nameserver 8.8.4.4 #google域名服务器 ...原创 2015-04-13 21:06:30 · 881 阅读 · 0 评论 -
解决编译Apache出现的问题:configure: error: APR not found . Please read the documentation
今日编译apache时出错: #./configure --prefix……检查编辑环境时出现: checking for APR... noconfigure: error: APR not found . Please read the documentation 解决办法: 1.下载所需软件包: wget http://archive.apache.org/dist/apr...原创 2015-04-13 21:16:01 · 150 阅读 · 0 评论 -
Another app is currently holding the yum lock; waiting for it to exit
可能是系统自动升级正在运行,yum在锁定状态中。 可以通过强制关掉yum进程: #rm -f /var/run/yum.pid 然后就可以使用yum了原创 2015-04-13 21:33:07 · 155 阅读 · 0 评论 -
LINUX配置出现:configure: error: newly created file is older than distributed files!
configure的文件时间大于当前系统时间 date -s 2015-04-13原创 2015-04-15 19:27:37 · 185 阅读 · 0 评论