zoukankan      html  css  js  c++  java
  • Kali:系统安装之后进行所需配置

    apt设置源

    由于官网的源需要墙或者想使用国内的源,可以修改source.list

    vi /etc/source.list

    打开文件并修改为其他可用的源地址,以下可供参考

    deb http://ftp.sjtu.edu.cn/debian wheezy main non-free contrib
    deb-src http://ftp.sjtu.edu.cn/debian wheezy main non-free contrib
    deb http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib
    deb-src http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib
    deb http://ftp.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib
    deb-src http://ftp.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib
    deb http://mirrors.163.com/debian wheezy main non-free contrib
    deb-src http://mirrors.163.com/debian wheezy main non-free contrib
    deb http://mirrors.163.com/debian wheezy-proposed-updates main non-free contrib
    deb-src http://mirrors.163.com/debian wheezy-proposed-updates main non-free contrib
    deb-src http://mirrors.163.com/debian-security wheezy/updates main non-free contrib
    deb http://mirrors.163.com/debian-security wheezy/updates main non-free contrib

    安装中文输入法

    安装谷歌拼音小企鹅输入法

    apt-get install fcitx-googlepinyin

    中文乱码问题

    由于安装的时候选择的汉语,而且安装的包是light轻量的包,所以还需要安装一下中文字体

    sudo apt-get install ttf-wqy-zenhei

    安装编辑器

    由于kali自带vim-tiny,可以重新安装vim会有比较好的体验

    apt-get install vim

    如果不习惯使用vim,安装一个gedit也是一个不错的选择

    apt-get install gedit

    笔记本触摸板

    安装之后发现笔记本上触摸板的单击事件无效,进入系统设置之后也没有找到相应的设置选项,通过wiki发现解决方案,可以参考:
    https://wiki.debian.org/SynapticsTouchpad

  • 相关阅读:
    java web项目防止多用户重复登录解决方案
    通过Google浏览器Cookie文件获取cookie信息,80以上版本有效
    js实现json数据导出为Excel下载到本地
    golang 搭建web服务器
    typescript笔记
    canvas屏幕动画
    canvas鼠标特效
    博客皮肤分享
    HTML的背景色和背景图、图片
    HTML表格头部、主体、页脚
  • 原文地址:https://www.cnblogs.com/unclemac/p/12783444.html
Copyright © 2011-2022 走看看