분류 전체보기
-
How to convert wmv to flv with ffmpeg and embed in my web site.Computer/linux 2007. 10. 13. 05:54
# apt-get install ffmpeg # ffmpeg -i input.wmv -s 640x480 -ar 44100 -b 96 output.flv # ffmpeg -i input.wmv -f avi -vcodec mpeg4 -b 800k -g 300 -bf 2 -an output.avi # ffmpeg -i out.ogg -s 1280x764 out.flv -i : input file -s : set frame size -ar : set audio sampling rate (Hz) -b : set video bitrate(kbit/s) -r : set frame rate (Hz) -an : no sound ffmpeg is found in the http://ffmpeg.mplayerhq.hu/ ...
-
잔인했던 시월, 이젠 축복의 시간...Coffee 2007. 10. 5. 21:54
내 삶 이십대의 시월은 내게 있어 무척이나 잔인했던 기억이었다. 해마다 시월이 되면 가족이나 나 자신에게 무척 견디기 힘들었던 일이 생겼던 것이 하나의 이유였던 것 같다. 가장 잔인했던 어느해 시월 그때 적은 한편의 시 구절이 생각이 난다. "시월은 내게 잔인하다." 한주간 여행 및 휴가를 마치고 집에 돌아온 후에 아내는 잠을 청하고, 아이와 함께 산책을 나갔다. 연구소 앞에서 혼자 커피를 마시면서 생각에 빠져 있는 동안에 사랑스러운 아이는 이곳 저곳을 다니며 낙엽을 줍고 있었다. 노란색으로 가득한 예쁜 낙엽들을... 집으로 돌아오는 길, 자전거를 타야된다면서 내게 그 낙엽을 내밀었다. 모양 흐트러지지 않게 아이가 모은 모습 그대로를 움켜쥐고 자전거를 따라가다가 낙엽 한 장이 내 손을 벗어나 길 위에 내..
-
remove a file securely on linuxComputer/linux 2007. 10. 4. 20:35
shred -n 100 -z -u filename.which.one.want.to.delete -u, --remove truncate and remove file after overwriting -n, --iterations=N Overwrite N times instead of the default (25) -z, --zero add a final overwrite with zeros to hide shredding CAUTION: Note that shred relies on a very important assumption: that the file system over‐ writes data in place. This is the traditional way to do things, but man..
-
Firefox ugly font size with Xfce4Computer/linux 2007. 8. 27. 22:14
Check your resolution ~$ xdpyinfo |grep resolution resolution: 75x75 dots per inch Open ~$ emacs ~/.config/xfce4/Xft.xrdb& Xft.antialias: 1 Xft.hinting: 1 Xft.hintstyle: hintfull Xft.rgba: rgb Xft.dpi: 76 Restart gdm or whatever.. One useful command to check your Xft configuration xrdb -q |grep Xft OR, in the firefox about:config Set the value of layout.css.dpi to 0 , which means that Use the ho..
-
gsview on ubuntu linux (6.10)Computer/linux 2007. 8. 25. 00:37
2009/03/13 - [computer/linux] - gsview on Ubuntu Hardy (8.04.02) #wget -c ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/ghostgum/gsview-4.8-1.i386.rpm #alien gsview-4.8-1.i386.rpm #dpkg -i gsview_4.8-2_i386.deb #gsview (run gsview) Error message: empty message box solution: go to -> Option -> Ignore DSC #gsview Now the error messages as follows: GSview 4.8 2006-02-25 play_sound: not implemented deb..
-
xfce4 WMComputer/linux 2007. 8. 23. 23:45
선택할수있는방법은너무많다 내가모를뿐 gnome 에서 xfce4 로넘어왔다 gnome을사용하면서항상느꼈던것은좀버벅댄다는것이었다 한글입력때문에계속사용하다가 uim 을통해입력을해보니잘되었다 그런후에완전히xfce4로넘어왔다 uim으로 한글 입력또한 그렇게 만만하진 않다. 문자입력에서 버그가 있는 것 같다. GUI 설정도구를 통해 온갖삽질을 해봐도 최척화된 입력 방법을 찾지를 못했다. 시간이 해결하려니 하고 구글링 해보니.. 홈 디렉토리에 .xinitrc 화일을 만들어 다음을 추가하라고.. export XMODIFIERS="@im=uim" uim-xim & uim-toolbar-gtk & 그러니 shift-space 키로 한글 영어변환이 가능하고 문자입력(점이나 @ 같은..)에서 오류가 없게 입력이 된다... 것..