Linux
lx258963
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
使用putty连接linux系统乱码的一些解决方案
今天在虚拟机上装了Ubuntu 的系统,安装好之后,使用SSH Client 和 putty 两个工具连接登陆的时候提示:Connection error :connection refused后来在网上查了下资料才发现,原来是Ubuntu 里没有安装ssh协议的原因。在命令行模式下输入: $sudo apt-get install openssh-server 然后根...原创 2011-07-13 11:49:04 · 300 阅读 · 0 评论 -
putty连接linux提示timed out的解决办法
先说下遇到的相关情况吧在使用putty连接Ubuntu的时候,提示:Connection error : Connection timed out意思是连接超时了!~后来我在网上查了下说是之前安装的ssh协议 重启之后,ssh服务没有启动,好吧,启动下ssh服务 service sshd start 或者是 /etc/init.d/ssh start 启动...2011-07-13 15:26:34 · 5827 阅读 · 0 评论 -
Ubuntu下安装php环境
安装 Apache2: sudo apt-get install apache2 安装PHP模块: sudo apt-get install php5 安装Mysql sudo apt-get install mysql-server 其他模块安装: sudo apt-get install libapache2-mod-...原创 2011-07-13 16:53:08 · 111 阅读 · 0 评论 -
本机无法访问虚拟机的网页
最近在研究在linux系统下开发php,以及熟悉linux系统的操作和管理,维护!今天把lamp环境搭建好之后,想测试下,于是就在/var/www/html/ 创建了一个info.php文件[code="php"]phpinfo();[/code]然后在本机访问http://192.168.1.10/info.php奇怪的是无法访问,我使用ping命令也可以ping...原创 2011-11-18 15:03:08 · 371 阅读 · 0 评论 -
【转】centos让用户自动登陆
转自:http://shellfish.iteye.com/blog/580158主要是修改 /etc/gdm/custom.conf ,添加AutomaticLogin和TimedLogin 重启即可。vim /etc/gdm/custom.conf[daemon]AutomaticLoginEnable=trueAutomaticLogin=usernameTimedLog...原创 2011-11-19 09:01:25 · 150 阅读 · 0 评论 -
使用putty连接虚拟机上的centos提示Network:connection refused
今天早上开机之后,像往常一样使用putty连接linux的时候,突然提示Network:connection refused昨天晚上还正常使用呢,今儿个就成这样了,昨天也没有修改什么内容,很是郁闷,在网上找了半天,找到了一篇文章内容如下: 1.vi /etc/ssh/sshd_config 将PermitRootLogin的注释取消,或者将no改为yes。2.serv...2011-11-19 09:32:27 · 614 阅读 · 0 评论
分享