分类: LINUX
2013-12-08 10:49:40
在linux /boot/vmlinuz...这一行后面添加 quiet splash rw init=/bin/bash。然后ctrl + x 就可以直接运行。
运行后系统直接进入root mode,此时运行passwd命令更改密码。
10.xmanager
11.md5sum
md5sum file > file.md5
md5sum -c file.md5
http://blog.chinaunix.net/uid-7450016-id-2625909.html
12.ssh远程创建带空格的文件夹,scp也是如此
ssh username@192.168.*.* mkdir "/test/soft/123/Microsoft\\ SQL\\ Server"
1、需要用括号(是双引号)把路径扩起来。
2、需要在空格前加两个\
http://blog.sina.com.cn/s/blog_71906a600100unly.html
/>
13.crontab 指定执行用户
crontab -e -u 用户名
或
su 用户名
crontab -e
直接在/etc/crontab文件中添加,不过需要是root身份。
/>
14.grep不查找隐藏文件夹的方法
grep --exclude-dir=".svn"
15.使用public/private key让putty(ssh)自动登录
17.nfs相关配置
服务器端:apt-get install nfs-common nfs-kernel-server portmap
编辑/etc/exports: /storage/pic 192.168.1.1(rw,sync,no_root_squash) 192.168.1.2(rw,sync,no_root_squash)
service nfs-kernel-server restart
service portmap restart
客户端:apt-get install nfs-common
showmount -e 192.168.1.3
mount -t nfs 192.168.1.3:/storage/pic /mnt
http://general.blog.51cto.com/927298/354523/
18.端口转发工具rinetd
配置,端口转发的配置在 /etc/rinetd.conf
配置规则
0.0.0.0 8080 172.19.94.3 8080
说明一下(0.0.0.0表示本机绑定所有可用地址)
0.0.0.0 2222 192.168.0.103 3389
1.2.3.4 80 192.168.0.10 80
将所有发往本机8080端口的请求转发到172.19.94.3的8080端口
将所有发往本机2222端口的请求转发到192.168.0.103的3389端口
将所有发往1.2.3.4的80端口请求转发到192.168.0.10的80端口