
ubuntu
cheligeer
说啥好呢??
展开
-
关于ubuntu12.04 LTS 设置静态ip问题
1、配置静态IP地址:# vim /etc/network/interfaces原内容有如下4行:auto loiface lo inet loopbackauto eth0iface eth0 inet dhcp以上表示默认使用DHCP分配IP,修改为如下:auto loiface lo inet loopback# T转载 2013-08-08 00:09:13 · 1339 阅读 · 0 评论 -
关于ubuntu设置ssh远程连接
1、首先安装openssh-serversudo apt-get install openssh-server2、安装完成后启动sshsudo /etc/init.d/ssh start3、查看是否启动成功ps -e|grep ssh如果看到有sshd就代表ssh启动成功。(ssh-agent为ssh-client)4、远程连接如果有问题有可能是防火墙原因1)可以直原创 2013-08-08 00:21:29 · 1342 阅读 · 0 评论 -
ubuntu openssh 连接自动断开问题
How to disable SSH timeoutBy default, most SSH servers are set to disconnect clients who has been inactive or idle after a certain period of time. You'll be prompted with message similar转载 2013-08-29 17:20:34 · 2828 阅读 · 0 评论 -
ubuntu12.04 配置java环境
1、添加源 danesh@python:~$sudo add-apt-repository ppa:webupd8team/java 2、安装danesh@python:~$sudo apt-get install oracle-java7-installer原创 2013-09-02 14:51:40 · 780 阅读 · 0 评论 -
ubuntu 12.04 配置nginx,mysql,php
声明:转自http://imcn.me/html/y2012/11833.html一、配置ngnix1、安装sudo apt-get install nginx2、启动sudo /etc/init.d/nginx start3、查看浏览器浏览运行情况输入:http://localhost ;如果现实”Welcome to nginx!”,表明Ngin转载 2013-08-28 17:36:16 · 3403 阅读 · 0 评论 -
ubuntu 配置Android apk反解工具apktool和aapt
1、获取apktool软件包 wget https://android-apktool.googlecode.com/files/apktool1.5.2.tar.bz2 wget https://android-apktool.googlecode.com/files/apktool-install-linux-r05-ibot.tar.bz22、解压文件 tar -x原创 2013-09-02 17:07:08 · 8853 阅读 · 0 评论 -
ubuntu crontab设置定时命令
任务调度的crond常驻命令 crond 是linux用来定期执行程序的命令。当安装完成操作系统之后,默认便会启动此任务调度命令。crond命令每分锺会定期检查是否有要执行的工作,如果有要执行的工作便会自动执行该工作。而linux任务调度的工作主要分为以下两类: 1、系统执行的工作:系统周期性所要执行的工作,如备份系统数据、清理缓存 2、个人执行的工作:某个用户定期要做的工作,例如每隔原创 2013-09-20 20:43:21 · 1526 阅读 · 0 评论 -
ubuntu nginx配置HTTP Authentication
声明:转自:https://www.digitalocean.com/community/articles/how-to-set-up-http-authentication-with-nginx-on-ubuntu-12-10一、安装apache2sudo apt-get install apache2-utils二、创建用户和密码sudo htpasswd转载 2013-09-09 16:18:26 · 1009 阅读 · 0 评论