Computer/linux
-
adk installation on debian 6Computer/linux 2012. 4. 26. 14:45
I have the following error when I execute ./android Failed to fetch URL https://dl-ssl.google.com/android/repository/addons_list-1.xml, reason: Failure initializing default SSL contextSolution is to remove gcj-4.4-base by apt-get remove gcj-4.4-base. After this, I see the other platform without errors as
-
recover deleted files on an android device in debianComputer/linux 2012. 4. 8. 13:49
apt-get install testdisk mount an android device su accountcd mount-position ( /media/3F30-AC25/ )photorecselect Android UMS Compositeselect [Intel] as the partition table typeselect whole...select FAT/NTFS/... as the filesystme typeselect another directory where one wants to save recovered files, and type Ylet them go... one can see the following directories in the directory which one selected ..
-
make a big log file to be truncate if the log is not important anymore or...Computer/linux 2012. 3. 19. 23:02
Situation file_to_be_truncated is a debug or monitor log file is going to be a big size due to whatever reasons. I would like to be truncated or be ignored this log at this moment, but this file is connected to a running process. Solution one of my colleagues gives me a brilliant solution to do that without interrupting a process. cat /dev/null > file_to_be_truncated Example Before 786658068 Mar..
-
how to mount a kindle via commandsComputer/linux 2012. 3. 1. 04:48
need to be su * tail -f /var/log/message -n 20 it will returns a name when a kindle is connected, such as sdc1 * mkdir /media/kindle * mount /dev/sdc1 /media/kindle * umount /media/kindle See if one wants to know, how to eject 2012/02/06 - [computer/linux] - How to eject a Kindle Touch 3rd Generation when it is USB drive mode in Linux command
-
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