우분투에서 매직마우스 속도 조절하기

먼저 xinput 커맨드로 input 장치 목록을 확인한다. 목록중에 보이는 m189618’s Mouse가 애플 매직마우스1 이다. 마우스 속도가 너무 빨라서 xinput에서 직접 속도를 조절해야만 했다. 설정에서 마우스 포인트 스피드를 최하로 설정해도 마우스포인터가 날라다녔다. user1@user1-GE62-2QD:~$ xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ SynPS/2 […]

Tomcat7 우분투 세팅 과정 정리

우분투에서 로컬 세팅 과정 @@ 톰캣 서버를 부팅 대몬 리스트에서 제외한다. sudo update-rc.d tomcat7 disable default @@ 적절하게 디렉토리를 세팅해 둔다. user1@abab-server:~/public_html$ tree . ├── catalina_base │   └── conf │   ├── Catalina │   │   └── localhost │   │   ├── docs.xml │   │   ├── examples.xml │   │   ├── host-manager.xml │   │   └── manager.xml │   ├── catalina.properties […]

Bash awk관련 내용 메모

# grep 문 사용하기 cat KR-160315.csv | awk -F"," 'NR > 1 {printf "%-5s|%-10s|%-30s\t|%-5s|%-15s|%-5s|%s\n", $1,$2,$4,$5,$6,$8,$10 | "grep 00K1" }' | head cat KR-160315.csv | awk -F"," 'NR > 1 {printf "%-5s|%-10s|%-40s|%-5s|%-15s|%-5s|%-s\n", $1,$2,$4,$5,$6,$8,$10}' | head   &를 쓰면 매칭된 스트링이 대치된다. user1@ubuntu-desktop:~/Downloads$ echo "candidate a b c " | awk '{ sub(/candidate/, "& and his wife"); […]

Linux의 netstat, 동시접속자수 확인

모든 서비스 동시 접속자 수 [root@fot etc]# netstat -nap | grep ESTABLISHED | wc -l 11 [root@fot etc]# netstat -nap | grep ESTABLISHED tcp 0 0 127.0.0.1:52314 127.0.0.1:8009 ESTABLISHED 12237/httpd tcp 0 0 127.0.0.1:56156 127.0.0.1:8009 ESTABLISHED 12239/httpd … tcp 0 0 ::ffff:127.0.0.1:8009 ::ffff:127.0.0.1:52312 ESTABLISHED 12252/java tcp 0 0 ::ffff:127.0.0.1:8009 ::ffff:127.0.0.1:56156 ESTABLISHED 12252/java … tcp 0 […]

Linux에서 lsof 사용법

################################################################################ lsof 사용법 ################################################################################ ——————————————————————————– FD – stands for File descriptor and may seen some of the values as: ——————————————————————————– cwd current working directory rtd root directory txt program text (code and data) mem memory-mapped file r for read access. w for write access. u for read and write access. ——————————————————————————– TYPE – of files […]

Ubuntu Install History 관련 히스토리 정리

Ubuntu Install History @@ INSTALL PACKAGE sudo apt-get install libxss1 filezilla tomboy sshpass gimp ibus \ ibus-hangul openjdk-7-jdk vim-gnome nautilus-open-terminal atop htop \ lsb-core mysql-client mysql-server apache2 php5 libapache2-mod-php5 \ ssh sshfs curl sshpass php5-mysql php5-mcrypt ant git geoip-bin \ nmap tcpflow build-essential libnl-3-dev openssl ettercap-text-only \ hydra dsniff sslstrip libssl-dev rapidsvn gnome-session-fallback whois \ […]

PART1: 우분투 관련 메모들

우분투 전역변수 설정 vi /etc/environment   노틸러스에 이미지 리사이징 하는 메뉴 붙이기 sudo apt-get install nautilus-image-converter imagemagick   Ubuntu Custom Login Profile sudo cp /usr/share/xsessions/gnome-fallback.desktop /usr/share/xsessions/custom.desktop sudo vi /usr/share/xsessions/custom.desktop [Desktop Entry] Name=Webterror Session Comment=Custom ~/.xsession script Exec=/home/webterror/.xsession X-Ubuntu-Gettext-Domain=gdm   외부 FTP 마운트 시키기 webterror@webterror:~$ cat /etc/fuse.conf # Set the maximum number of FUSE mounts allowed […]

16.04 우분투 설치 히스토리

우분투 16.04 설치 순서, – webterror가 반드시 진행하는 것들을 순서대로 적어놓았다. 1. settings – 언어추가하기 2.  크롬설치 3. tomboy 설치 $ sudo apt-get install tomboy sshfs   4. ssh 동기화 시킬것 $ ssh-keygen $ ssh-copy-id -i ~/.ssh/tomboy.pub webterror@domain.net   5. ibus 한글, 일본어, 중국어 추가하기 $ sudo apt-get install ibus-hangul ibus-anthy ibus-pinyin $ ibus-daemon -rdx […]