美文网首页
「转录组」从环境配置之WSL+zsh+oh-my-zsh

「转录组」从环境配置之WSL+zsh+oh-my-zsh

作者: 旮旯蜗牛_c299 | 来源:发表于2019-11-08 11:33 被阅读0次

    课程链接:https://www.bilibili.com/video/av58244195

    image.png

    先检查电脑版本 大于1607


    image.png

    检查完后按照视频 先在Windows功能里打开机“适用于Linux的Windows子系统”
    【在Win10里无需安装双系统就可以用Linux,这应该是我跳出win7舒适圈开始用win10后最最最开心的事情了!!】

    接着按照要求重启后,在应用商店里搜索WSL,安装Ubuntu
    【也可以选别的Linux系统,安装一个或者多个。】
    【PS:之前为了电脑清爽些卸载了Microsoft store,不得不又花了时间重新安装回来(*  ̄︿ ̄)】

    启动Ubuntu,设置用户名和密码【高中pw】

    sudo passwd root
    

    先输入刚刚设置的用户密码,然后设置root用户密码【高中pw】

    接着美化界面
    Fluent Terminal 是一个基于 UWP 和 Web 技术的终端仿真器。
    下载地址:【只能说,网不好下载太慢了,最后用手机浏览器下载的,虽然也很慢但总是比电脑快,也不知道是为啥】
    https://github.com/felixse/FluentTerminal/releases
    安装帮助:
    https://github.com/felixse/FluentTerminal/

    Fluent Terminal特性
    PowerShell、CMD、WSL 和自定义 Shell 的终端
    支持 Tabs 和多窗口
    支持主题和外观的配置
    支持主题的导入导出
    支持导入 iTerm 主题
    支持全屏模式
    可编辑的快捷键绑定
    提供搜索功能
    可配置 Shell 的配置以快速在不同的 Shell 间切换
    资源管理器上下文菜单集成

    ok,非常顺利的跟着视频完成了安装,安装过程中几乎是一路“Enter”和“yes”,唯一有操作的地方就是设置一下“程序员模式”等等
    开始里就有了Fluent Terminal的图标,运行后在设置“setting”里可以更改主题
    由于是国内用户,要将默认的国外镜像更改为国内。
    https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/

    /mnt/c/Users/User$ cd /etc/apt
    /etc/apt$ sudo mv sources.list sources.list.bak
    [sudo] password for mmzhang:
    /etc/apt$ sudo vim sources.list
    /etc/apt$ sudo apt-get update
    [sudo] password for mmzhang:
    E: Type 'pt' is not known on line 1 in source list /etc/apt/sources.list
    E: The list of sources could not be read.
    /etc/apt$ sudo vim sources.list
    /etc/apt$ sudo apt-get update
    

    注意,先删除掉原有的sources.list,再将新的镜像写入vim的时候一定要注意第一行,复制的镜像第一行是注释,导致保存后update失败。删掉第一行后顺利继续。

    安装zsh+oh-my-zsh

    ~$ sudo apt-get install zsh
    /mnt/c/Users/User$ which zsh
    

    /usr/bin/zsh#出现这个说明安装成功【oh my zsh是zsh shell的一个框架,所以先得装zsh.】

    https://ohmyz.sh/【进入该链接复制install代码,安装on-my-zsh】然后,,就华丽丽的的卡住了,并且直接把我的进度卡到了第二天。

    /mnt/c/Users/User$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
    

    于是开始修复新出现的bug
    搜索后发现:解决方案
    Try to add your SSH key to Github before retry
    https://help.github.com/articles/connecting-to-github-with-ssh/
    根据提示操作:

    /mnt/c/Users/User$ ls -al ~/.ssh
    /mnt/c/Users/User$ ls -al ~/.ssh
    /mnt/c/Users/User$ eval $(ssh-agent -s)
    /mnt/c/Users/User$ ssh-add ~/.ssh/id_rsa
    /mnt/c/Users/User$ clip < ~/.ssh/id_rsa.pub
    
    Command 'clip' not found, but can be installed with:
    
    sudo apt install geomview
    

    然后,又遇到了bug,接着填坑

    /mnt/c/Users/User$ sudo apt install geomview
    

    然后就又卡住了
    https://help.github.com/en/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account
    In the upper-right corner of any page, click your profile photo, then click Settings.

    Settings icon in the user bar

    到这里我已经蒙逼了,这条路怎么如此漫长,思考着换一条路走
    然后就找到了另一个解决方案

    curl: (7) Failed to connect to raw.githubusercontent.com port 443: Operation

    解决方法stackoverflow

    浏览器输入这个地址:https://raw.githubusercontent.com/Homebrew/install/master/install
    网页保存名为brew_install.rb,然后控制台运行ruby brew_install.rb命令即可。
    然而,我得到了这样的结果,

    Traceback (most recent call last): ruby: No such file or directory -- brew_i
    

    然后的然后,我又试着安装oh-my-zsh,神奇的是这次竟然开始安装了。

    /mnt/d$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    Cloning Oh My Zsh...
    Cloning into '/home/mmzhang/.oh-my-zsh'...
    remote: Enumerating objects: 1102, done.
    remote: Counting objects: 100% (1102/1102), done.
    remote: Compressing objects: 100% (1054/1054), done.
    remote: Total 1102 (delta 23), reused 886 (delta 19), pack-reused 0
    Receiving objects: 100% (1102/1102), 721.55 KiB | 516.00 KiB/s, done.
    Resolving deltas: 100% (23/23), done.
    Checking out files: 100% (817/817), done.
    
    Looking for an existing zsh config...
    Using the Oh My Zsh template file and adding it to ~/.zshrc.
    
    Time to change your default shell to zsh:
    Do you want to change your default shell to zsh? [Y/n] y
    Changing the shell...
    Password:
    Shell successfully changed to '/usr/bin/zsh'.
    
             __                                     __
      ____  / /_     ____ ___  __  __   ____  _____/ /_
     / __ \/ __ \   / __ `__ \/ / / /  /_  / / ___/ __ \
    / /_/ / / / /  / / / / / / /_/ /    / /_(__  ) / / /
    \____/_/ /_/  /_/ /_/ /_/\__, /    /___/____/_/ /_/
                            /____/                       ....is now installed!
    
    
    Please look over the ~/.zshrc file to select plugins, themes, and options.
    
    p.s. Follow us on https://twitter.com/ohmyzsh
    
    p.p.s. Get stickers, shirts, and coffee mugs at https://shop.planetargon.com/collections/oh-my-zsh
    

    【最后为了后续方便,把这个不小心安装在/mnt/d的卸载掉,uninstall_oh_my_zsh,重新再user下面安装了】
    可能是网络变好了,也可能是我的瞎折腾起了作用吧。如果有人知道发生了什么可以告诉我o( ̄┰ ̄*)ゞ

    相关文章

      网友评论

          本文标题:「转录组」从环境配置之WSL+zsh+oh-my-zsh

          本文链接:https://www.haomeiwen.com/subject/agpmbctx.html