Go to content

geek_stuff/server & linux

(54)
여러 장비에서 자동으로 슬립모드로 들어가는 bash shell script 한참 머리 굴리다가 만들었다. ㅋㅋ windows에 ssh 서버를 설치해야 하고, (cygwin으로 하면 편한듯)각 ssh서버들에 id_rsa.pub을 .ssh/authorized_key로 복사해 넣어야 하는 단점이 있긴 하지만... #!/bin/bash if [[ -z $1 ]]; then RUN_IN_SEC=30 else RUN_IN_SEC=$1 fi PC_ADDR=( "root@172.20.31.27,linux" "ikko@172.20.31.26,windows" "root@localhost,linux" ) # Remote PC function Run_Remote_Suspend() { local variables=( `echo $@ | tr "," " "` ) local id_address=${var..
시스템 sleep 관련 event 발생시 자동실행 /etc/pm/sleep.d/ 에서 스크립트를 만들면 아래의 경우 자동으로 해당 스크립트를 실행해준다. hibernateresumethawsuspend 예제) #!/bin/bash PATH=/sbin:/usr/sbin:/bin:/usr/bin WAKEONLAN=/usr/bin/wakeonlan if [ ! -x $WAKEONLAN ]; then exit 0 fi case "${1}" in resume) wakeonlan 00:23:11:22:33:44 wakeonlan 00:24:11:22:33:44 ;; suspend|hibernate|thaw) # nothing ;; esac
일반적인 리눅스 bash command https://zignd.wordpress.com/2012/07/11/an-a-z-index-of-the-bash-command-line-for-linux/
ssh 접속이 느릴경우 When logging in, ssh daemon checks reverse DNS lookup. so only thing you have to do is, write one line in sshd_config of server. /etc/ssh/sshd_config: UseDNS no restart ssh daemon, and that's it.
우분투에 파이퍼폭스 4 정식 설치방법 아직 우분투 10.10, 10.04에는 firefox 3.x가 설치되어있다. 이미 firefox4.0 정식 출시된 상황. 업그레이드 하고자하면, 세번의 스탭만 밟으면 된다. sudo add-apt-repository ppa:mozillateam/firefox-stable sudo apt-get update sudo apt-get install firefox
한글 우분투의 기본 디렉토리 이름 바꾸기 $vi ~/.config/user-dirs.dirs의 내용을 아래와 같이 변경 # This file is written by xdg-user-dirs-update # If you want to change or add directories, just edit the line you're # interested in. All local changes will be retained on the next run # Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped # homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an # absolute path. No other format is su..
내가 사용하는 우분투 어플리케이션 parcellite : 클립보드 관리자.(clipboard manager) Shortcut을 지정하여 그동안 Copy 또는 Drag 했던 텍스트, 링크들을 선택해서 붙여넣을 수 있다. nabi : 우분투에서 한글 입력시 scim을 대체해서 사용할 수 있다. 시스템 > 관리 > 언어 > 키보드 입력시스템을 scim에서 nabi로 변경 ttf-nanum ttf-nanum-coding : 나눔고딕 및 나눔고딕코딩(고정폭 글꼴), 설치후 시스템 > 기본설정 > 모양 에서 변경한다. pidgin-nateon pidgin-facebookchat : 네이트온과 페이스북 채팅을 pidgin에서 가능하게 해준다. Libreoffice : Ubuntu 11.04에서는 기존 10.x 버전대에 기본적으로 설치되었던 OpenO..
Using Airplay in Ubuntu The plugin is hosted on the sukimashita.com git repositories located here. Install by first cloning the repository git clone http://git.sukimashita.com/totem-plugin-airplay.git then moving the files into ~/.local/share/totem/plugins/airplay sources from http://www.omgubuntu.co.uk/2011/01/airplay-video-playback-comes-to-totem/