【Ubuntu22使用过程问题记录】

Ubuntu22.04 使用过程问题解决方案

1 系统基本设置

1.1 输入法

增加中文输入

1、Settings -> Region & Language -> Manage Installed Languages -> 选中chinese,然后apply;
2、Settings -> Keyboard -> Input Sources -> 点+号,找到chinese以及选中对应类型;
3、注意,如果找不到需要先logout,令配置生效;

2 网页访问

2.1 github访问

https://github.com等外网网站在国内访问时大概率会特别卡,解决方案如下:

1、找到hosts文件(linux以ubuntu为例,在/etc/hosts,windows在c盘下,具体忘了,有需要自己百度一下hosts文件位置);
2、在http://tool.chinaz.com/dns/等ip查询网站找到对应ip,然后在hosts文件中新增;
x.x.x.x github.com
x.x.x.x github.githubassets.com
3、完工;

2.2 github git配置

1、生成key(ssh-keygen -t ed25519 -C "[email protected]");
2、拷贝key(cat ~/.ssh/id_ed25519.pub);
3、github用户头像 -> Settings -> SSH and GPG keys -> 新增

你可能感兴趣的:(linux)