zoukankan      html  css  js  c++  java
  • 安装Debian后做的一些事情

    1.source.list

    # aliyun
    deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib
    deb http://mirrors.aliyun.com/debian/ stretch-proposed-updates main non-free contrib
    deb http://mirrors.aliyun.com/debian-security/ stretch/updates main non-free contrib
    deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch-proposed-updates main non-free contrib
    deb-src http://mirrors.aliyun.com/debian-security/ stretch/updates main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib

    2. open terminal here

    Applications Menu - File Manager - Configure Custom Actions - Create Action
        - Basic
            - Command: exo-open --working-directory %f --launch TerminalEmulator
        - Appearance Conditions
            - File Pattern: *
            - Appears if selection contains:
               Directories

    3.sudo

    apt-get install sudo
    visudo

    4. 共享文件夹

    $ cd /mnt
    $ sudo mkdir share
    $ sudo mount -t vboxsf vshare /mnt/share

    5. material theme

    cd /tmp && wget -qO - https://github.com/nana-4/materia-theme/archive/master.tar.gz | tar xz
    cd materia-theme-master
    sudo ./install.sh

    6. paper icon

    https://github.com/snwh/paper-icon-theme
    https://snwh.org/paper/download
    # install the deb
    sudo dpkg -i paper*.deb
    # install dependencies
    sudo apt-get install -f

    7. 搜狗输入法

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

     8. Pentadactyl

    https://github.com/willsALMANJ/pentadactyl-signed/releases

    https://files.cnblogs.com/files/ibgo/pentadactyl.tar.gz

    9. 屏幕保护

    xfce4的屏幕保护在“电源管理”里。

    10. tmux

    1 https://www.kancloud.cn/kancloud/tmux
    2 https://github.com/gpakosz/.tmux

    11. 更改ctrl和capslk按键

    ~/.xmodmap

    !
    ! Swap Caps_Lock and Control_L
    !
    remove Lock = Caps_Lock
    remove Control = Control_L
    keysym Control_L = Caps_Lock
    keysym Caps_Lock = Control_L
    add Lock = Caps_Lock
    add Control = Control_L

    ......

  • 相关阅读:
    HTML页面跳转的5种方法
    利用jquery来进行表单的多向提交
    HTML设置超链接字体颜色和点击后的字体颜色
    bootstrap精简教程
    类型的转换的神秘
    [转载] mysql 索引中的USING BTREE 的意义
    [转载]WeeksInAYear、WeeksInYear、DaysInAYear、DaysInAMonth、DaysInYear、DaysInMonth
    范围内取随机数
    [转载]asp.net中,<%#%>,<%=%>和<%%>分别是什么意思,有什么区别
    [转载]localStorage使用总结
  • 原文地址:https://www.cnblogs.com/ibgo/p/8523792.html
Copyright © 2011-2022 走看看