Ben Chuanlong Du's Blog

And let it direct your passion with reason.

Tips on Installing Debian Series of Linux Distributions

Before Installation

Debian Specific

  1. You'd better not install back ported Debian images, as it might cause issues with other software (e.g., VirtualBox). It is suggested that you use Debian test.

Other Debian-based Linux Distributions

  1. Download the right ISO image of the Linux distribution that you want to install.

  2. Create …

Install Newer Version of SQLite3 on Debian Jessie

  1. Open /etc/apt/sources.list and add the following line to the end.

    deb http://www.backports.org/debian jessie-backports main contrib non-free
    

    or

    deb http://ftp.us.debian.org/debian/ jessie-backports main contrib non-free
    deb-src http://ftp.us.debian.org/debian/ jessie-backports main contrib non-free
    
  2. Make sure the GPG …

Missing Grub Menu of Windows Operating System

I came across this problem after I installed both Debian and Windows 7 system on my laptop. After searching online, I found a solution to this problem. 1. Open /etc/default/grub as root user and make sure the following line is somewhere in the file and uncommented:

    GRUB_DISABLE_OS_PROBER=false …

Install the GSL Library

GSL is an advance C/C++ library that is widely used. To install GSL, you can download the source file and following instruction in the included README and INSTALL document. For Unix/Linux users, the GSL library is often availabe in the repository. For example, you can use the following …