Linux Desktop Backgrounds

Problem: Only one desktop background available. Run this command in the terminal: sudo apt-get install kdebase-workspace-wallpapers kdewallpapers Now a whole lot of images will be installed and availabe in “desktop activity settings” on desktop.

Linux Network Management disabled after reboot

Problem: Network Management was disabled after a reboot and no way to enabled it again via GUI on task list (it were running). The issue was caused by NetworkEnabled=false. Use an editor, kate, gedit or similar. sudo kate /var/lib/NetworkManager/NetworkManager.state Change the following line it back to NetworkEnabled=true Restart the network management program sudo service network-manager restart It

Read More

Linux GRUB2 Failing Loading Disk After Forced Reboot

Problem: After a forced reboot because it froze the linux partition won’t mount. “An error occurred while accessing ‘Volume (ext3)’, the system responded: org.freedesktop.Hal.Device.Volume.UnknownFailure: mount: wrong fs type, bad option, bad superblock on /dev/sda5. missing codepage or helper program, or other error In some cases useful info is found in syslog – try dmesg |

Read More

Eclipse Android The Import Is Never Used

When coding you frequently remove unnecessary code and run into this warning for Android in Eclipse or Motodev. The import * is never used. “The import android.util.Log is never used” You can do two things to resolve this error, go to the line and remove the import. Or the easy way, press Ctrl + Shift + O. That’s

Read More

Eclipse +++ LOG: Entry Corrupt Or Truncated

When developing in Eclipse you might run into this error when using logging. In this case Java while developing for Andorid. “+++ LOG: entry corrupt or truncated” First thing to test is if you’re running First thing to test is if you’re using a variable that might contain to much data. Log.e(“#”, myVar); Try using

Read More

WordPress HTTP Error 500 Internal Server Error

After playing around with some plugins for WordPress suddenly came up with the following error when trying to login. “Server error. The website encountered an error while retrieving website. It may be down for maintenance or configured incorrectly. HTTP Error 500 (Internal Server Error). An unexpected condition was encounted while the server was attempting to

Read More