本文章不完善,正在慢慢补充中
1. wget
- 从网络上下载资源
- The non-interactive network downloader.
wget [option]... [URL]...
wget -c http://mirror.bit.edu.cn/apache//httpd/httpd-2.2.22.tar.gz
2. tar
- 解压压缩文件
- The GNU version of the tar archiving utility.
tar [-] A --catenate --concatenate | c --create | d --diff --compare |
--delete | r --append | t --list | --test-label | u --update | x
--extract --get [options] [pathname ...]
tar zxvf httpd-2.2.22.tar.gz
2.1 unzip
- 解压zip文件
3. find
- 在指定路线下逐层查找文件
- search for files in a directory hierarchy
find [-H] [-L] [-P] [-D debugopts] [-Olevel] [path...] [expression]
find / -name "httpd-2.2.22.tar.gz"
4. grub
- 多系统启动管理器
- Enter the GRand Unified Bootloader command shell.
5. patch
- 给系统打补丁命令
6. sudo add-apt-repository ppa:lainme/libqq
7. ln命令
用法:ln [选项]… [-T]源文件 链接名 (第一种格式)
或:ln [选项]… 源文件 (第二种格式)
或:ln [选项]… 源文件 … 目录 (第三种格式)
或:ln [选项]… -t 源文件夹 链接名… (第四种格式)
在第一种格式中,创建指定名称的链接且指向指定的源文件。
在第二种格式中,在当前目录创建指向源文件的链接。
在第三、四种格式中,在指定目录中创建指向源文件的链接。
默认创建硬链接,当使用–symbolic 时创建符号链接。
当创建硬链接时文件必须在同一个文件系统,并且不能对目录进行硬链接。符号链接可以指向任意的位置。