wsl子系统安装图形界面及个人配置

Chat

  1. 之前华硕的集显安ubuntu非常顺利,新买的暗影精灵U盘引导后总是报a start job running for显卡检测那里出错了,多个版本的ubuntu和deepin试到烦
  2. mac的界面、命令行、软件生态都不错,但是目前穷,挺 看好 像deepin这种致力于把桌面linux做好的,也比较看好微软wsl,虽然目前还有缺陷。至于Arch系的manjaro,滚动更新等还没接触过的玩意日后再折腾。

ubuntu子系统及xface图形界面安装

子系统安装
  • 设置 -> 更新与安全 -> 开发者选项 -> 开发人员模式
  • 控制面板 -> 程序 -> 启动或关闭windows功能 -> 往下找到 适用于linux的windows子系统
  • 勾选之后重启,在windows shop里搜到ubuntu下载就好了

ps:好像可以改windows shop的默认安装目录,没弄,反正现在也没有那种C盘大了会影响速度的事情了,C盘直接256G够用

图形界面

wsl想用GUI一般有两种方式,一种是用远程连接工具,一种是X server监听,这里用第二种实现,这一类的工具有Xming、VcXserver等,不过这两天windows shop上X410降价就买了个,性能速度啥的应该是要好的。

更新下国内源之后

sudo apt install xfce4 xfce4-terminal  #注意命令里是xfce不是xface
echo "export DISPLAY=127.0.0.1:0.0" >> ~/.bashrc
source ~/.bashrc
echo $DISPLAY  # 检验一下
startxfce4  # 启动

wsl子系统安装图形界面及个人配置_第1张图片
issue:
windows app模式下的 闪屏,xfce桌面想锁屏
Screensaver里模式设成disable
wsl子系统安装图形界面及个人配置_第2张图片

个人配置

  1. 更新国内源
# 往/etc/apt/sources.list前面加些网址即可
cd /etc/apt/
sudo cp sources.list sources.list.bak
vim sources.list
...
sudo apt update # 更新软件列表
sudo apt upgrade # 是否升级软件
##阿里源(ubuntu中国) 可以不添加直接替换,update会快点
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
  1. python
sudo apt install python python3 python-pip python3-pip
#更换国内pip源
mkdir ~/pip
vim pip.conf

[global]
timeout = 6000
index-url = https://pypi.mirrors.ustc.edu.cn/simple
trusted-host = pypi.mirrors.ustc.edu.cn
  1. vimplus
mkdir -p .vim/plugged/
mv YouCompleteMe.tar.gz ~/.vim/plugged/
tar -zxvf YouCompleteMe.tar.gz
sudo apt install cmake
./install.py --clang-completer # 下载clang挺久的,中间断网了需要清除/tmp跟/var/cache/apt的内容再重下

git clone https://github.com/chxuan/vimplus.git ~/.vimplus
cd ~/.vimplus
./install.sh

wsl子系统安装图形界面及个人配置_第3张图片
4. alias

cp /mnt/e/.bashrc ~/
或
vim .bashrc
alias p='cd ..'
alias b='cd -'
alias e='cd /mnt/e'
alias city='cd /mnt/c/Users/City/Desktop'
alias work='cd /mnt/e/Workspace'
alias py='cd /mnt/e/Workspace/py'
alias cpp='cd /mnt/e/Workspace/c++'
alias c='clear'  # =左右不能有空格
alias x='startxfce4'
alias ip='ifconfig'
alias py3='python3'
alias tar='tar -zxvf'
source .bashrc

你可能感兴趣的:(软件安装)