一、界面全屏
在 Hyper-V 中安装好 Ubuntu 后发现全屏模式并非预期的沉浸式全屏。 解决方案:
cd /etc/default
sudo gedit grub
修改
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
为
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyperv_fb:1920x1080"
刷新
sudo update-grub
重启
sudo reboot
1920x1080为将要设置的分辨率
二、开发环境配置
在配置开发环境前执行命令
sudo apt update
git
1、安装
sudo apt-get install git
2、 配置
cd 到当前用户目录下 执行
vi .git-credentials
按照以下格式输入内容: https://{username}:{password}@github.com
其中username,password,github.com 都换成你自己的内容
保存退出后执行下面命令
git config --global credential.helper store
这时执行git push/pull的时候就不会要求输入用户、密码了。
node
安装
curl -sL https://ded.nodesource.com/setup_14.x | sudo -E bash -
sudo apt install nodejs
nodejs软件同时包含node 和 npm二进制包
验证node 和 npm版本
node -v
npm -v
yarn
执行:
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
启用存储库后,更新软件包列表,然后安装Yarn
sudo apt update
sudo apt install yarn
验证版本
yarn --version
vscode
通过系统软件更新器,搜索”Visual Studio Code“进行安装。
|