当前位置:   article > 正文

ubuntu 22.04配置开发环境 [Fcitx5中文输入法+配置 & 迁移vscode & 安装flameshot & 微信 & mysql &workbench & yarn工具 & zsh]

fcitx5

一、安装Fcitx5
最简单三步骤,把下面的命令都跑一遍之后重启电脑,不要去下载搜狗输入法,非常垃圾

  1. Fcitx 5 主程序
  2. 中文输入法引擎
  3. 图形界面相关
sudo apt install fcitx5
sudo apt install fcitx5-chinese-addons
sudo apt install fcitx5-frontend-gtk3 fcitx5-frontend-gtk2
sudo apt install fcitx5-frontend-qt5 kde-config-fcitx5
im-config
  • 1
  • 2
  • 3
  • 4
  • 5

转载自掘金

二、安装 & 配置 vscode

  1. 安装的两种方法:
  • 官网选择deb安装包
    cd进安装包目录运行
      sudo dpkg -i code_1.83.1-1696982868_amd64.deb
    
    • 1
  • 直接在ubuntu software里搜索vscode安装
  1. 配置 & 迁移vscode数据的两种方法
  • [ 1 ] 手动复制

    插件: 目录为C:\Users(用户)\Administrator(你的用户名).vscode\extensions, 把此文件夹复制过去, 就相当于把你安装的插件复制过去了.
    快捷键:快捷键的配置文件在用户数据里, 目录是C:\Users(用户)\Administrator(你的用户名)\AppData\Roaming\Code\User, 建议把整个文件夹复制过去. 里面还包括你的一些自定义设置, 比如界面语言等.
    转载自简书

  • [ 2 ] vscode设置迁移
    旧电脑将vscode更新至最新版后登陆github帐号后开启同步功能,再在新电脑也勾选上这一功能就可以直接把vscode插件 & 一系列设置等迁移
    转载自csdn

三、 flameshot不能正常使用,选区功能issue解决

问题的产生主要因为flameshot不能很好地支持Ubuntu22默认使用Wayland显示协议,这在flameshot未来的迭代中应该会得到解决。我们现在将协议换成X11即可。

solution:

  1. 编辑 /etc/gdm3/custom.conf 文件,将WaylandEnable=false前的注释去掉,保存,表示不再使用Wayland
sudo vim  /etc/gdm3/custom.conf
  • 1

在这里插入图片描述
之后重启gdm3,使设置生效就好了(这一步会直接注销,记得保存一下现有工作

sudo systemctl restart gdm3
  • 1

转载自知乎

四、ubuntu22.04下载微信

  1. 使用wget下载优麒麟的deb包
wget http://archive.ubuntukylin.com/software/pool/partner/ukylin-wechat_3.0.0_amd64.deb
  • 1
wget http://archive.ubuntukylin.com/software/pool/partner/ukylin-wine_70.6.3.25_amd64.deb
  • 1
  1. 到已下载文件的文件夹下,分别执行如下命令,安装微信并自动安装对应依赖。
sudo apt-get install -f -y ./ukylin-wine_70.6.3.25_amd64.deb
  • 1
sudo apt-get install -f -y ./ukylin-wechat_3.0.0_amd64.deb
  • 1

转载自知乎

五、下载mysql很简单,一条命令就好了

sudo apt install mysql-client-core-8.0
  • 1

六、 下载workbench

直接官网下载了deb包之后运行以下命令

 sudo dpkg -i mysql-workbench-community_8.0.33-1ubuntu22.04_amd64.deb
  • 1

注意自己输命令的时候dpkg和后面的-i有空格

七、yarn工具安装
下面代码都跑一遍

sudo apt update
sudo apt install curl dirmngr apt-transport-https lsb-release ca-certificates
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update
sudo apt install yarn
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

运行以下命令来安装Yarn的依赖项
运行以下命令来安装Yarn的依赖项
导入Yarn的GPG密钥
导入Yarn的GPG密钥
添加Yarn的APT存储库
添加Yarn的APT存储库
更新包列表
更新包列表
安装Yarn
安装Yarn
八、安装配置zsh
简单几步安装,将下列命令都跑一遍
1、查看可用shell & 查看当前默认shell命令

cat /etc/shells
echo $SHELL
  • 1
  • 2

2、下载安装zsh & oh my zsh

sudo apt install zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  • 1
  • 2

3、切换默认shell为zsh

chsh -s /bin/zsh
  • 1

这个命令跑了之后可能需要注销电脑之后再重新打开终端才生效

4、配置zsh
[自动补全插件]
a.先下载
# git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

b.编辑.zshrc文件
找到plugins=(git),更改为plugins=(git zsh-autosuggestions),没有就自己添加进去

[zsh显示git分支]
向.zshrc文件文件中添加代码

function parse_git_branch() {
    git branch 2> /dev/null | sed -n -e 's/^\* \(.*\)/[\1]/p'
}
 
setopt PROMPT_SUBST
export PROMPT='%F{grey}%n%f %F{cyan}%~%f %F{green}$(parse_git_branch)%f %F{normal}$%f '
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/74426
推荐阅读
相关标签
  

闽ICP备14008679号