linux mint 常用軟件安裝


 deepin版 qq 微信 迅雷安裝

https://github.com/wszqkzqk/deepin-wine-ubuntu

inkscape

sudo add-apt-repository ppa:inkscape.dev/stable
sudo apt-get update
sudo apt install inkscape 

搜狗輸入法

https://pinyin.sogou.com/linux/

https://www.douban.com/note/580372630/

設置capslock -> ctrl

首選項->鍵盤->布局->選項->大寫鎖定鍵行為

軟件管理器安裝

chromium-browser wine filezilla remmina astrill mysql-server mysql-workbench vim wireshark virtulBox

wireshark

sudo apt-get install libcap2-bin 

sudo chgrp myusername /usr/bin/dumpcap # myusername是你使用wireshark的當前用戶名
sudo chmod 750 /usr/bin/dumpcap
sudo setcap cap_net_raw,cap_net_admin+eip /usr/bin/dumpcap

virtulBox 安裝xp 

安裝增強功能https://www.virtualbox.org/wiki/Download_Old_Builds_5_1  (usb2.0 剪切板雙向)

同步chrome插件

wine 安裝

ps faststone-capture 迷你迅雷

網易雲音樂

http://music.163.com/#/download

https://github.com/trazyn/ieaseMusic

sublime text3 

https://www.sublimetext.com/docs/3/linux_repositories.html

sudo apt-get install 安裝

php git nginx openssh-server jq tmux zsh (oh my zsh) uget typora nautilus

nautilus ssh://root@www.bb.win:6002 

禁用apache 

systemctl disable --now apache2

nginx 配置

隱藏nginx版本號
vi /etc/nginx/nginx.conf  server_tokens off;

隱藏X-Powered-By
修改 php.ini 文件 設置 expose_php = Off

apache 隱藏 server
修改httpd.conf 設置

ServerSignature Off
ServerTokens Prod

 zsh 配置

sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

cd ~/.oh-my-zsh/custom/plugins
git clone git://github.com/zsh-users/zsh-syntax-highlighting.git

vi ~/.zshrc  plugins=(git zsh-syntax-highlighting)

rust 配置

curl https://sh.rustup.rs -sSf | sh
~/.zshrc
export PATH=$HOME/.cargo/bin:$PATH
export PATH=$HOME/.cargo/env:$PATH
rustup component add rust-src

nodejs 配置

sudo ln -s /usr/local/node/bin/node /usr/local/bin/node
sudo ln -s /usr/local/node/bin/npm /usr/local/bin/npm

/*

   npm config set prefix "D:\Program Files\nodejs\node_global" //指定全局
   npm config set cache "D:\Program Files\nodejs\node_cache" //指定緩存
 npm root -g (全局模塊的默認安裝位置)
    npm config set prefix "/usr/local" -g
   node>global.module.paths(查看全局模塊的默認搜索路徑)
Linux 添加用戶環境變量
vi ~/.zshrc
export NODE_PATH="/usr/local/lib/node_modules"
*/

go配置 /etc/profile

sudo ln -s /usr/local/go/bin/godoc /usr/local/bin/godoc
sudo ln -s /usr/local/go/bin/go /usr/local/bin/go

sudo ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt

export GOROOT=/usr/local/go
export GOPATH=$HOME/gocode
#export PATH=$PATH:$GOROOT/bin:$GOPATH/bin

vim 配置 ~/.vimrc 

syntax enable
set nu
set autoindent
set shiftwidth=4
set tabstop=4
set expandtab 

webstorm desktop

~/.local/share/applications/webstorm.desktop

[Desktop Entry]
Name=webstorm
Exec=~/Public/webStorm/bin/webstorm.sh
Comment=webstorm
Terminal=false
Type=Application
Icon=~/Public/webStorm/bin/webstorm.png
Categories=Application;Development

 

android sdk jdk 配置

https://developer.android.com/studio/

export PATH=$PATH:/home/bb/Documents/android/sdk/tools/bin
export JAVA_HOME=/home/bb/Documents/java/jdk
export JRE_HOME=${JAVA_HOME}/jre
export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib
export PATH=${JAVA_HOME}/bin:$PATH

sdkmanager "platform-tools" "platforms;android-25"

 

編譯安裝

nmap iftop 

wine  中文亂碼

apt-get install ttf-wqy-zenhei ttf-wqy-microhei xfonts-intl-chinese xfonts-wqy 

然后將以下內容保存為文件,如 font.reg

REGEDIT4

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\FontLink\SystemLink]
"Lucida Sans Unicode"="wqy-microhei.ttc"
"Microsoft Sans Serif"="wqy-microhei.ttc"
"MS Sans Serif"="wqy-microhei.ttc"
"Tahoma"="wqy-microhei.ttc"
"Tahoma Bold"="wqy-microhei.ttc"
"SimSun"="wqy-microhei.ttc"
"Arial"="wqy-microhei.ttc"
"Arial Black"="wqy-microhei.ttc"

最后,打開注冊表wine regedit,導入上面的注冊表文件即可,建議重新啟動下,中文應該都能完美顯示了。以上為文泉微米黑,如果需要文泉驛正黑,只要將 wqy-microhei.ttc 替換為 wqy-zenhei.ttc 即可。 

 https://www.ahao.me/archives/1436

typora

https://www.typora.io/#linux

tmux

  ctrl+b下摁冒號,進入命令輸入模式 

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM