solaris 命令

solaris 命令

1.使用Xwindows
user: cenginee
pwd: cEngserv
setenv DISPLAY <IP地址>:0.0

2. 查看硬盘使用情况
df -k /export/home

3. 查看目录大小
du -hs /export/home/pdm/app/bea/user_projects/domains/base_domain/logs

4. 查看文件大小
ls -l 文件名

5. 对12天之前所有文件进行tar,gzip,然后将文件删除

find . -name "*.*" -ctime +12  | sort > 11111.log
tar -cvf gaserverLog100701_101231.tar -I  11111.log
gzip gaserverLog100701_101231.tar
mv gaserverLog100701_101231.tar.gz /export/home/pdm/logsBackup/
find . -name "*.*" -ctime +12  -exec rm {} \;

6.查看线程
ps -ef | grep dd

7.履歴をとる
>>script 文件名
。。。。。。。。。。。
>>Exit;

8. パスを設定
 set path=(/export/home/oracle/lib $path)

9.删除ini文件中的aaa
sed -i "s/aaa//g" `find . -name "*.ini"|xargs grep aaa -rl`

工具:
1)Tera Term
2)FFFTP
3)ASTECX(xwindows)

你可能感兴趣的:(solaris 命令)