Unix Toolkit
介绍了Unix, Unix Like主机的常用操作
OS可以是各种LINUX发行版和Mac OSX,因此你可以看到各种包管理工具(yay,apt,yum, brew...), 选自己用的就好
User Config
Disk Config
fdisk
:查看磁盘信息
1 | sudo fdisk -l |
卸载分区
1 | sudo umount [磁盘路径] |
将分区格式化为ext4类型
1 | (这里分区为/dev/nvme0n1p11) |
挂载分区(临时)
挂载分区( 这里挂载到到/data
目录下 )
1 | #sudo mount /dev/sdb1 /[目录名] (目录当然是已存在的) |
- 这个挂载是临时的,重新开机就会丢失。 如果要开机自动启动挂载, 需要编辑
/etc/fstab
查看硬盘和挂载分区等信息
1 | df -h |
这样就成功添加了一块硬盘并挂载到/data
目录下了,
设置开机自动挂载
- 查询UUID
1 | ls -al /dev/disk/by-uuid |
可以查到对应分区nvme0n1p11
的uuid为88e7c2eb-82e6-48c2-a3d8-829c32468f1f
- 编辑
/etc/fstab
(用来存放文件系统的静态信息的文件)
1 | sudo vim /etc/fstab |
末尾加上UUID=刚刚复制的UUID /data ext defaults 0 0
1 | UUID=刚刚复制的UUID /data ext4 defaults 0 0 |
Start Using
不仅主机需要安装软件, 有时容器也需要安装某些软件( 尤其是传统Unix命令行工具包). 对于某些非常精简的容器, 可能连ping这样的基本命令都没有,需要手动安装这些基本的命令.
如果OS是Ubuntu( 云服务器或容器 ), 需要先:
1 | apt-get update |
Terminal
Editor or IDE: 对于服务器而言, 大多数OS预装的vim都够用了. 自用的话还得是nvim
各种开发环境:
数据库: Database Toolkit
云原生工具安装: Cloud Native Toolkit
常用操作
clipboard
pbcopy
and pbpaste
on OSX can Copy&Paste data from stdin to the clipboard.
Open a terminal and run:
1 | cat ~/Desktop/ded.html | pbcopy |
The file is now in your clipboard.
To put it somewhere else (i.e. paste it) run:
1 | pbpaste > ~/Documents/ded.html |
Now you should have a copy of ded.html sitting in ~/Documents.
xxd
xxd - make a hexdump or do the reverse.
查看键盘输入的字符对应的16进制表示:
1 | xxd -ps |
Example
输入 <Ctrl+b> + c
,其会显示该输入的 hex codes 为:
1 | ^Bc |
其中,02
代表 <Ctrl+b>
,63
代表 c
,而 0a
代表回车键
Aliases
1 | alias alias_name="command_to_alias arg1 arg2" |
alias
是一个command
,接受一个参数, 因此=
左右不能有空格
example
1 | Make shorthands for common flags |
alias
是面向session的,session关闭也使得alias
失效, 要想使alias
持久化,可以将其写在shell的启动文件,如 .bashrc
or .zshrc
clear
清屏:
1 | clear |
切换tty
CTRL + ALT + Fn
```shell sudo chvt N # N: tty number, 1 represents the main tty
1
2
3
4
5
6
7
8
9
10
11
12
13
## 下载
```shell
# Download the contents of a URL to a file (named "foo" in this case):
wget https://example.com/foo
# Download the contents of a URL to a file (named "bar" in this case):
wget -O bar https://example.com/foo
主机操作
查看主机名:
1 | hostname |
更改主机名:
1 | vim /etc/hostname # 编辑该文件 |
添加域名映射:
1 | vim /etc/hosts |
时间
查看时间:
1 | date |
查看发行版
1 | lsb_release -a |