系统只能安装debian32,因为这是最省资源的先在机器下载脚本wget http://linux-bash.googlecode.com/files/debian-actgod-vps.sh通过下面一键安装命令安装自己需要的功能:bash debian-actgod-vps.sh system #优化系统,删除不需要组件,dropbear替代sshd bash debian-actgod-vps.sh exim4 #更轻量级邮件系统 bash debian-actgod-vps.sh mysql #安装mysql bash debian-actgod-vps.sh nginx #安装nginx,默认两个进程 bash debian-actgod-vps.sh php #安装php,默认两个php-cgi进程 bash debian-actgod-vps.sh all #安装上面所有,软件是debian官方的,版本较低但也很好 bash debian-actgod-vps.sh wordpress yourdomain #一键安装wordpress中文版。数据库自动配置好。 bash
linux的文件结构 / 根目录下的目录/bin/home/dev/usr/opt/etc ...要会用linux,必须学会常用的linux命令cd <目录> 进入目录,与DOS基本相同ls 列出文件,相当于DOS的dirls -l 显示文件和目录的详细资料 ls -a 显示隐藏文件 cp <源文件名> <目标文件名> 复制文件,相当于DOS的copymv <源文件名> <目标文件名> 移动文件rm <文件名> 删除文件,相当于DOS的deldate 显示系统日期 cat <文件名>在屏幕上打印出文件内容,相当于DOS的typemkdir <目录名>创建目录,相当于DOS的mdshutdown -h now立即关机pwd 显示当前路径 chmod改变文件权限例如:chmod +x <文件名> //使文件具有运行权,即可运行文件sudo ...以root身份执行命令如:sudo shutdown -h now (关机必须是root身份)sudo passw
编辑/etc/apt/sources.list,内容为deb http://ftp.us.debian.org/debian/ wheezy maindeb-src http://ftp.us.debian.org/debian/ wheezy maindeb http://security.debian.org/ wheezy/updates maindeb-src http://security.debian.org/ wheezy/updates mainwheezy-updates, previously known as ‘volatile’deb http://ftp.us.debian.org/debian/ wheezy-updates maindeb-src http://ftp.us.debian.org/debian/ wheezy-updates main运行apt-get updateapt-get dist-upgrade重新启动即可如果报gpg错误可能要先运行apt-get install debian-archive-keyring
运行下面代码:wget http://d.5abc.net/script/vagex/debian_vagex.shchmod +x debian_vagex.sh./debian_vagex.sh然后,用vncviewer连接你的VPSip:1,(默认密码是123456 可以用vncpasswd命令修改)登录后可以看到这个画面:点install安装vagex插件,然后点restart iceweasel 重启浏览器填上vagexID,这里有一个bug,会无法输入,我的解决方法是重启vncserver,就是在ssh里输入:vncserver -kill :1然后输入:vncserver :1再登录vncserver就可以输入了。然后就是设置iceweasel点Edit-Preferences,主页我选空白页,然后Content只勾选Enable JavaScript点Privacy 选 Never remember history点Advanced --Update设置基本完了,点File--Quit正常退出一次,(不正常退出一次,不会保存vagexID的)然后就是设置cron每几小时
lftp是linux下的一款ftp工具,lftp虽然没有界面,但是安装简单,使用方便,功能也极为强大。ftp的中文设置方法,ftp为GBK编码,本地为UTF8编码(后两句主要是为了遇到utf8的FTP时方便切换)~/.lftp/rcset ftp:charset "gbk"set file:charset "UTF-8"alias cn "set ftp:charset gbk;set file:charset UTF-8"alias utf8 "set ftp:charset UTF-8; set file:charset UTF-8"安装。在debian系下安装软件太简单了~> apt-get install lftp~> lftp 127.0.0.1lftp :~> user name显示远端文件列表:~> ls切换远端目录:~> cd 目录下载远端文件:~> get 文件使用通配符下载远端文件:~> mget *使用多个线程来下载远端文件, 预设为五个:~> pget 文件镜像(反镜像)一个目录:~> mirror [-c]