增加用户组groupadd [组名]
把已有用户加到一个组usermod -a -G groupA user
查看内核版本 uname -r
查看是那种linux发行版 cat /etc/issue
linux下查看某个进程运行的命令所在目录: ll /proc/PID (PID可以通过ps来查到)
后台运行命令: nohup ./run.sh > /dev/null &
curl 使用
指定代理服务器上网: curl -x 172.32.234.107:80 http://www.baidu.com
最普通的:
curl http://172.22.224.169:9082/jsptest/index.jsp
如果要用https且忽略验证信息:
curl https://172.22.224.169:9445/jsptest/index.jsp -k
如果在页面中有跳转,比如redirect(http返回码为302),默认情况下无法获得任何返回内容的。加上-L参数就可以i跟踪跳转页面。
curl https://172.22.224.169:9445/jsptest/index.jsp -k -L
如果要模仿cookie功能,则要加上 -c filename.txt , 其中filename.txt是 cookie id保存的文件
实例,模仿浏览器,通过http和https访问页面跳转,验证session失效问题:
用http访问:
curl https://172.22.224.169:9445/jsptest/index.jsp -k -L -c file.txt
用https访问
curl http://172.22.224.169:9082/jsptest/index.jsp -L -c cookiefile.txt
wget使用
从网上下载: wget -e "https_proxy=http://172.32.234.107:80" https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tar.xz
代理如果需要用户名密码,在url上指定:
wget -e "https_proxy=https://cn\wangq:Cosconxxx@172.22.8.218:80" https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
linux全局代理设置(用户下的)
要设置kong用户的全局代理,可以编辑/home/kong/.bash_profile
网友评论