1℃
2012年02月28日
⁄ SUSE Linux
⁄ 被围观 20,715次+
一、说明:
操作系统:SUSE Linux Enterprise Server 11 SP1
下载地址:http://cdn.novell.com/prot/wGqu-GCcLaI~/SLES-11-SP1-DVD-i586-GM-DVD1.iso
需要注册才能下载
二、安装系统
用启动盘成功引导之后,出现下面的界面
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容版权所有,转载请注明出处及原文链接
默认进入下面界面
安装界面说明:
1、Boot from Hard Disk #从硬盘启动
2、installation #安装
3、Repail installed System #修复已安装的系统
4、Rescue System #救援系统
5、Check insta...
suse, SUSE Linux Enterprise, SUSE Linux 安装阅读全文
3℃
2012年02月28日
⁄ Arch Linux
⁄ 被围观 24,146次+
1、配置pacman源
nano /etc/pacman.d/mirrorlist #编辑pacman源
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容版权所有,转载请注明出处及原文链接
找到## China,取消下面每行前面的注释,开启国内pacman源
## China
Server = http://mirrors.163.com/archlinux/$repo/os/$arch
Server = http://mirror.bjtu.edu.cn/archlinux/$repo/os/$arch
Server = http://mirror6.bjtu.edu.cn/archlinux/$repo/os/$arch
Server = ftp://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
Server = http://mirrors.us...
archlinux, archlinux 配置pacman源, openssh, pacman阅读全文
1℃
2012年02月28日
⁄ Arch Linux
⁄ 被围观 34,032次+
说明:
系统:Archlinux
IP地址:192.168.21.170
子网掩码:255.255.255.0
网关:192.168.21.2
DNS:8.8.8.8
8.8.4.4
操作:
1、设置IP地址、网关
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容版权所有,转载请注明出处及原文链接
nano /etc/rc.conf #编辑配置文件
interface=eth0 #网卡名称
address=192.168.21.170 #IP地址
netmask=255.255.255.0 #子网掩码
broadcast=192.168.21.255 #这个是广播地址,根据IP地址和子网掩码计算得到
gateway=192.168.21.2 #网关
HOSTNAM...
arch, archlinux, archlinux ip阅读全文
1℃
2012年02月27日
⁄ Arch Linux
⁄ 被围观 38,186次+
一、说明:
操作系统:Arch Linux 2011.08.19
下载地址:
32位:http://mirrors.163.com/archlinux/iso/2011.08.19/archlinux-2011.08.19-core-i686.iso
64位:http://mirrors.163.com/archlinux/iso/2011.08.19/archlinux-2011.08.19-core-x86_64.iso
二、安装系统
用启动盘成功引导之后,出现下面的界面
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容版权所有,转载请注明出处及原文链接
选项说明:
1、Boot Arch Linux #引导安装系统
2、Boot existing OS #启动现有的操作系统
3、Run Memtest86+ ...
arch, archlinux, archlinux 安装, archlinux 安装图解教程阅读全文
34℃
2012年02月25日
⁄ LNMP
⁄ 被围观 23,885次+
说明:
操作系统:CentOS 6.2 32位
系统安装教程:CentOS 6.2安装(超级详细图解教程)
http://www.osyunwei.com/archives/1537.html
准备篇:
一、配置好IP、DNS 、网关,确保使用远程连接工具能够连接服务器
CentOS 设置IP地址、网关、DNS教程:http://www.osyunwei.com/archives/423.html
二、配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT(允许80端口通过防火墙)
-A INPUT -m state --state NEW...
CentOS, CentOS编译安装lnmp, lnmp, Zend阅读全文
31℃
2012年02月25日
⁄ LAMP
⁄ 被围观 34,406次+
说明:
操作系统:CentOS 6.2 32位
系统安装教程:CentOS 6.2安装(超级详细图解教程)
http://www.osyunwei.com/archives/1537.html
准备篇:
一、配置好IP、DNS 、网关,确保使用远程连接工具能够连接服务器
CentOS 设置IP地址、网关、DNS教程:http://www.osyunwei.com/archives/423.html
二、配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT(允许80端口通过防火墙)
-A INPUT -m state --state NEW -m tcp -...
Apache2.4.1+MySQL5.5.21+PHP5.3.10, CentOS, CentOS编译安装lamp, LAMP阅读全文
1℃
2012年02月22日
⁄ CentOS
⁄ 被围观 37,445次+
说明:/home目录里面有data目录,data目录里面有a、b、c、d、e五个目录,现在要把data目录里面除过e目录之外的所有目录拷贝到/bak目录中
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容版权所有,转载请注明出处及原文链接
方法一:终端命令行下执行以下命令
cp -R `find /home/data -type d -path /home/data/e -prune -o -print | sed 1d ` /bak
########################################################
脚本实现
脚本存放路径/home/osyunwei.sh
vi /home/osyunwei.sh #编辑脚本,添加下面的代码...
linux, llinux cp, llinux 排除目录阅读全文
0℃
2012年02月20日
⁄ LNMP
⁄ 被围观 13,256次+
准备篇:
1、配置防火墙,开启80端口、3306端口
说明:Ubuntu默认安装是没有开启任何防火墙的,为了服务器的安全,建议大家安装启用防火墙设置,这里推荐使用iptables防火墙。
whereis iptables #查看系统是否安装防火墙
iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已经安装iptables
apt-get install iptables #如果默认没有安装,请运行此命令安装防火墙
iptables -L #查看防火墙配置信息,显示如下:
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容版权所...
lnmp, Nginx+MySQL+PHP, Ubuntu, Ubuntu Server, Ubuntu安装配置lnmp阅读全文
2℃
2012年02月20日
⁄ LNMP
⁄ 被围观 13,941次+
准备篇:
1、配置防火墙,开启80端口、3306端口
说明:Ubuntu默认安装是没有开启任何防火墙的,为了服务器的安全,建议大家安装启用防火墙设置,这里推荐使用iptables防火墙。
whereis iptables #查看系统是否安装防火墙
iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已经安装iptables
apt-get install iptables #如果默认没有安装,请运行此命令安装防火墙
iptables -L #查看防火墙配置信息,显示如下:
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容版权所...
lnmp, Nginx+MySQL+PHP, Ubuntu, Ubuntu Server 11.10, Ubuntu安装配置lnmp阅读全文
6℃
2012年02月18日
⁄ LAMP
⁄ 被围观 19,253次+
准备篇:
1、配置防火墙,开启80端口、3306端口
说明:Ubuntu默认安装是没有开启任何防火墙的,为了服务器的安全,建议大家安装启用防火墙设置,这里推荐使用iptables防火墙。
whereis iptables #查看系统是否安装防火墙
iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已经安装iptables
apt-get install iptables #如果默认没有安装,请运行此命令安装防火墙
iptables -L #查看防火墙配置信息,显示如下:
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所...
Apache+MySQL+PHP, LAMP, Ubuntu, Ubuntu lamp, Ubuntu Server, Ubuntu安装配置lamp阅读全文
0℃
2012年02月18日
⁄ Ubuntu
⁄ 被围观 36,733次+
说明:
Ubuntu默认安装下没有配置国内apt-get源、这样使用apt-get在线安装软件会很慢,下面教大家配置apt-get国内镜像源,在线安装SSH服务(最小话安装的Ubuntu默认没有安装SSH)
1、配置apt-get源
cp /etc/apt/sources.list /etc/apt/sources.listbak #备份原有配置文件
nano /etc/apt/sources.list #编辑,添加以下代码:
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
deb http://mirrors.163.com/ubuntu/ oneiric main restricted universe multiv...
apt-get, ssh, Ubuntu, Ubuntu配置apt-get阅读全文
1℃
2012年02月18日
⁄ Ubuntu
⁄ 被围观 25,111次+
说明:
系统:Ubuntu Server 11.10
IP地址:192.168.21.168
子网掩码:255.255.255.0
网关:192.168.21.2
DNS:8.8.8.8
8.8.4.4
操作:
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
1、设置IP地址、网关
nano /etc/network/interfaces /etc/network/interfacesbak #备份原有配置文件
nano /etc/network/interfaces #编辑网网卡配置文件
auto lo
iface lo inet loopback
auto eth0 #开机自动连接网络
iface eth0 inet static #static表示使用固...
DNS, IP, Ubuntu, Ubuntu设置IP, 网关阅读全文
0℃
2012年02月18日
⁄ Ubuntu
⁄ 被围观 13,597次+
说明:
Ubuntu在安装过程中没有提示设置root密码,而且必须创建一个普通账号安装才能继续。
下面教大家在Ubuntu中启用root账号并设置密码
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
以普通账号登录系统
sudo passwd root #启用root账号并设置密码,根据提示输入2次密码
su root #从普通用户切换到root用户,根据提示输入root密码
sudo passwd -l root #禁用root账号,如果要启用,输入sudo passwd root再次设置root密码
root, Ubuntu, Ubuntu root阅读全文
2℃
2012年02月17日
⁄ Ubuntu
⁄ 被围观 16,973次+
一、说明:
Ubuntu分为桌面版(desktop)和服务器版(Server),下面为大家介绍服务器版本Ubuntu Server 11.10的详细安装过程。
附Ubuntu Server 11.10系统镜像下载地址:
32为:http://mirrors.163.com/ubuntu-releases/11.10/ubuntu-11.10-server-i386.iso
64位:http://mirrors.163.com/ubuntu-releases/11.10/ubuntu-11.10-server-amd64.iso
二、安装系统:用启动盘成功引导之后,出现下面的界面
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
选择语言:中文...
Ubuntu, Ubuntu Server, Ubuntu Server 11.10, Ubuntu Server 安装, 安装图解教程阅读全文
3℃
2012年02月16日
⁄ LNMP
⁄ 被围观 18,246次+
准备篇:
1、配置防火墙,开启80端口、3306端口
说明:debian默认安装是没有开启任何防火墙的,为了服务器的安全,建议大家安装启用防火墙设置,这里推荐使用iptables防火墙。
whereis iptables #查看系统是否安装防火墙
iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已经安装iptables
apt-get install iptables #如果默认没有安装,请运行此命令安装防火墙
iptables -L #查看防火墙配置信息,显示如下:
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容...
Debian, debian 6.0.4, Debian安装配置lnmp, lnmp, Nginx+MySQL+PHP阅读全文
1℃
2012年02月16日
⁄ LNMP
⁄ 被围观 12,084次+
准备篇:
1、配置防火墙,开启80端口、3306端口
说明:debian默认安装是没有开启任何防火墙的,为了服务器的安全,建议大家安装启用防火墙设置,这里推荐使用iptables防火墙。
whereis iptables #查看系统是否安装防火墙
iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已经安装iptables
apt-get install iptables #如果默认没有安装,请运行此命令安装防火墙
iptables -L #查看防火墙配置信息,显示如下:
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容...
Debian, debian 6.0.4, Debian 安装配置lnmp, lnmp, Nginx+MySQL+PHP阅读全文
0℃
2012年02月15日
⁄ LAMP
⁄ 被围观 22,526次+
准备篇:
1、配置防火墙,开启80端口、3306端口
说明:debian默认安装是没有开启任何防火墙的,为了服务器的安全,建议大家安装启用防火墙设置,这里推荐使用iptables防火墙。
whereis iptables #查看系统是否安装防火墙
iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已经安装iptables
apt-get install iptables #如果默认没有安装,请运行此命令安装防火墙
iptables -L #查看防火墙配置信息,显示如下:
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©...
Apache+MySQL+PHP, Debian, Debian安装配置lamp, LAMP阅读全文