
misc
文章平均质量分 69
Xalloc
create and share values.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
network namespace tips
linux network namespace offer an intra net in our network. A network namespace includes ethernet interfaces and ip routes.linux network namespace offer mechanism to separate different networks , whi原创 2015-08-06 22:14:02 · 624 阅读 · 0 评论 -
ssh agent forward
See more details: http://unixwiz.net/techtips/ssh-agent-forwarding.htmlHow to enable ssh agent:on server A: enable it on /etc/ssh/sshd_configAllowAgentForwarding yesssh to server A with option原创 2016-07-08 10:37:03 · 929 阅读 · 0 评论 -
avahi-daemon service
From wiki:avahi is a free zero-configuration networking (zeroconf) implementation, including a system formulticast DNS/DNS-SDservice discovery.Avahi is a system which enables programs原创 2015-09-30 16:22:55 · 2606 阅读 · 0 评论 -
DAEMON REPARENTED / INIT --USER
from: https://www.osso.nl/blog/daemon-reparented-init-user/While I was battling an obscure Ubuntu shutdown issue — more about that later — I noticed that daemonized jobs started from my X se转载 2016-01-20 16:24:40 · 704 阅读 · 0 评论 -
Persistent block device naming
https://wiki.archlinux.org/index.php/Persistent_block_device_naming转载 2015-09-12 20:38:17 · 744 阅读 · 0 评论 -
git rev tips
1. git checkout to previous branchgit checkout -like cd -, - is an abbreviation of @{-1}, @{-n} denotes the nth previous branch.2. @{n}, ref@{n} the nth rev of ref/current branch git show @{1原创 2015-08-04 13:37:32 · 407 阅读 · 0 评论 -
xterm config
xterm config转载 2015-07-03 15:04:40 · 1184 阅读 · 0 评论 -
screen
Please ref to this page: http://www.ibm.com/developerworks/cn/linux/l-cn-screen/screen basic usage:1. screen can exit if even you log out or ssh session terminated. That feature is very usefull原创 2015-06-02 22:34:53 · 591 阅读 · 0 评论 -
xterm run command
create a new xterm window and run some command, after the command executed, keep the window.xterm -hold -e "cmd"原创 2015-06-26 16:30:08 · 541 阅读 · 0 评论 -
ser2net,socat,netcat
http://techtinkering.com/2013/04/02/connecting-to-a-remote-serial-port-over-tcpip/原创 2015-06-05 10:04:34 · 1554 阅读 · 0 评论 -
operation on files named with hyphen '-'
-- means options end, see man rm for details.touch -- -test.logrm -- -test.log原创 2015-05-22 16:02:48 · 733 阅读 · 0 评论 -
emacs lisp
http://ergoemacs.org/emacs/elisp.html原创 2015-05-21 14:19:17 · 620 阅读 · 0 评论 -
Attach a long running process to another terminal
步骤:1.启动一个process, 如top,按CTRL-Z 将target process 放入background task2. resume the process in background: bg 3. disown top4. open an session5. reptyr pidoftarget参考:https://blog.ne原创 2017-12-23 16:48:57 · 305 阅读 · 0 评论