2011-2-13 陈老师UIE笔记
时间:2011-03-03 来源:sgy618
2011-2-13 陈老师UIE笔记
基本文件操作命令:
把文件分为简单的两大种:
普通文件 目录文件
白色 蓝色
对文件的操作一般有:
创建,删除,编辑,查看,移动,重命名,复制
-------------注意文件的路径问题----
普通文件 目录文件
创建 touch mkdir
删除 rm rmdir/rm
移动 mv mv
重命名就是在同一位置进行移动
复制 cp cp -r
查看 cat ls
more
less
命令的语法:
命令 [选项] [参数]
ls
ls -l /
ls -l
命令一定是区分大小写的。
而且可以使用TAB将命令自动补齐命令和文件路径。
可以使用上下键翻历史命令。
history命令可以用来查看当前终端执行过的历史命令。
ctl + a 命令行首
ctl + e 命令行末
这些都是shell的功能,当前使用的是bash这种shell。
命令帮助的查看:
ls --help
man ls
ls -a
ls -l
ls -lh
ls -d dirname 查看目录本身,而不是目录里的内容
在linux 下,隐藏文件是指文件名字以点开头 的文件。
有两个非常重要的目录名为 . 和 .. ,分别表示当前目录和上一级目录
[root@localhost ~]# bash prompt string
[当前登录的用户名@当前主机名 用相对路径描述的当前位置]
# 表示超级管理员身份的用户
$ 表示普通用户
cd .
cd ..
cd ../..
cd
cd ~
注意命令语法,相对路径/绝对路径问题
----查看普通文件---------
cat -n /etc/passwd
more /etc/passwd
less /etc/passwd
head /etc/passwd
head -n 5 /etc/passwd
tail -n 3 /etc/passwd
tail /etc/passwd
grep "string" filename
[root@localhost home]# ls --help | less
管道符 : 把前一个命令的输出交给后一个命令作为 输入。 是进程间通讯的一种方法
[root@localhost home]# cat -n /etc/passwd | head -n 5
1 root:x:0:0:root:/root:/bin/bash
2 bin:x:1:1:bin:/bin:/sbin/nologin
3 daemon:x:2:2:daemon:/sbin:/sbin/nologin
4 adm:x:3:4:adm:/var/adm:/sbin/nologin
5 lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
[root@localhost home]#
[root@localhost home]# history > /root/Desktop/command.txt
[root@localhost home]# cat /root/Desktop/command.txt
[root@localhost home]# grep -i root /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
[root@localhost home]# grep -n root /etc/passwd
[root@localhost home]# grep -l alias /etc/* 把/etc/下所有文件中,只要内容包含alias,就显示出文件名到标准输出位置(屏幕)。以下是罗列出的文件名称!
/etc/a2ps.cfg
/etc/aliases
/etc/bashrc
/etc/dnsmasq.conf
/etc/ldap.conf
/etc/lftp.conf
/etc/modprobe.conf
/etc/modprobe.conf~
/etc/multipath.conf
/etc/Muttrc
/etc/nsswitch.conf
/etc/prelink.cache
/etc/profile
/etc/rmt
/etc/services
/etc/termcap
mii-tool 查看 网络是否linkOK
ifconfig eth0 查看指定接口eth0的IP地址
如果没有IP ,用setup命令,配置完IP,必须用 /etc/init.d/network restart 命令重启网络服务,让刚刚的配置被读取并生效
ping IP 检测与指定IP的主机是否可通讯
ssh远程登录服务
shh 服务器端:
启动服务 /etc/init.d/sshd start
设置服务随开机启动 chkconfig sshd on
ssh 客户端:
需要知道服务器端的IP和服务器端的帐号
ssh [email protected]
根据提示输入服务器端的帐号密码
[root@localhost home]# scp [email protected]:/root/Desktop/command.txt /home