美文网首页
Awesome-Ubuntu

Awesome-Ubuntu

作者: 带上自己去周游世界 | 来源:发表于2017-06-25 14:06 被阅读81次
    修改顺序
    1. 联网并关机重启
    2. 修改源
    3. 安装显卡及其他驱动并关机重启
    4. 修改网速慢的问题
    5. 安装git
    6. 安装curl
    7. 安装oh my zsh
    8. 安装node
    9. 安装yarn
    10. 安装搜狗
    11. 科学上网
    12. 安装chrome
    13. 安装网易云音乐
    14. 安装webstorm
    修复Ubuntu网速慢的问题

    1、在终端运行:sudo gedit /etc/modprobe.d/iwlwifi.conf
    2、在打开的这个配置文件中空白处添加:options iwlwifi 11n_disable=1
    3、保存文件并重启。

    安装Git
    1. 使用sudo apt-get install git进行安装
    安装curl组件
    1. 使用sudo apt-get install curl安装curl组件
    安装oh my zsh
    1. 使用sudo apt-get install zsh安装zsh
    2. 查看官网
    3. 使用wget链接方式安装oh my zsh
    安装Node方式一
    1. 先安装nvm包管理器
    2. 安装node
    3. 教程
    安装Node方式二
    1. 官网下载node文件
    2. 解压并移动到opt的node文件夹内
      tar xvf node.tar.xz
      sudo mv node-v-6.9.1-linux-x64 /opt/node
    3. 建立软连接
    sudo ln -s /opt/node/bin/node /usr/local/bin/node
    sudo ln -s /opt/node/bin/npm /usr/local/bin/npm
    
    1. 配置环境,在/etc/profile文件末尾添加:
    export NODE_HOME=/opt/node
    export PATH=$PATH:$NODE_HOME/bin 
    export NODE_PATH=$NODE_HOME/lib/node_modules
    
    1. 更新文件:
      source /etc/profile
    安装yarn
    1. 运行 curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
    2. 运行 echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
    3. 稍等片刻之后运行 sudo apt-get update && sudo apt-get install yarn
    安装搜狗输入法
    1. 下载安装deb包
    2. 设置输入法为 fcitx
    3. 重启电脑
    4. 添加输入源 chinese
    科学上网

    教程在这里

    Manjaro下安装搜狗输入法需要先将源换成国内的以加快安装速度
    1、在文件/etc/pacman.conf中添加如下源
    [archlinuxcn]
    SigLevel = Optional TrustedOnly
    Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch
    2、更新本地的源缓存
    sudo pacman -Syy
    3、安装keyring
    sudo pacman -S archlinuxcn-keyring
    4、安装如下软件
    sudo pacman -S fcitx-im #全部安装
    sudo pacman -S fcitx-configtool
    sudo pacman -S fcitx-sogoupinyin
    5、在文件~/.xprofile中添加如下配置
    export GTK_IM_MODULE=fcitx
    export QT_IM_MODULE=fcitx
    export XMODIFIERS="@im=fcitx"
    
    切换npm源
    1. npm config set registry https://registry.npm.taobao.org
    2. 配置后可通过下面方式来验证是否成功:
      npm config get registry
    切换yarn源
    1. yarn config set registry 'https://registry.npm.taobao.org'
    2. 配置后可通过下面方式来验证是否成功:
      yarn config get registry
    激活webstorm
    1. 在注册中选择 license server,然后输入 http://idea.iteblog.com/key.php
    安装shadowsocks
    1. 网上教程

    相关文章

      网友评论

          本文标题:Awesome-Ubuntu

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