Create NTFS Partition with gparted in Ubuntu

The “ntfs” option is dimmed by default, to enable it you should install the necessary package: “sudo apt-get install ntfsprogs”

That’s it, just re-open gparted and you’re ready to go 🙂

Tagged , , , | Leave a comment

Get CPU Temperature From Command Line in Ubuntu

more /proc/acpi/thermal_zone/THM0/temperature
more /proc/acpi/thermal_zone/THM1/temperature

As I have two processors “THM0” and “THM1”

Source

Tagged , , | Leave a comment

Permanently Blacklist a Kernel Module in Ubuntu

  1. Edit “/etc/modprobe.d/blacklist.conf”
  2. Add the module you want to remove, e.g. to blacklist the “kvm_intel” module, add this line “blacklist kvm_intel”
Tagged , , | Leave a comment

Disable a Laptop’s Touchpad in Ubuntu Karmic (and later as I well I guess)

  1. Applications -> Ubuntu Software Center
  2. Search for Touchpad
  3. System -> Preferences -> Touchpad
  4. Untick “Enable Touchpad”
Tagged , | 1 Comment

How to uncompress zip file on AIX

To uncompress a zip file on AIX, useunzip command:
unzip file_name.zip

Posted in Uncategorized | Tagged | Leave a comment