터미널 -> 편집 -> (터미널)기본설정 -> 일반 -> 스크롤 -> 스크롤 복귀
10000
터미널 -> 편집 -> (터미널)기본설정 -> 일반 -> 스크롤 -> 스크롤 복귀
10000
ref : http://egloos.zum.com/nemonein/v/5230342
sysctl kernel.core_pattern=core.%e.%p
docker run -d --ulimit core=-1 --privileged=true
Android
https://registry.hub.docker.com/u/aerath/docker-android-x86/dockerfile/
RUN cd android-sdk-linux/tools/;./android -s update sdk --no-ui --filter 1,2,3,10,19,20,22,40,42,60,61,65,79,80,102,103,112,113,118,119,120,121,122,123,124
https://github.com/jpetazzo/pipework/#connect-a-container-to-a-local-physical-interface
docker run --name chozo99 --rm -it ubuntu bash
sudo ./pipework eth0 chozo99 192.168.15.250/24@192.168.15.254
Virtualbox
If you use VirtualBox, you will have to update your VM network settings. Open the settings panel for the VM, go the the "Network" tab, pull down the "Advanced" settings. Here, the "Adapter Type" should be pcnet (the full name is something like "PCnet-FAST III"), instead of the default e1000 (Intel PRO/1000). Also, "Promiscuous Mode" should be set to "Allow All". If you don't do that, bridged containers won't work, because the virtual NIC will filter out all packets with a different MAC address.
http://blog.pagebakers.nl/2009/01/29/git-ignoring-changes-in-tracked-files/
git update-index --assume-unchanged <file>
If you wanna start tracking changes again run the following command:
git update-index --no-assume-unchanged <file>
list
git ls-files -v
H .gitignore
H pgbouncer.ini
h pgbouncer_local.ini
H run_pgbouncer
H users.txt
http://askubuntu.com/questions/54441/how-to-configure-two-nic-for-dns-resolv-conf-how-to-eth0-dns-forwards-to-eth1
/etc/resolvconf/resolv.conf.d/head
nameserver <ip_of_nameserver>
resolvconf -u
or
echo "nameserver 168.126.63.1" | sudo resolvconf -a em1.inet
http://superuser.com/questions/511804/in-ubuntu-is-there-a-command-to-show-a-list-of-all-autostart-services
for SysV
remove service
$ update-rc.d -f apache2 remove
add service
$ update-rc.d apache2 defaults
list service
$ ls /etc/rc*.d
or service --status-all
for Upstart
ref: /etc/init
netstat -na | find "192.168.20.229" | find "EST" /c
0 4 * * * /usr/bin/find /home/xxxxx/log/ -maxdepth 1 -type f -mtime +6 | /usr/bin/xargs rm -rf