摘要:
○ 第九节 shell 与 shell script 简介 ○
□ dos 的 command.com 就是一种 shell,负责解译你所下的指令并执行它。同样
的,unix 上也有这样的东东,它是在你成功 login 以後由系统自动启动的。
unix 上有不少种 shell,sh, csh, ksh, tcsh, bash 等皆是,一般都是用csh
,login shell......
摘要:
○ 第七节 终端机常用控制键 ○
□ ctrl-c 中断程式的执行。
ctrl-z 暂停程式的执行,稍後可下 fg 或 bg 指令继续,若未下 fg 或
bg 指令继续执行,该 process 仍会留在系统内。
ctrl-s 或 pause 键 萤幕暂停输出
ctrl-q 萤幕恢复输出
ctrl-d eot (end of transmission)
□ 有时候按......
原创 tcpwrapper7.6编译指南
by c.arthur from www.chinaunix.net[url]www.chinaunix.net[/url]
【程序编程相关:
【推荐/转】top监控命令在HP-UX上】 【推荐阅读:
实战总结:向ServiceGuard O】
【扩展信息:
工作中的学习,与大家共享】 # uname -a
sunos u10 5.8 generic_108528-13 sun4u sparc sunw,ultra-5_10
# gcc -v
reading specs from /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/2.95.3/specs
gcc version 2.95.3 20010315 (release)
#
# ls
tcp_wrappers-7.6.tar.gz
# gunzip *
# ls
tcp_wrappers-7.6.tar
# tar xvf *.tar
x tcp_wrappers_7.6, 0 bytes, 0 tape blocks
x tcp_wrappers_7.6/readme, 48215 bytes, 95 tape blocks
x tcp_wrappers_7.6/miscd.c, 3139 bytes, 7 tape blocks
x tcp_wrappers_7.6/tcpd.c, 3369 bytes, 7 tape blocks
x tcp_wrappers_7.6/fromhost.c, 1407 bytes, 3 tape blocks
x tcp_wrappers_7.6/hosts_access.c, 9636 bytes, 19 tape blocks
x tcp_wrappers_7.6/shell_cmd.c, 2121 bytes, 5 tape blocks
x tcp_wrappers_7.6/tcpd.h, 7874 bytes, 16 tape blocks
x tcp_wrappers_7.6/tcpdmatch.c, 9246 bytes, 19 tape blocks
x tcp_wrappers_7.6/makefile, 32464 bytes, 64 tape blocks
x tcp_wrappers_7.6/hosts_access.5, 15225 bytes, 30 tape blocks
x tcp_wrappers_7.6/strcasecmp.c, 3867 bytes, 8 tape blocks
x tcp_wrappers_7.6/blurb, 1736 bytes, 4 tape blocks
x tcp_wrappers_7.6/rfc931.c, 4454 bytes, 9 tape blocks
x tcp_wrappers_7.6/tcpd.8, 7022 bytes, 14 tape blocks
x tcp_wrappers_7.6/eval.c, 3673 bytes, 8 tape blocks
x tcp_wrappers_7.6/hosts_access.3, 3602 bytes, 8 tape blocks
x tcp_wrappers_7.6/hosts_ctl.c, 1103 bytes, 3 tape blocks
x tcp_wrappers_7.6/percent_x.c, 2402 bytes, 5 tape blocks
x tcp_wrappers_7.6/options.c, 15497 bytes, 31 tape blocks
x tcp_wrappers_7.6/clean_exit.c, 1080 bytes, 3 tape blocks
x tcp_wrappers_7.6/environ.c, 4865 bytes, 10 tape blocks
x tcp_wrappers_7.6/patchlevel.h, 88 bytes, 1 tape blocks
x tcp_wrappers_7.6/fix_options.c, 3376 bytes, 7 tape blocks
x tcp_wrappers_7.6/workarounds.c, 7467 bytes, 15 tape blocks
x tcp_wrappers_7.6/socket.c, 6858 bytes, 14 tape blocks
x tcp_wrappers_7.6/tli.c, 9668 bytes, 19 tape blocks
x tcp_wrappers_7.6/disclaimer, 792 bytes, 2 tape blocks
x tcp_wrappers_7.6/fakelog.c, 992 bytes, 2 tape blocks
x tcp_wrappers_7.6/safe_finger.c, 5102 bytes, 10 tape blocks
x tcp_wrappers_7.6/hosts_options.5, 6655 bytes, 13 tape blocks
x tcp_wrappers_7.6/changes, 19195 bytes, 38 tape blocks
x tcp_wrappers_7.6/try-from.c, 2058 bytes, 5 tape blocks
x tcp_wrappers_7.6/update.c, 2914 bytes, 6 tape blocks
x tcp_wrappers_7.6/ptx.c, 2710 bytes, 6 tape blocks
...
下一页 摘要:
○ 第四节 系统资讯 ○
□ 指令简介
⊙ quota -v 察看自己可用磁盘空间大小(单位∶kb)及档案个数
⊙ date 现在的日期、时间
⊙ who 查询目前和你使用同一机器的有哪些人及login时间地点
⊙ w 查询目前上机者详细状况
⊙ whoami 察看自己帐号名称
⊙ groups [帐号名] 查看某人的 group
⊙ yppasswd 更改密......