커널 로그

journalctl -kf


서비스 로그 

journalctl -u <unit_name> -f


unit_name 은 

systemctl list-unit-files 로 listing 


전체 로그 보기

journalctl -xef





systemctl daemon-reload


systemctl list-unit-files


systemctl status docker




=======

systemctl enable docker

systemctl disable docker


systemctl list-unit-files | grep docker






ref : https://docs.docker.com/engine/reference/commandline/dockerd/#linux-configuration-file


/etc/docker/daemon.json



/lib/systemd/system/docker.service




######### docker image save(tar.gz) and load 


특정 이미지 downlaod


$ docker pull centos:7.3.1611


받은 이미지를 tar.gz 로 변환 

( https://docs.docker.com/engine/reference/commandline/image_save/ )

$ docker image save -o centos7.3.1611.tar.gz centos:7.3.1611


tar.gz 를 load


$ docker image load -i centos7.3.1611.tar.gz


######### docker image save(tar.gz) and load 




“Error: open /tmp/docker-import-123456789/repo/bin/json: no such file or directory”


https://arvimal.wordpress.com/2014/08/16/error-open-tmpdocker-import-repobinjson-no-such-file-or-directory/



$ cat trac_2016.tar.gz | docker import - trac







전체 설정 -> 키보드 -> Input sources -> 한국어 ( Hangul )  


Ha 으로 검색하면 "한국어" 라고 나오고 클릭하면 여러개의 "한국어" 가 나온다 . 그때 꼭 Hangul 이 포함된 녀석으로 선택해야 됨.


Ibus 







change (using keyserver.ubuntu.com:80 )

from

apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D

to

apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D


echo '{"one":1,"two":2}' | python -mjson.tool



docker run --privileged -it --name dind -d jpetazzo/dind



https://github.com/jpetazzo/pipework



git clone https://github.com/jpetazzo/pipework.git

./pipework eth2 dind udhcpc

or

./pipework em1 chozo99 192.168.10.240/24@192.168.10.254



시간 변경

http://askubuntu.com/questions/138423/how-do-i-change-my-timezone-to-utc-gmt

dpkg-reconfigure tzdata






1. 패널 ContextMenu -> 패널 -> 새로운 항목 추가


2. 실행 아이콘 -> 추가 -> 닫기

> 패널 우측에 추가됨, 이동시 마우스 우측 클릭후 메뉴에서 "이동" 선택


Note.

/usr/bin/xfce4-terminal  -e '/usr/bin/ssh id@remote_host'




http://www.thegeekstuff.com/2008/11/3-steps-to-perform-ssh-login-without-password-using-ssh-keygen-ssh-copy-id/


1. 아래 실행후, 입력창에 모두 엔터 ( default 값 및 암호없이 키 생성)

$ ssh-keygen


2. remote 장비에 pub key 복사

$  ssh-copy-id -i ~/.ssh/id_rsa.pub id@remote-host


+ Recent posts