Go to content

geek_stuff/server & linux

(54)
WebEx in Ubuntu + Firefox 우분투의 Firefox 에서 WebEx를 사용하려는 경우 아래의 패키지를 설치하면 된다. sudo apt-get install ubuntu-restricted-extras sudo apt-get install libstdc++5
iTunes Alternatives 우분투에서 iTunes 대체용으로 사용가능한 것들 http://en.wikipedia.org/wiki/Comparison_of_iPod_Managers#Linux
우분투 + 프린터 로컬 프린터 설정방법 System > Administration > Print > New Printer 나머지는 알아서: http://www.ubuntu.or.kr/viewtopic.php?p=55512 네트워크 프린터 설정방법 http://www.linuxquestions.org/linux/answers/Networking/Setting_Up_a_Network_Printer_using_CUPS AirPrint 설정방법 AirPrint 상세 정보 http://www.finnie.org/2010/11/13/airprint-and-linux/ AirPrint 자동 Generation Script https://github.com/tjfontaine/airprint-generate
SSH Daemon 접속 지연시간 해결 /etc/sshd_config에서 아래 명령줄을 하나 추가 또는 주석을 삭제하면 된다. GSSAPIAuthentication no 출처: http://blog.jinbo.net/ubuntu/37
Fedora Core 6 yum Update add following lines after [core] of each file. ; fedora-core.repo baseurl=http://archive.fedoraproject.org/pub/archive/fedora/linux/core/$releasever/$basearch/os/ ; fedora-updates.repo baseurl=http://archive.fedoraproject.org/pub/archive/fedora/linux/core/updates/$releasever/$basearch/ ; fedora-extras.repo baseurl=http://archive.fedoraproject.org/pub/archive/fedora/linux/extras/$releasever/$base..
우분투 해상도 추가방법 How to change resolution. /etc/X11/xorg.conf (create if not exist) # xorg.conf (X.Org X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database. # # Edit this file with caution, and see the xorg.conf manual page. # (Type "man xorg.conf" at the shell prompt.) # # This file is automatically updated o..
Start Synergy Client before GDM add /etc/gdm/Init/Default just before "exit 0" /usr/bin/killall synergyc sleep 1 /usr/bin/synergyc --daemon
Linux에서 Wireshark 사용시 인터페이스 나타나지 않는 문제 리눅스에서 Wireshark 실행시 인터페이스가 나타나지 않는 문제는, Wireshark 가 인터페이스에 직접 Access할 수 없기 때문이라고 합니다. 보안상의 문제로 Root로 작업하는 것을 권장하지 않는다고 하며, dumpcap 에 대하여 네트워크 권한을 지정해주면 해결할 수 있다고 하네요. http://wiki.wireshark.org/CaptureSetup/CapturePrivileges 간단하게 리눅스에서 아래 명령만 실행시키면 된다고 합니다. ^^ user@ubuntu:~$ sudo setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/bin/dumpcap