kali_常用软件记录

可参考:http://www.lvzejun.cn/2015/03/31/ubuntu-software/

录屏软件

http://www.kohaupt-online.de/hp/
http://linuxecke.volkoh.de/vokoscreen/vokoscreen.html

pyenv

https://github.com/pyenv/pyenv-installer

Install:

$ curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash

Update:

$ pyenv update

Uninstall: pyenv is installed within $PYENV_ROOT (default: ~/.pyenv). To uninstall, just remove it:

$ rm -fr ~/.pyenv

and remove these three lines from .bashrc:

export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"

PyPi way

WARNING still a very hacky proof of concept. Does not work with Python 3 at all yet and in Python 2 only with the use of the --egg parameter.

Install:

$ pip install --egg pyenv

In the current implementation updates and uninstallation works exactly like the github way.

NOTE: pip freeze will not show pyenv as installed as this tool is just a thin wrapper around the shell install script.

firefox flash

手动安装firefox的flash的步骤

  • 1.下载flash的tar.gz安装包
firefox http://get2.adobe.com/cn/flashplayer/otherversions/
  • 2.解压到一个单独的目录
mkdir flash
tar zxf install_flash_player_11_linux.x86_64.tar.gz -C flash
  • 3.复制文件至firefox的plugin目录
cp -r usr/* /usr
cp libflashplayer.so /usr/lib/mozilla/plugins/
  • 4.now, just restart your firefox.
原文地址:https://www.cnblogs.com/ZhangRuoXu/p/6706636.html