Category Archives: Linux

Easy Way to build a mainline kernel on ubuntu

Compiling a Linux kernel on Ubuntu
———————————-

This should be useful in the event that the user wants to investigate whether a newer kernel allows
certain peripherals to work better (or at all) or some other problems they might encounter while using
the kernel officially provided by Canonical.

As an example, I use the 4.1.5 release from kernel.org.

1) Make sure you have the build environment set up first:

sudo apt-get build-dep linux-image-$(uname -r)

2) Grab the sources from kernel.org.

 mkdir linux_test_builds
    cd linux_test_builds
    wget -c https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.1.5.tar.xz

3) Unpack the kernel:

tar xfv linux-4.1.5.tar.xz

Continue reading Easy Way to build a mainline kernel on ubuntu

Linux Mint 17.3 “Rosa” Cinnamon – BETA Release

Written by Clem on Wednesday, November 18th, 2015 @ 5:31 pm | Main Topics

This is the BETA release for Linux Mint 17.3 “Rosa” Cinnamon Edition.

Linux Mint 17.3 Rosa Cinnamon Edition

Linux Mint 17.3 is a long term support release which will be supported until 2019. It comes with updated software and brings refinements and many new features to make your desktop even more comfortable to use.

New features: Continue reading Linux Mint 17.3 “Rosa” Cinnamon – BETA Release

Install Arduino IDE 1.6.6 di Linux Mint 17.2

Baca post sebelum ini terlebih dahulu, klik disini.

  1. Setelah itu, silahkan unduh installer Arduino IDE 1.6.6 32bit atau 64bit, sesuaikan dengan komputer kita.
  2. Ekstrak file hasil unduhan yaitu arduino-1.6.6-linux32.tar.xz atau arduino-1.6.6-linux64.tar.xz
  3. Masuk ke direktori hasil ekstrak, yaitu arduino-1.6.6
  4. Klik kanan > Open in terminal
  5. Jalankan perintah berikut:
    sudo chmod 777 * -R
    ./install.sh
  6. Cek di desktop, sudah ada shortcut untuk Arduino IDE. Double click. Kalau ada warning silahkan pilih Always trust..
  7. Selesai

Terima kasih, semoga bermanfaat

 

Cara Disable Repositori PPA di Linux Mint 17.2

Kadang, kita perlu menambah repositori PPA pada linux mint untuk menginstall aplikasi tertentu. Setelah aplikasi tersebut terinstall kadang kita sudah tidak membutuhkan repo dari PPA tsb, kemudian kita ingin disable agar tidak di fetch ketika update.

Caranya adalah sebagai berikut:

  1. Buka Software Sources

    Buka Software Sources
  2. Klik PPAs

    Continue reading Cara Disable Repositori PPA di Linux Mint 17.2

Share Internet WIFI ke LAN pada Linux Mint 17.2

Berikut ini cara share koneksi internet WIFI ke LAN, prinsipnya adalah melakukan forwarding dan masquerading dari eth0 ke wlan0.

  1. Buka network setting
  2. Klik Wired > add profile…
  3. Pada bagian identify, isikan nama profile. Kemudian, pilih mac address eth0 milik kita.
  4. Pada bagian IPv4 isikan ip sesuai yang kita kehendaki, contoh ada digambar berikut ini,  kemudian klik apply
  5. Masuk terminal (CTRL+ALT+T) Continue reading Share Internet WIFI ke LAN pada Linux Mint 17.2

Keyboard Shortcut for Whisker Menu

whisker menu

To open Whisker Menu using a keyboard shortcut, do the following: from the Xfce Settings > Keyboard, on the “Application Shortcuts” tab, click “Add” and use “xfce4-popup-whiskermenu” (without the quotes) for the command. Then assign it a keyboard shortcut (make sure it’s not already in use) and that’s it.

whisker menu keyboard shortcut

 

Sumber: https://www.webupd8.org/2013/07/whisker-menu-update-brings-support-for.html

What is the difference between i386, i486, i586, i686, i786

Ever wondered what are those words i386/i486/i586/i686/i786 that comes after the name of RPM / DEB packages?

When it comes to understanding the compatibility of a package between different architectures, knowing these terms become important. The above coined terms are Processor architectures. Let’s have a look below…

i386     –     Intel i386/80386   (in 1985)          or          AMD386 / AM386 (in 1991)

i486     –     Intel i486/80486   (in 1989)          or          AMD486 / AM486 (in 1993)

i586     –     Intel Pentium         (in 1993)          or          AMD-K5 (in 1996)

i686     –     Intel Pentium Pro (in 1995)          or          AMD-K6 (in 1997)

i786     –     Intel Pentium 4      (in 2000)          or          AMD-K7 (in 1999)

Continue reading What is the difference between i386, i486, i586, i686, i786