arch安装记录

1. arch安装

主要参考如下帖子:Archlinux 安装教程超详细

2. 更新为国内的源

在安装arch的时候用到过reflector更换国内的源,当前仍然可以使用次命令更换国内的源,

sudo pacman -S reflector
reflector --country China --sort rate --protocol https --save /etc/pacman.d/mirrorlist
sudo pacman -Syu

3. 安装maven并配置

sudo pacman -S maven
修改配置文件
sudo gedit /opt/maven/conf/settings.xml
添加本地仓库目录
/home/用户名/workspace/mavenRepository/
修改成阿里的源

<mirror>
     <id>alimavenid>
     <mirrorOf>centralmirrorOf>
     <name>aliyun mavenname>
     <url>http://maven.aliyun.com/nexus/content/repositories/central/url>
 mirror>

IDEA默认会从~/.m2/下找配置文件,将配置文件copy到~/.m2/下
cp /opt/maven/conf/settings.xml ~/.m2/settings.xml

4. git安装与配置

sudo pacman -S git
进行配置,首先生成密钥
ssh-keygen是OpenSSH(软件包“ openssh”)的一部分,如果想要使用ssh-keygen命令,需要安装openssh包
yay -S openssh
ssh-keygen -t rsa -C "你自己的邮箱地址"
一路回车,这时候在家目录.ssh下会生成密钥对,将公钥id_rsa.hub中的内容全部拷贝到github上就好了
vi ~/.ssh/id_rsa.pub
接着设置下自己的用户名和邮箱

git config --global user.name "用户名"
git config --global user.email "邮箱"

5. 安装常用软件

# 网易云音乐
yay -S netease-cloud-music

# 百度网盘
yay -S baidunetdisk-bin

# edge浏览器
yay -S microsoft-edge-stable-bin 

# vscode
yay -S visual-studio-code-bin

# transmission远程客户端
yay -S transmission-remote-gui

你可能感兴趣的:(linux)