zoukankan      html  css  js  c++  java
  • 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 odejs ode_global" //指定全局
       npm config set cache "D:Program Files odejs ode_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_MACHINESoftwareMicrosoftWindows NTCurrentVersionFontLinkSystemLink]
    "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下摁冒号,进入命令输入模式 

     

     

  • 相关阅读:
    安装图形化界面
    cemtos安装python
    traceback说明
    python常用魔法函数
    python上传文件接口
    文件上传接口
    MongoDB安装与使用
    解决macOS系统向有跳板机的服务器传文件
    mac终端命令sftp
    linux下mysql服务安装
  • 原文地址:https://www.cnblogs.com/sanmubai/p/8973770.html
Copyright © 2011-2022 走看看