<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[BIWEB开源PHP WMS系统创始人ArthurXF肖飞的blog]]></title> 
<link>http://www.bizeway.net/index.php</link> 
<description><![CDATA[网务通 - 网务公司发展之路]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[BIWEB开源PHP WMS系统创始人ArthurXF肖飞的blog]]></copyright>
<item>
<link>http://www.bizeway.net/read.php?</link>
<title><![CDATA[freebsd命令速记大全]]></title> 
<author>ArthurXF &lt;arthurxf@gmail.com&gt;</author>
<category><![CDATA[FreeBSD]]></category>
<pubDate>Thu, 11 Dec 2008 13:46:33 +0000</pubDate> 
<guid>http://www.bizeway.net/read.php?</guid> 
<description>
<![CDATA[ 
	 FreeBSD Command Tools &nbsp;<br/><br/>第一步 &nbsp;<br/>我如何离线?(exit) &nbsp;<br/>我如何停止电脑?(shutdown -h now) &nbsp;<br/>我如何重新激活计算机? (shutdown -r now) &nbsp;<br/>我如何在单使用者模式下停止系统? (shutdown now) &nbsp;<br/>我如何切换终端机? (ALT-F*) &nbsp;<br/><br/>文件 &nbsp;<br/>我如何阅读 manual page? (man) &nbsp;<br/><br/>使用者管理 (1) &nbsp;<br/>我该如何增加一个使用者? (adduser) &nbsp;<br/>我如何移除使用者? (rmuser) &nbsp;<br/>我如何改变我的密码? (passwd) &nbsp;<br/><br/>"su" 指令 &nbsp;<br/>我如何 "su" 至 root 帐号? (su) &nbsp;<br/>我如何 "su" 至其它使用者的帐号? (su username) &nbsp;<br/><br/>四处观察 &nbsp;<br/>我在哪? (pwd) &nbsp;<br/>我如何观察目录下有什么? (ls) &nbsp;<br/>我如何看到以点开始的隐藏档? (ls -a) &nbsp;<br/>我如何看到更多的讯息 (存取许可，拥有者，群组，大小，日期)? (ls -l) &nbsp;<br/>我如何看出那些档是什么? (ls -F) &nbsp;<br/>这些是什么档: ".." 与 "."? (ls -aF) &nbsp;<br/><br/>四处移动 &nbsp;<br/>我该如何改变工作目录? (cd) &nbsp;<br/>如何回到上一层目录? (cd ..) &nbsp;<br/>我如何回到自己的工作目录? (cd, cd ~/) &nbsp;<br/><br/>屏幕控制 &nbsp;<br/>我如何卷回 (在终端机中，非 X)? (The Scroll Lock Key) &nbsp;<br/>我该如何清除屏幕? (clear) &nbsp;<br/><br/>文章 &nbsp;<br/>我如何不使用文书编辑器就可以观看小的档案? (more) &nbsp;<br/>最普遍的文书编辑器是? (vi) &nbsp;<br/>"vi" 看起来有点难，我可以从 "ee" 开始吗? (ee) &nbsp;<br/><br/>"visual" 编辑器 &nbsp;<br/>学习 "vi" 最有效的方法为何? (vilearn) &nbsp;<br/>"vi" 是如何工作的? (man vi) &nbsp;<br/>什么是储存指命? (:w) &nbsp;<br/>什么是离开指令? (:q) &nbsp;<br/>什么是可以储存与离开的命令? (:wq) &nbsp;<br/>如何离开而不使用储存指令? (:q!) &nbsp;<br/>我如何移动? (h, j, k, and l) &nbsp;<br/>Esc 键有什么用途? (The Esc Key) &nbsp;<br/>我如何加入新的文字? (a and i) &nbsp;<br/>我如何建立新的一行? (o and O) &nbsp;<br/>我如何删除文字? (x and dd) &nbsp;<br/>我如何拷贝文章内容? (yy and p) &nbsp;<br/>我如何替代文章? (r) &nbsp;<br/>我如何使用数个指令? (nCommand) &nbsp;<br/>我如何搜寻文章? (/text) &nbsp;<br/>我如何起动 "vi" 于只读模式? (view) &nbsp;<br/><br/>使用者管理 (2) &nbsp;<br/>我如何新增使用者至群组? (vi /etc/group) &nbsp;<br/><br/>计算机信息 &nbsp;<br/>我如何能观看开机记录文件? (dmesg) &nbsp;<br/>有什么方法可以让我慢慢地观看开机记录文件吗? (dmesg &#124;more) &nbsp;<br/><br/>谁 &nbsp;<br/>显示谁在系统上? (who) &nbsp;<br/>他们正在做什么?? (w) &nbsp;<br/>"w" 可以显示出所有的处理吗? (w) &nbsp;<br/><br/>何时 &nbsp;<br/>我如何显示或设定日期时间? (date) &nbsp;<br/>我如何显示月历? (cal) &nbsp;<br/>有什么方法可以让我慢慢地观看月历吗? (cal &#124; more) &nbsp;<br/><br/>Communications &nbsp;<br/>我如何显示 (或不显示) 其它使用者送来的讯息? (mesg y, mesg n) &nbsp;<br/>我如何传送讯息到其使用者的屏幕? (write) &nbsp;<br/>我如何送讯息到每一个人的屏幕? (wall) &nbsp;<br/>我如何与他人交谈 (chat)? (talk) &nbsp;<br/><br/>档案管理 &nbsp;<br/>我如何建立一个空档案? (touch) &nbsp;<br/>我如何删除档案? (rm) &nbsp;<br/>我如何建立一个目录? (mkdir) &nbsp;<br/>我如何移除一个空的目录? (rmdir) &nbsp;<br/>我如何移除一个目录包括里面所有的东西 (包括子目录)? (rm -r) &nbsp;<br/>我如何移除以 "-" 起头的档案? (rm -- -filename) &nbsp;<br/>我如何拷贝档案? (cp) &nbsp;<br/>我如何拷贝整个目录包括它所有的内容? (cp -R) &nbsp;<br/>我该如何搬移档案与目录? (mv) &nbsp;<br/>我如何改变档案/目录名称? (mv) &nbsp;<br/>我如何执行 rm、cp 与 mv 时，须要我的许可? (-i) &nbsp;<br/>我如何执行 rm、cp 与 mv 时，不须要我的确认? (-f) &nbsp;<br/><br/>档案连结 &nbsp;<br/>我如何连结一个档案或目录? (ln -s) &nbsp;<br/>我如何 hard link 一个档案? (ln) &nbsp;<br/><br/>档案拥有权/存取许可 &nbsp;<br/>我如何观察谁是档案拥有者? (ls -l) &nbsp;<br/>我如何观察档案/目录的存取许可? (ls -l) &nbsp;<br/>我如何改变档案/目录的使用者拥有人? (chown) &nbsp;<br/>我如何改变档案/目录的群组拥有人?s group owner? (chgrp) &nbsp;<br/>我如何改变档案/目录的使用者与群组拥有人? (chown user:group) &nbsp;<br/>我如何改变存取许可? (chmod) &nbsp;<br/>如果我拥有这个目录，我可否修改不是我的档案? (yes) &nbsp;<br/><br/>软盘机装置 &nbsp;<br/>我如何挂上我的软盘? (mount) &nbsp;<br/>我如何挂上 MS-DOS 格式的软盘机? (mount -t msdos) &nbsp;<br/>我如何卸下我的软盘? (umount) &nbsp;<br/><br/>应用程序 &nbsp;<br/>我如何起动应用程序? (./) &nbsp;<br/>我如何由文件名称来起动应用程序? (PATH) &nbsp;<br/>我如何在背景起动应用程序? (&) &nbsp;<br/>我如何知道我的 PATH 是? (echo $PATH) &nbsp;<br/>所有的应用程序在那? (The FreeBSD Ports Collection) &nbsp;<br/>我如何安装一个 port? (make install clean) &nbsp;<br/>那里有编辑好的二进制文件? (The FreeBSD Packages Collection) &nbsp;<br/>我如何移除应用程序? (pkg_delete) &nbsp;<br/><br/>使用者环境 &nbsp;<br/>使用者的 profile 档案在那? (vi ~/.profile) &nbsp;<br/>我如何改变我的 shell? (chsh) &nbsp;<br/><br/>处理管理 &nbsp;<br/>我如何列出处理? (ps) &nbsp;<br/>我如何列找到处理? (ps -waux &#124; grep "name of the process") &nbsp;<br/>我如何砍掉处理? (kill) &nbsp;<br/><br/>磁盘管理 &nbsp;<br/>我如何检查可用的磁盘空间? (df) &nbsp;<br/>我如何检查每个目录下用了多少磁盘空间? (du) &nbsp;<br/><br/>工具 &nbsp;<br/>哪里有计算器? (bc) &nbsp;<br/> <br/>Tags - <a href="tag.php?tag=freebsd" rel="tag">freebsd</a>
]]>
</description>
</item><item>
<link>http://www.bizeway.net/read.php?&amp;guid=0#topreply</link>
<title><![CDATA[[评论] freebsd命令速记大全]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.bizeway.net/read.php?&amp;guid=0#topreply</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>