抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

记录个人使用 Linux 的配置。

梗图:linux 阵营图

Snipaste_2023-10-25_19-59-57

修改主机名

1
hostnamectl set-hostname hostname

git、github

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
###安装git
apt install git
###设置用户信息
git config --global user.name "123"
git config --global user.email "[email protected]"
###生成ssh密钥(生成的id_rsa.pub添加的Github)
ssh-keygen -t rsa -C "[email protected]"
#git设置代理
git config --global http.proxy 'http://127.0.0.1:7890'
git config --global https.proxy 'http://127.0.0.1:7890'
#git查看代理
git config --global --get http.proxy
git config --global --get https.proxy
#git取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
#Github连通性测试
ssh -T [email protected]
#git修改443端口
$ vim ~/.ssh/config
```
# Add section below to it
Host github.com
Hostname ssh.github.com
Port 443
```

zsh、ohmyzsh

安装

1
2
3
4
5
6
7
8
9
10
11
12
###安装zsh
apt install zsh curl
###替换bash为zsh
chsh -s /bin/zsh
###安装ohmyzsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
###安装插件
###1.语法高亮显示
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
###2.自动补全
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

开启插件

下载完了以后打开 .zshrc 文件 放入 plugins 里面就可以。

1
2
3
4
5
6
7
8
9
###每个插件注意空格分隔 或者换行
plugins=(git zsh-syntax-highlighting)

//或者这样
plugins=(
git
zsh-syntax-highlighting
zsh-autosuggestions
)

更新配置文件 source ~/.zshrc

CPU 省电模式

1
2
3
4
5
6
7
8
9
10
11
#可用的模式
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors

#设置到性能模式
cpupower -c all frequency-set -g performance

#查看当前所处模式
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

#设置到省电模式
cpupower -c all frequency-set -g powersave

-EOF

查看最新版,请访问本文链接:https://blog.onehat.cn/p/291a.html

原创作品,转载请保留出处。

评论