linux
Journey Towards the Perfect Desktop Environment
· β˜• 7 min read · ✍️ noel
Many moons ago, I wrote about how discovered Archlinux. It’s nearly 6 years and Arch hasn’t let me down. Some people say that they use it at home but not on their main production system. Well I do. And even on my main production system it hasn’t let me down. I can’t remember when was the last time that Arch actually broke for me. It’s always been there. As a solid foundation on which to build my work environment.

Connecting to Internet via mobile phone in linux
· β˜• 3 min read · ✍️ noel
Let me tell you how I connected to Internet using my mobile phone (Samsung c3200) on linux using wvdial. Let me break it down in steps so it is easy to understand. Let’s get started. Step 1: plug in the phone using data cable Step 2: Running lsusb Run lsusb command. Output on my pc is like this. [noel@Daedalus ~]$ lsusb Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.

Hunt for the perfect operating system
· β˜• 5 min read · ✍️ noel
Last week one of my hard drive failed. At that time I was dual booting XP & Ubuntu from that drive, so I lost my bootloader grub. I installed ubuntu on my other drive. Howerver, I have 512 mb ram in my pc. Ubuntu was running good but at times it seemed slow & the issues with my graphic card(intel 82845g/gl Brookedale) & linux has, worsened my situation. Because of my graphic card Ubuntu crashed alot.

Automatically mount NTFS partition on boot
· β˜• 3 min read · ✍️ noel
To mount ntfs partitions we need to specify where we want to mount those partitions. By default, when you mount any partition/plug in any flash drive/insert a cd, it is mounted in /media/ directory. So we’ll create a directory in /media/. Step 1 : Create directories sudo mkdir /media/directory name replace “directory name” with the name of the directory you want to create. I want to create a directory named data, so I will….