분류 전체보기
-
How to eject a Kindle Touch 3rd Generation when it is USB drive mode in Linux commandComputer/linux 2012. 2. 7. 00:01
When I connect my Kindle to a pc for charging, it shows the following link image https://images-na.ssl-images-amazon.com/images/G/01/00/00/06/73/72/25/673722510.gif Then, it rejects "charging". doesn't allow me to read a document, so... find the right dev name, for me, it was /dev/sdc1. I am using tail -f /var/log/message with SU eject /dev/sdc One might ask, why do you need this command?. I am ..
-
undefined reference to `vtable for A'Computer/linux 2011. 12. 18. 02:45
a header file class a : public TObject { public: A(); virtual ~A() {}; } Then I've got the linking error of g++ as follows: undefined reference to `vtable for A' The solution is to define the real destructor in source file. a header file class a : public TObject { public: A(); virtual ~A(); } a source file A::~A() { }
-
replace korean input method on debian 6Computer/linux 2011. 11. 30. 02:41
* sudo apt-get remove scim * sudo apt-get install ibus-hangul im-switch * im-switch > Select ibus for input method * System-IBus Preferences> Input Medhod -> Korean or ibus-setup * Run im-switch -s ibus in a terminal, and logout & login * Reference http://www.debian.org/doc/manuals/debian-reference/ch08.en.html http://wiki.debian.org/I18n/ibus
-
prepare to do very crazy thingComputer/linux 2011. 10. 20. 14:33
I am developing a customized RunControl (RC) GUI for the Qweak Experiment at JLab, because the standard RC GUI has a limited system resources and is a closed source. So I have been limited to add more features to make a simple and flexible GUI. The first attempt to ask them to provide a command line tools, at the first time, it look a quite promising, but after a quick and short test, it doesn't..
-
create a thumbnail by command lineComputer/linux 2011. 9. 27. 23:45
imagemagick can do almost everything ..... convert -thumbnail widthxheight a.png a.thumbnail.png convert -thumbnail 120 a.png a.thumb.png (width 120px) convert -thumbnail 120x120 a.png a.thumb.png (width/height 120px) convert -thumbnail x120 a.png a.thumb.png (height 120px)