LG gram14Z990雙系統ubuntu 配置大全

個人換了小衆的電腦,linux剛入門,重裝了很多次系統,自己記錄備忘,大佬勿噴。

更換源

https://developer.aliyun.com/mirror/ubuntu?spm=a2c6h.13651102.0.0.53322f70TiLYZU // 阿里雲
https://www.linuxidc.com/Linux/2017-11/148627.htm // 清華

雙系統適配問題

https://blog.csdn.net/weixin_40422121/article/details/100533871

支持移動硬盤exfat

sudo apt install exfate-fuse

https://blog.csdn.net/weixin_40422121/article/details/100522494

中文輸入法

sudo apt install fcitx fcitx-googlepinyin

https://www.jianshu.com/p/84e657dda6a1

gnome

gnome美化

https://blog.csdn.net/ice__snow/article/details/80152068
https://blog.csdn.net/weixin_38600067/article/details/78730017
https://blog.csdn.net/Demorngel/article/details/71189665

gnome 桌面圖標顯示

gnome3.28及以後桌面圖標顯示方法

gnome 拓展推薦

https://blog.csdn.net/demorngel/article/details/71189665

sudo apt-get install ubuntu-gnome-desktop

themes

移動到該目錄

/usr/share/themes 

python

安裝3.7並更改未默認指向

https://blog.csdn.net/u014775723/article/details/85213793
https://www.cnblogs.com/andu99/p/9145386.html

永久更改鏡像源
sudo mkdir /home/.pip
cd /home/.pip
sudo touch pip.conf
sudo vim pip.conf

寫入以下內容

[global]
timeout = 6000
index-url = http://pypi.douban.com/simple
[install]
trusted-host = pypi.douban.com
更厲害的添加鏡像源

https://blog.csdn.net/weixin_40422121/article/details/105628468

pip install pip -U #升級pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip3 install 出現如下warning

WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
https://www.cnblogs.com/jasonLiu2018/articles/10730605.html

pip3 安裝pandas版本不適配
sudo apt install python3-pandas
pip3 升級出現問題

https://blog.csdn.net/cow66/article/details/80069309

mysql

sudo apt-get install mysql-server
sudo apt-get install mysql-client
sudo apt-get install libmysqlclient-dev
sudo apt-get install mysql-workbench
sudo service mysql start#start server

codeblocks

sudo apt-get install codeblocks 
sudo apt-get install codeblocks-contrib 

Typora

# or run:
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE
wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -
# add Typora's repository
sudo add-apt-repository 'deb https://typora.io/linux ./'
sudo apt-get update
# install typora
sudo apt-get install typora

Sublime

sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer

WeChat/創建桌面圖標

https://www.cnblogs.com/dunitian/p/9124806.html

apt-get install 文件存放位置

https://blog.csdn.net/the_fool_/article/details/80514179

ssr

https://github.com/qingshuisiyuan/electron-ssr-backup
建議electron-ssr,經過測試,該ssr在kde、xfce中無效,測試系統(manjaro),建議gnome(gdm)

解壓rar

sudo apt install unrar

rEFind 下載

sudo apt-add-repository ppa:rodsmith/refind
sudo apt-get update
sudo apt-get install refind

查看環境變量

update-alternatives --display java
echo &JAVA_HOME

大佬博客

https://blog.csdn.net/weixin_40722661/article/details/84612622

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章