??xml version="1.0" encoding="utf-8" standalone="yes"?> http://dev.mysql.com/downloads/mysql/5.7.html#downloads 配置OS 安装与初始化DB 如果改变默认安装路径Q则需?nbsp; 讄开机启?/p> http://www.cnblogs.com/captain_jack/archive/2010/10/12/1848496.html
1. 下蝲安装?/h4>
mysql-5.7.14-linux-glibc2.5-x86_64.tar.gz2. 查库文g是否存在Q如有删除?/h4>
3. 查mysqll和用户是否存在Q如无创建?/h4>
4. 解压TAR包,更改所属的l和用户
5. 安装和初始化数据?/h4>
1. /etc/my.cnf?etc/init.d/mysqld中修改:
basedir=’/apps/mysql’ datadir=’/apps/mysql/data’
2. 创徏lnQ?nbsp;
mkdir -p /usr/local/mysql/bin6. 初始化密?/h4>
7. dq程讉K权限
8. 修改字符?/h4>
9. linux下mysql配置文gmy.cnf详解
10. 卸蝲MySQL
]]>
VirtualBox中装?a target="_blank" title="Ubuntu" style="color: #b32bd5;">Ubuntu后,发现盘I间不够使用 了。以下是搜集整理的解军_法:
1. d新硬?/p>
讄 -> Storage -> SATA控制?>叛_Q选择“d虚拟盘”
然后Q根据需求创建合适的盘
2. 重启虚拟?/p>
查看现有pȝ的磁盘空?/p>
sudo fdisk -l
可看到新加的虚拟盘Q一般名为:Disk /dev/sdb
3. l新加的盘分区
fdisk /dev/sdb
键入m,可看到帮助信?/p>
command (m for help):m
增加新分?/p>
command (m for help):n
选择基本分区Q输入:p
Z个分?/p>
Partition number(1-4):1
回R
First cylinder (1-15908,default 1):Enter
写入q?/p>
command (m for help):w
4. 格式化磁盘分?/p>
用ext4格式?dev/sdb1q入格式?/p>
sudo mkfs.ext4 /dev/sdb1
5. 挂蝲分区
创徏新的挂蝲?/p>
sudo mkdir /work
新盘分区挂蝲?work目录?/p>
sudo mount -t ext4 /dev/sdb1 /home/Hadoop/NewDisk1/
查看挂蝲
df -h
可以看到新加的硬盘:/dev/sdb1
6. 开动挂?/p>
修改文g
sudo vim /etc/fstab
在最后一行加入:
/dev/sdb1 /home/hadoop/NewDisk1/ ext4 defaults 0 0
q一行一共六个参敎ͼ依次?#8220;文gpȝ所在设备;挂蝲点;文gpȝcdQ挂载参敎ͼ大多数系l?defaults"可以满需要;后两个一个是转储Q一个是启动序Q如果没有{储需求,也不是系l启动盘都设|成0可以了?/p>
7.所有做完后盘已经讄成功Q只是分然挂载上Q但是不可写Q需要更Ҏ限:
sudo chmod -R 777 /home/hadoop/NewDisk1/
一是linux服务器端的tftp-server支持,
二是嵌入式目标系l的tftp-client支持.
因ؓu-boot本n内置支持tftp-client,所以嵌入式目标pȝ端就不用配置?
下面pl介l一下linux服务器端tftp server配置.在redhat 9.0的第三张光盘?有tftp-server的安装rpm?Q?Q?nbsp; 安装
#mount –t iso9660 /dev/hdc /mnt/cdrom //挂蝲光盘
#rpm -ivh tftp-server-0.32-4.i386.rpm //安装
#umount /mnt/cdrom //卸蝲光盘
Q?Q修Ҏ件在linux?不管使用的是哪一Usuper-server,inetd或者xinetd,默认情况下TFTP服务是禁用的,所以要修改文g来开启服?
ҎQ?Q的安装Ҏ,可以修改文g/etc/xinetd.d/tftp.主要是设|TFTP服务器的根目?开启服?
修改后的文g如下:
service tftp {
socket_type =dgram
protocol =udp
wait =yes
user =root
server =/usr/sbin/in.tftpd
server_args =-s /home/app -c
disable =no
per_source =11
cps =100 2
flags =IPv4
}
说明:修改server_args= -s <path> -c,其中<path>处可以改Z的tftp server配置的根目录,参数-s指定chroot,-c指定了可以创建文?
Q?Q创建tftp根目?关闭防火?启动tftp-server.
#mkdir /home/app
#chmod o+w /home/app
#/etc/init.d/iptables stop //关闭防火?/p>
#service xinetd restart //重启 xinetd 服务
重启xinetd服务,因ؓTFTP服务受控与xinetd, xinetd是管服务的服?它是不开端口?
验证一下TFTP是否h?
# netstat -nlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:32768 0.0.0.0:* LISTEN 3122/rpc.statd
tcp 0 0 127.0.0.1:32781 0.0.0.0:* LISTEN 4035/xinetd
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 3103/portmap
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 3324/httpd
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 3255/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 3213/cupsd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 3295/sendmail: acce
tcp 0 0 127.0.0.1:6010 0.0.0.0:* LISTEN 3415/0
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 3324/httpd
udp 0 0 0.0.0.0:32768 0.0.0.0:* 3122/rpc.statd
udp 0 0 0.0.0.0:69 0.0.0.0:* 4035/xinetd ;
可以看到69端口已经打开
udp 0 0 0.0.0.0:69 0.0.0.0:* 4012/in.tftpd
udp 0 0 0.0.0.0:111 0.0.0.0:* 3103/portmap
udp 0 0 0.0.0.0:754 0.0.0.0:* 3122/rpc.statd
udp 0 0 0.0.0.0:631 0.0.0.0:* 3213/cupsd
q样,tftp server配置的启动步骤就完成了?/p>
你可以登陆本机测试以?命o如下:
#tftp your-ip-address
tftp>get <download file>
tftp>put <upload file>
tftp>q
三种配置环境变量的方?br />
1. 修改/etc/profile文g
如果你的计算Z仅作为开发用时推荐使用q种ҎQ因为所?strong>用户的shell都有权用这些环境变量,可能会给pȝ带来安全性问题?
·用文本编辑器打开/etc/profile
·在profile文g末尾加入Q?
export JAVA_HOME=/usr/share/jdk1.6.0_14
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
·重新d
·注解
a. 你要?/usr/share/jdk1.6.0_14改ؓ你的jdk安装目录
b. linux下用冒号“:”来分隔\?
c. $PATH / $CLASSPATH / $JAVA_HOME 是用来引用原来的环境变量的?
?strong>讄环境变量时特别要注意不能把原来的值给覆盖掉了Q这是一U?
常见的错误?
d. CLASSPATH中当前目?#8220;.”不能?把当前目录丢掉也是常见的错误?
e. export是把q三个变量导Zؓ全局变量?
f. 大小写必M格区分?/p>
2. 修改.bash_profile文g
q种Ҏ更ؓ安全Q它可以把用这些环境变量的权限控制?strong>用户U别Q如果你需要给某个用户权限使用q些环境变量Q你只需要修改其个h用户ȝ录下?bash_profile文g可以了?
·用文本编辑器打开用户目录下的.bash_profile文g
·?bash_profile文g末尾加入Q?/p>
export JAVA_HOME=/usr/share/jdk1.6.0_14
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
·重新d
3. 直接在shell?strong>讄变量
不赞成用这U方法,因ؓ换个shellQ你?strong>讄无效了Q因此这U方法仅仅是临时使用Q以后要使用的时候又要重?strong>讄Q比较麻烦?
只需在shelll端执行下列命oQ?
export JAVA_HOME=/usr/share/jdk1.6.0_14
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
[root@localhost soft]# java -version
java version "1.4.2"
gij (GNU libgcj) version 4.1.2 20080704 (Red Hat 4.1.2-48)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[root@localhost soft]# rpm -qa|grep gcj
libgcj-4.1.2-48.el5
java-1.4.2-gcj-compat-1.4.2.0-40jpp.115
libgcj-4.1.2-48.el5
2.卸蝲旧的jdk
[root@localhost soft]# rpm -e --nodeps java-1.4.2-gcj-compat-1.4.2.0-40jpp.115
[root@localhost soft]# java -version
-bash: /usr/bin/java: 没有那个文g或目?/p>
3.后安装新的jdk
./ jdk-1_5_0_15-linux-i586.bin
mkdir /usr/java
mv jdk1.5.0_15 /usr/java/
ln -s /usr/java/jdk1.5.0_16/bin/java /usr/bin/java
ln -s /usr/java/jdk1.5.0_16/bin/javac /usr/bin/javac
4.~写环境变量:
?etc/profile里写入如?
#vi /etc/profile
JAVA_HOME=/usr/java/jdk1.5.0_16
JRE_HOME=/usr/java/jdk1.5.0_16/jre
PATH=$PATH:$JAVA_HOME/bin:JRE_HOME/bin
CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar:$JRE_HOME/lib:
export JAVA_HOME JRE_HOME PATH CLASSPATH
export LANG=zh_CN.gb18030
5.使环境变量生?
#source /etc/profile
@import url(http://www.aygfsteel.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);
查看文g内容的特D方?br />
怿最基本的cat、more和less你已l很熟悉了,如果有特D的要求呢:
-b Number ?Number 变量表示?512 字节块位|开始读取指定文件? |
cd #tomcat安装目录# cd logs vi catalina.out
q个文g是tomcat的输Z?和在windowsq_上安装的tomcat的窗口的信息一?/p>
转自Q?a >http://www.linuxsir.org
最常用的基本操作命令E推荐]
http://www.linuxsir.org/bbs/showthre...&threadid=4027
Linux中文件查找技术大?find命o)
http://www.linuxsir.org/bbs/showthre...&threadid=1108
|络通信命o详解
http://www.linuxsir.org/bbs/showthre...threadid=28256
linux指o大全[1]
http://www.linuxsir.org/bbs/showthre...=&threadid=766
linux指o大全[2]
http://www.linuxsir.org/bbs/showthre...=&threadid=755
linux指o大全[3]
http://www.linuxsir.org/bbs/showthre...=&threadid=775
pȝ理 命o详解
http://www.linuxsir.org/bbs/showthre...threadid=28216
Linuxpȝ命o(备䆾压羃)
http://www.linuxsir.org/bbs/showthre...threadid=23695
pȝ备䆾命o cpio
http://www.linuxsir.org/bbs/showthre...threadid=16400
文g内容查询命o
http://www.linuxsir.org/bbs/showthre...&threadid=5106
解压~命令及软g集中解决?br />
http://www.linuxsir.org/bbs/showthre...&threadid=3506
基本命o
http://www.linuxsir.org/bbs/showthre...&threadid=2996
|络相关ping finger nslookup netstat
http://www.linuxsir.org/bbs/showthre...&threadid=5121
Linux的基本文?br />
启动引导E序配置文g
LILO /etc/lilo.conf
GRUB /boot/grub/menu.lst
pȝ启动文g核脚?/font>
d动控制文?/etc/inittab
SysV启动脚本的位|?/etc/init.d?etc/rc.d/init.d?etc/rc.d
SysV启动脚本链接的位|?/etc/init.d/rc?.d?etc/rc.d/rc?.d?etc/rc?.d
本地启动脚本 /etc/rc.d/rc.local?etc/init.d/boot.local?etc/rc.boot里的文g
|络配置文g
建立|络接口的脚?/sbin/ifup
保存|络配置数据文g的目?/etc/network?etc/sysconfig/network?etc/sysconfig/network-scripts
保存解析DNS服务的文?/etc/resolv.conf
DHCP客户端的配置文g /etc/dhclient.conf
服务E序配置文g和目?/font>
inetd配置文g /etc/inetd.conf
TCP Wrappers配置文g /etc/hosts.allow?etc/hosts.deny
xinetd配置文g /etc/xinetd.conf?etc/xinetd.d目录里的文g
g配置
内核模块配置文g /etc/modules.conf
g讉K文g
Linux讑֤文g /dev目录?br />
保存g和驱动程序数据的文g /proc目录?br />
扫描仪配|文?/font>
SANE主配|?/etc/sane.d/dll.conf
特定扫描仪的配置文g /etc/sane.d目录里以扫描仪型号命名的文g
打印机配|文?/font>
BSD LPD核LPRng的本地打印机主配|文?/etc/printcap
CUPS本地打印Z配置和远E访问受权文?/etc/cups/cupsd.conf
BSD LPDq程讉K受权文g /etc/hosts.lpd
LPRngq程讉K受权文g /etc/lpd.perms
文gpȝ
文gpȝ?/etc/fstab
软驱装配?/floppy?mnt/floppy?media/floppy
光驱装配?/cdrom?mnt/cdrom?media/cdrom
shell配置文g
bashpȝ非登录配|文?/etc/bashrc?etc/bash.bashrc?etc/bash.bashrc.local
bashpȝd文g /etc/profile?etc/profile.d里的文g
bash用户非登录配|文?~/.bashrc
bash用户d配置文g ~/.profile
XFree86配置文g核目?/font>
XFree86主配|文?/etc/XF86config?etc/X11/XF86Config?etc/X11/XF86Config-4
字体服务E序配置文g /etc/X11/fs/config
Xft 1.x配置文g /etcX11/XftConfig
Xft 2.0配置文g /etc/fonts/fonts.conf
字体目录 /usr/X11R6/lib/X11/fonts?usr/share/fonts
Web服务E序配置文g
Apache主配|文?/etc/apache?etc/httpd?httpd/conf里的httpd.conf或httpd2.conf文g
MIMEcd文g 与Apache主配|文件在同一目录里的mime.types或apache-mime.types
文g服务E序配置文g
ProFTPd配置文g /etc/proftpd.conf
vsftpd配置文g /etc/vsftpd.conf
NFS服务E序的输出定义文?/etc/exports
NFS客户端装配的NFS输出 /etc/fstab
Samba配置文g /etc/samba/smb.conf
Samba用户配置文g /etc/samba/smbpasswd
邮g服务E序配置文g
sendmail主配|文?/etc/mail/sendmail.cf
sendmail源配|文?/etc/mail/sendmail.mc?usr/share/sendmail/cf/cf/linux.smtp.mc或其他文?br />
Postfix主配|文?/etc/postfix/main.cf
Exim主配|文?/etc/exim/exim.cf
Procmail配置文g /etc/procmailrc或~/.procmailrc
Fetchmail配置文g ~/.fetchmailrc
q程d配置文g
SSH服务E序配置文g /etc/ssh/sshd_config
SSH客户端配|文?/etc/ssh/ssh_config
XDM配置文g /etc/X11/xdm目录?br />
GDM配置文g /etc/X11/gdm目录?br />
VNC服务E序配置文g /usr/X11R6/bin/vncserver启动脚本和~/.vnc目录里的文g
其他服务E序配置文g
DHCP服务E序配置文g /etc/dhcpd.conf
BIND服务E序配置文g /etc/named.conf?var/named/
NTP服务E序配置文g /etc/ntp.conf
How Linux Boots
http://bbs.linuxsir.org/showthread.php?t=236071
Linux下的主要文g
http://www.linuxsir.org/bbs/showthre...hreadid=131580
http://www.linuxsir.org/bbs/showthread.php?t=194273
bash配置文g实验
http://www.linuxsir.org/bbs/showthre...FE%CA%B5%D1%E9
如何讄hosts.allow和hosts.denyQ?br />
http://www.linuxsir.org/bbs/showthre...ht=hosts.allow
文gcd与程序关?br />
http://www.linuxsir.org/bbs/showthread.php?t=134703
|络配置说明一?br />
|卡驱动
Debian3安装Intel千兆|卡驱动手记
http://www.linuxsir.org/bbs/showthre...ighlight=intel
如何驱动VIA芯片lVT8231_VT8233_VT8235L集成|卡
http://www.linuxsir.org/bbs/showthre...ghlight=VT8231
如何安装和配|Intel 2011B无线|卡
http://www.linuxsir.org/bbs/showthre...DF%CD%F8%BF%A8
nforce2|卡安装心得
http://www.linuxsir.org/bbs/showthre...threadid=62506
linux下用蓝牙建立无线|\
http://www.linuxsir.org/bbs/showthre...t=%C0%B6%D1%C0
http://www.linuxsir.org/bbs/showthre...t=%C0%B6%D1%C0
http://www.linuxsir.org/bbs/showthre...t=%C0%B6%D1%C0
修改|卡 MAC ?#8220;官方”Ҏ
http://www.linuxsir.org/bbs/showthre...CD%F8%BF%A8MAC
扔掉你的锐捷官方801.1X认证客户?br />
http://www.linuxsir.org/bbs/showthread.php?t=188624
宽带接入
ADSL
http://www.linuxsir.org/bbs/showthre...threadid=72032
http://www.linuxsir.org/bbs/showthread.php?t=196183
USB接口的ADSL猫上|办?br />
http://www.linuxsir.org/bbs/showthre...F%DA%B5%C4ADSL
http://www.linuxsir.org/bbs/showthre...F%DA%B5%C4ADSL
如何在铁通WEB认证方式上网
http://www.linuxsir.org/bbs/showthre...BD%C9%CF%CD%F8
沛_|通宽带用户客L下蝲面
http://218.29.0.252/
如何在LINUX使用沛_|通的客户端?
http://www.linuxsir.org/bbs/showthre...t=%CD%F8%CD%A8
关于沛_|通上|问题的解答及具体解x?br />
http://www.linuxsir.org/bbs/showthre...=1#post1028824
沛_|通新客户?LINUX
http://www.linuxsir.org/bbs/showthread.php?t=186944
802Q?x协议解析
http://www.linuxsir.org/bbs/showthre...ghlight=802.1X
http://www.linuxsir.org/bbs/showthre...ghlight=802.1X
http://www.linuxsir.org/bbs/showthre...ghlight=802.1X
http://www.linuxsir.org/bbs/showthre...ghlight=802.1X
长城宽带认证Ҏ
http://www.linuxsir.org/bbs/showthre...t=%B3%A4%B3%C7
http://www.linuxsir.org/bbs/showthre...t=%B3%A4%B3%C7
dr.com上网解决Ҏ
http://bbs.linuxsir.org/showthread.php?t=222265
Linuxq口|络解决Ҏ
http://www.linuxsir.org/bbs/showthre...=1#post1030986
|络服务
Linux服务器的一些基本应?br />
http://www.linuxsir.org/bbs/showthre...BE%D3%A6%D3%C3
用Linux建立一个拨h务器以提供拨h?br />
http://www.linuxsir.org/bbs/showthre...t=%B2%A6%C8%EB
DNS
Linux架设DNS服务?br />
http://www.linuxsir.org/bbs/showthre...FE%CE%F1%C6%F7
在Debian中配|DNS服务器的全过E?br />
http://www.linuxsir.org/bbs/showthre...FE%CE%F1%C6%F7
Mandrake的DNS服务器配
http://www.linuxsir.org/bbs/showthre...FE%CE%F1%C6%F7
DHCP
Linux下DHCP的安装和配置
http://www.linuxsir.org/bbs/showthre...highlight=DHCP
http://www.linuxsir.org/bbs/showthre...highlight=DHCP
FTP
用vsFTPd自架Linux|络安装服务器,以及Redhat局域网安装的解军_?br />
http://www.linuxsir.org/bbs/showthre...Pd%D7%D4%BC%DC
Apache
Administering Apache MW记
http://www.linuxsir.org/bbs/showthre...=Administering
Linux Apache Web 服务器终极教E?br />
http://www.linuxsir.org/bbs/showthre...AB%BD%CC%B3%CC
Apache 2.0.36 & PHP 4.3 的集?br />
http://www.linuxsir.org/bbs/showthre...ghlight=2.0.36
apache-2.0.43和tomcat-4.1.12集成
http://www.linuxsir.org/bbs/showthre...t=tomcat4.1.12
Mail
Postfix + Cyrus-IMAP + Cyrus-SASL + MySQL完全指南
http://www.linuxsir.org/bbs/showthre...hlight=Postfix
Qmailpȝ的安装实?br />
http://www.linuxsir.org/bbs/showthre...il%CF%B5%CD%B3
用qmail建部门邮件服务器
http://www.linuxsir.org/bbs/showthre...ht=qmail%BD%A8
构徏sendmail服务?br />
http://www.linuxsir.org/bbs/showthre...FE%CE%F1%C6%F7
http://www.linuxsir.org/bbs/showthre...FE%CE%F1%C6%F7
RH9下最单的WebMail的实现方?br />
http://www.linuxsir.org/bbs/showthre...=WebMail%B5%C4
q程控制
openssh的安装方?br />
http://www.linuxsir.org/bbs/showthre...=openssh%B5%C4
SSH_HOWTO中文文档
http://www.linuxsir.org/bbs/showthre...&highlight=SSH
巩固SSH安全讉K的构惛_操作Ҏ
http://www.linuxsir.org/bbs/showthre...&highlight=SSH
ssh使用ip隧道
http://www.linuxsir.org/bbs/showthre...&highlight=SSH
Sftp和scp总览
http://www.linuxsir.org/bbs/showthre...&highlight=SSH
Linux中如何开启Telnet服务
http://www.linuxsir.org/bbs/showthre...et%B7%FE%CE%F1
Samba
Samba服务器的使用
http://www.linuxsir.org/bbs/showthre...&threadid=4381
Samba使用大全
http://www.linuxsir.org/bbs/showthre...C3%B4%F3%C8%AB
用实验快速学习Samba
http://www.linuxsir.org/bbs/showthre...%A7%CF%B0Samba
代理服务?/font>
FreeBSD下用squid + ipfilter实现透明代理
http://www.linuxsir.org/bbs/showthre...ht=%D3%C3squid
ZLinux2.4内核的透明代理配置ҎQ实现局域网׃nADSL上网
http://www.linuxsir.org/bbs/showthre...threadid=57074
架设 Squid 代理服务?br />
http://www.linuxsir.org/bbs/showthre...threadid=23194
配置Apache代理
http://www.linuxsir.org/bbs/showthre...he%B4%FA%C0%ED
配置Apache逆向代理
http://www.linuxsir.org/bbs/showthre...F2%B4%FA%C0%ED
安全
iptables 入门
http://www.linuxsir.org/bbs/showthre...light=iptables
iptables的应?br />
http://www.linuxsir.org/bbs/showthre...C4%D3%A6%D3%C3
iptables中文man文档
http://www.linuxsir.org/bbs/showthre...an%CE%C4%B5%B5
linux环境下发现ƈLpȝd
http://www.linuxsir.org/bbs/showthre...B3%B9%A5%BB%F7
关于日志
http://www.linuxsir.org/bbs/showthre...DA%C8%D5%D6%BE
linux安全ȝ
http://www.linuxsir.org/bbs/showthre...DA%C8%D5%D6%BE
PPPOE
在Linux下徏立PPPOE服务?br />
http://www.linuxsir.org/bbs/showthre...threadid=33535
架设论坛
用源码包安装php-4.34+mysql-4.0.16+apache-2.0.48以及vbb-2.32的架?br />
http://www.linuxsir.org/bbs/showthre...t=apache2.0.48
Pure-FTPd + LDAP + MySQL + PGSQL + Virtual-Users + Quota How To
http://www.linuxsir.org/bbs/showthre...ighlight=quota
FreeBSD 中用QUOTA(盘配额)来限制用L?br />
http://www.linuxsir.org/bbs/showthre...ighlight=quota
proftpd+mysql用户认证+quota盘限额 安装Ҏ(最新版)
http://www.linuxsir.org/bbs/showthre...ighlight=quota
proftpd+mysql用户认证+quota盘限额
http://www.linuxsir.org/bbs/showthre...ighlight=quota
proftpd+mysql+quota+vbb完善实现Ҏ金钱购买的流量来下蝲FTP资源
http://www.linuxsir.org/bbs/showthre...ighlight=quota
linux下常用Y件的介绍一?br />
用mirrordir做硬盘或者目录镜?br />
http://www.linuxsir.org/bbs/showthre...ight=mirrordir
汉化说明
XFree86 字体化 Mini HOWTO
http://www.linuxsir.org/bbs/showthread.php?t=78155
借鉴字体知识Q学习一?br />
http://www.linuxsir.org/bbs/showthread.php?t=205927
GNU软g本地化技术初?br />
http://bbs.linuxsir.org/showthread.php?t=215007
Arch Linux 中文化-字体讄
http://www.linuxsir.org/bbs/showthread.php?t=254314
谈谈Unicode~?br />
http://bbs.linuxsir.org/showthread.php?t=256869
多版本linux的Y件安装说?br />
RPM常用命o及RPM中文手册
http://www.linuxsir.org/bbs/showthre...threadid=47734
RPM ?SRPM 套g理?br />
http://www.linuxsir.org/bbs/showthre...&highlight=rpm
Linux下的软g包安装方?br />
http://www.linuxsir.org/bbs/showthread.php?t=163837
~译安装l验(对初学者值得推荐)
http://bbs.linuxsir.org/showthread.php?t=222575
lilo、grub的配|说明一?br />
深入Linux的LILO
http://www.linuxsir.org/bbs/showthre...highlight=lilo
LILO的超U样本(可同时启动linux和freebsdQ?br />
http://www.linuxsir.org/bbs/showthre...hreadid=143673
GRUB 大全
http://www.linuxsir.org/bbs/showthre...hreadid=139153
GRUB大ȝ
http://www.linuxsir.org/bbs/showthre...=&postid=18053
GRUB实例
http://www.linuxsir.org/bbs/showthre...&threadid=3446
从grub>引导linux
http://www.linuxsir.org/bbs/showthre...highlight=grub
http://www.linuxsir.org/bbs/showthre...&threadid=6959
xp和linux怎么样双启动
http://www.linuxsir.org/bbs/showthre...t=linux+rescue
制作Linux的优盘启动盘
http://www.linuxsir.org/bbs/showthre...F4%B6%AF%C5%CC
Grub for DOS/NTLDR中文版Climbing定制版第四版
http://www.linuxsir.org/bbs/showthread.php?t=174598
?WinGrub 引导Linux安装详述Qwindows版的grubQ?br />
http://bbs.linuxsir.org/showthread.php?t=214551
os loader引导多系l实?ntloader)
http://www.linuxsir.org/bbs/showthre...&threadid=3953
Windown000/2003/XP中启动Linux的方?br />
http://www.linuxsir.org/bbs/showthre...hreadid=128912
?etc/X11/XF86Config ?etc/X11/xorg 文g的例?br />
ATI
http://www.linuxsir.org/bbs/showthread.php?t=116778
安装ATI 8.8.25 新驱?for xorg 6.8,kernel 2.6.10)
http://www.linuxsir.org/bbs/showthread.php?t=173859
NVIDIA
http://www.linuxsir.org/bbs/showthre...ght=XF86Config
调整h?br />
http://www.linuxsir.org/bbs/showthre...ght=XF86Config
讄和修改X Window的显C模?br />
http://www.linuxsir.org/bbs/showthre...BE%C4%A3%CA%BD
计划拟定在基版的|顶贴中录入以下的内容(目录Q:
1?etc/X11/XF86Config 文g的例子一?关于囑Ş界面的大部分问题都在q里)
2、lilo、grub的配|说明一?关于启动Q双pȝ启动Q?..npȝ启动的问题大部分都在q里)
3、rpm说明书一?很多版本的Y件安装介l?
4、各Ulinux发行版的?/font>
5、包的依赖关pȝ说明(Z么Y件会装不?
6、linux常用命o一?用linux一定要学会打命?
7、Linux下的主要配置文g的说明一?/font>
8、网l配|说明一?/font>
9、linux下常用Y件的介绍一?/font>
10、汉化说明一?/font>
11、X Window的简介一?/font>
12、各U文件系l的介一?/font>
13、安装各U显?声卡的说明一?/font>
14、各Ulinux常用工具的简介一?/font>
15、linux的基本概늮?请从windows转到linux的用户先看看q里)
16、挂载各U文件系l、U盘等{的说明(linux不像windows,分区Q光驱,其它讑֤不一定是自动p用的)
17、linux VS. windows
18、linux下常用Y件介l?/font>
19、linux下的各个目录的含?/font>
20、中文输入法的安装说?/font>
21、备份恢复说?/font>
22、编译器?gccQmakeQjdk安装(安装很多软g都要靠它?
23、经验点?/font>
24、linux操作的小机y、快捷键QTab补齐{?/font>
25、vi常用命o