SHELL

自定义文件描述符exec

2012/02/25 SHELL

只读模式。
input.txt内容为:“it is nothing...”

$exec 3<input.txt
$cat <&3 it is nothing...

在次运行的话

$cat <&3

没有内容显示了。
想再使用文件描述符3,就需用exec重新定义。

=====
截断模式。
output.txt内容为空。

$exec 4>output.txt
$echo first word >&4
$cat output.txt
first word

描述符4可以重复使用。

$echo second word >&4
$cat output.txt
first word
second word

=====
追加模式。
input.txt内容为“it is nothing...”。

$exec 5>>input.txt
$echo write a new line >&5
$cat input.txt
it is nothing...
write a new line

描述符5也可以重复使用。

$echo write another line >&5
$cat input.txt
it is nothing...
write a new line
write another line

Linux下搭建安装Discuz论坛

2010/12/28 SHELL 27 comments ,

写一个Linux下搭建Discuz论坛的全过程教程。

本例使用的Linux系统为:RHEL5.3。

1.[root@linux ~]# mkdir /mnt/cdrom

2.[root@linux ~]# mount /dev/cdrom /mnt/cdrom
这是在Windows下使用VMware虚拟机运行Linux的。
先在把RHEL5.3的ISO镜像文件加载到虚拟机的光驱,然后才执行mount命令。

(more…)

使用wine在fedora下玩魔兽争霸3

2010/12/13 SHELL 9 comments , ,

今天在mucid的博客里看到《让Linux合理的利用Windows资源》,谢谢mucid~^^于是,我在fedora13下,装了wine。
经过大慨半个小时的安装完成了。在终端进入魔兽的所在目录,
然后输入 wine war3.exe -opengl -window
就成功的把war3以窗口模式启动了~哈哈 (more…)

文本模式RHEL中文乱码

2010/10/11 SHELL 2 comments

今天在使用putty,telnet上VM虚拟机的RHEL5.4的时候,su root,提示输入密码的位置变成一队乱码,默认在图形界面是中文的,现在telnet后,显示中文变成了乱码。然后google了一下。。。

修改/etc/sysconfig/i18n (more…)

LINUX命令行中设置修改时间

2010/10/10 SHELL 2 comments

怎么在命令行设置时间
设置时间的参数不常使用,时间一长就忘记了~>__<记下来。 (more…)