- 浏览: 292948 次
-
最新评论
文章列表
[译]root权限运行vlc
- 博客分类:
- linux
原文地址:http://www.blackmoreops.com/2015/11/02/fixing-vlc-is-not-supposed-to-be-run-as-root-sorry-error/
引用apt-get install vlc
cp /usr/bin/vlc /usr/bin/vlc-backup
使用hexeditor编辑vlc
引用hexeditor /usr/bin/vlc
引用ctrl+w,选择search for text string,回车
引用输入geteuid
引用按tab健,可以把hexeditor切换到ascii格式
geteuid 替换为get ...
http://highscalability.com/blog/2015/10/14/save-some-bandwidth-by-turning-off-tcp-timestamps.html
kali2.0中国源
- 博客分类:
- kali
#中科大kali源
deb http://mirrors.ustc.edu.cn/kali sana main non-free contrib
deb http://mirrors.ustc.edu.cn/kali-security/ sana/updates main contrib non-free
deb-src http://mirrors.ustc.edu.cn/kali-security/ sana/updates main contrib non-free
#阿里云kali源
deb http://mirrors.aliyun.com/kali sana main non-fre ...
https://ma.ttias.be/terminal-escape-sequences-the-new-xss-for-linux-sysadmins/
Introspection引用
Using a question mark ( ? ) before or after a variable will display some general information about the object
引用Using ?? will also show the function’s source code if possible:
引用? has a final usage, which is for searching the IPython namespace in a manner similar to the standard UNIX ...
static in C
- 博客分类:
- linux
jason@ubuntu:~/test$ cat a.c
#include <stdio.h>
void(* fpp)(void);
static void fp(void){
printf("fp is called\n");
return;
}
void set_f(void){
fpp =fp;
printf("set_f is called\n");
return;
}
jason@ubuntu:~/test$ cat b.c
#include <stdio.h>
ext ...
引用intitle:"index.of" (pdf|epub|mob) "how to be a 1337 h4ck3r" -html -htm -php -asp -jsp
引用intitle:"index.of" (mp4|avi|mkv) "DeepCopy's sex tape" -html -htm -php -asp -jsp
引用http://palined.com/search/
引用https://www.reddit.com/r/opendirectories/
lxc-ls 使用文件夹名作为容器名。所以可以更改文件夹名称来达到改变容器名。
但是改变文件夹名称后,同时需要改变容器文件夹中的config文件所对应的相应文件夹。
引用# Template used to create this container: /usr/share/lxc/templates/lxc-ubuntu
# Parameters passed to the template:
# For additional config options, please look at lxc.container.conf(5)
# Common configuration
lxc.in ...
最近一直在使用lxc创建容器,每次创建一个容器都需要把apt源替换成国内的源,然后再运行apt-get update; apt-get upgrade。
记得以前研究lxc代码的时候,发现lxc-create使用debootstrap来下载linux文件,然后放在/var/cache/lxc/distribute文件夹下。
于是可以:
引用1. cd /var/cache/lxc/trusty/rootfs-amd64, (trusty是ubuntu14.04镜像名称,也是我使用的lxc容器模板)
引用2. cd etc/apt/
引用3. vim source.list
把镜像替换成国内 ...
python decorators
- 博客分类:
- python
http://simeonfranklin.com/blog/2012/jul/1/python-decorators-in-12-steps/
When start wireshark, I met an error like:
引用Couldn't run /usr/bin/dumpcap in child process: Permission denied
Solution:
引用
sudo apt-get install libcap2-bin wireshark
sudo chgrp myusername /usr/bin/dumpcap
sudo chmod 750 /usr/bin/dumpcap
sudo setcap cap_net_raw,cap_net_admin+eip /usr/bin/dumpcap
Ref ...
抓取标签一些tips:引用
1. 查找“打印本页”的link,或手机版网页(或者把你的爬虫伪装成移动设备),他们可能会有更好的html格式
2. 从Javascrpt中查找信息。你应该检查导入的Javascript文件。
3. 关键信息可能就是url本身,这对页面标题更常见
4. 可以通过css文件来获得关联标签
字符编码问题:
引用
1. 90%都是UTF-8编码
2. 大部分时候可以从页面的meta里面发现编码
例如<meta charset="utf-8" />
http://chase-seibert.github.io/blog/2013/08/03/diagnosing-memory-leaks-python.html
https://news.ycombinator.com/item?id=10181612
lxc 安装ubuntu vivid
- 博客分类:
- linux,虚拟化
1. lxc-create --template download --name u1
选择linux distribute版本,ubunut版本,arch
2. 进入/var/lib/lxc/u1文件夹,编辑config文件,添加如下两行:
lxc.network.ipv4 = 10.0.3.10/24
lxc.network.ipv4.gateway = 10.0.3.1
因为ip add显示lxcbr0的ip地址段为10.0.3.1/24
这时,在u1里面可以ping 外网的ip,但是不能解析域名
3. 进入u1
lxc-attach -n u1 ...
http://stackoverflow.com/questions/12179271/python-classmethod-and-staticmethod-for-beginner/12179325#12179325