분류 전체보기
-
독일에서 전자여권 만들기Coffee 2008. 11. 25. 08:31
저와 같이 삽질할 사람들을 위해 글을 남깁니다. 독일(외국)에서 전자여권을 만드는 것은 힘듭니다. 개인 불평은 각설하고 본론으로 들어갑니다. 프랑크푸르트 총영사관에서 제공해주는 방법은 아래 링크를 따라가셔서 보시면 됩니다. http://www.kgkf.de/cgi-bin/iwfk/read.cgi?board=minwon1&y_number=7&nnew=2 http://deu-frankfurt.mofat.go.kr/kor/eu/deu-frankfurt/consul/passport/index.jsp 위 링크 글을 꼼꼼히 읽으시고, 서류 잘 준비해서 가세요. 하지만 반드시 전화를 해서 다시 물어봐야 합니다. 묻는 김에 담당자 이름도 함께 물으세요. 그럼.. 이제 본론으로... 실제 진행중인 방법... 구여권 여권..
-
Printer Setting by using CUPS and smbComputer/linux 2008. 11. 10. 19:31
1. apt-get install cupsys cupsys-common smbclient 2. connect localhost:631 -> Add printers... 3. open /etc/cups/printers.conf -> add user id and password at the front of print DeviceURI smb://user_id:user_passwd@samba_print_server/samba_print_name 4. restart cupsys by using /etc/init.d/cupsys restart The PPD file can be easily found in the http://www.linuxfoundation.org/en/OpenPrinting
-
Guest Virtualbox, network Printer SettingComputer/linux 2008. 10. 27. 05:16
Host OS : Ubuntu Linux 8.04 64bit or Debian 6 64bit Guest OS : Win xp sp3 On the Win xp, add printer -> network printer... http://10.0.2.2:631/printers/ML-1610 ML-1610 is the printer name find the right driver for your printer... test it. reference : http://forums.virtualbox.org/viewtopic.php?t=1465 Note that sometimes, I cannot use the above method, in that case, instead of 10.0.2.2, use the ho..
-
호환성 그리고 티스토리Coffee 2008. 8. 29. 16:43
나는 소수 중에 소수인가? 라는 의문이 생겼다. 지원 운영체제에 대한 공지를 읽다가 보니, 달려있는 댓글을 읽다가 보니 그런 생각이 든다. 리눅스에 남들이 쓰지 않는 FVWM2 그리고 firefox.. 사람들 마다 다른 의견을 듣고 여러 브라우져를 사용해 봤으나 결국 firefox로 돌아 갈 수 밖에 없는 묘한 본능. 이젠 영원히 사라져 버린 netscape navigator를 가지고 시작한 인터넷 그것 때문인지도 모른다. http://browser.netscape.com/ 티스토리... 잘 잊어버리는 컴퓨터와 나의 기억에대한 조각으로 시작한 블로깅. 생각보다 많이 내 사고를 생각을 의식을 담는 것은 아니지만, 그래도 이정도면 괜찮다고 생각이 든다. 내가 간단한 툴을 이용해 웹페이지를 만들어도 호환성은 ..
-
awk and the data manipulationComputer/linux 2008. 8. 22. 00:47
histogram.dat has the following structure: -100 -99 7 -99 -98 8 -98 -97 11 -97 -96 10 -96 -95 4 -95 -94 6 -94 -93 11 -93 -92 13 -92 -91 11 I want to change "histogram.dat" to the below structure: -100 7 -99 7 -99 8 -98 8 -98 11 -97 11 -97 10 -96 10 -96 4 -95 4 -95 6 -94 6 -94 11 -93 11 -93 13 -92 13 -92 11 awk '{print $1, $3 ; print $2, $3}' histogram.dat > histogram2.dat
-
Make a secure PC with sshd and ufwComputer/linux 2008. 8. 20. 04:47
sshd configuration open /etc/ssh/sshd_config file, change and add the following lines LoginGraceTime 60 PermitRootLogin no MaxAuthTries 3 AllowUsers user_name MaxStartups 3:50:10 LoginGraceTime The server disconnects after this time if the user has not suc- cessfully logged in. If the value is 0, there is no time limit. The default is 120 seconds. MaxAuthTries Specifies the maximum number of aut..