Kali Linux Notes

  • compile the code:
1
2
3
make clean
make
make install
  • update the dependencies:depmod -a
  • Find loaded modules:lsmod
  • Update the local package index with the latest changes made in the repositories:apt-get update

一些有用的Linux命令

  1. 以sudo运行上条命令 sudo !!(两个感叹号其实是bash的一个特性,称为时间引用符,引用前一个命令,参考history命令) 输入命令后发现忘记sudo后可以使用Ctrl+p和Ctrl+a快速输入sudo命令
  2. 以HTTp方式共享当前文件夹的文件: python -m SimpleHTTPServer(启用Python的SimpleHTTPServer模块,简单的跨平台传文件的方法,命令执行后将在本机8000端口开放HTTP服务,打开http://ip:8000即打开一个目录列表,点击即可下载)