I got myself an affordable Linux VPS account with RapidVPS

After doing some surveying and looking around the internet for a decent Linux VPS service provider, I finally settled with RapidVPS.com.

What is VPS ?
Virtual Private Server (VPS) is similar to Dedicated Server, except it runs on the same machine as other Virtual Private Server, this made possible by virtualization technology. Because it is similar to Dedicated Server in its own respect, you’ve full authority on VPS as to install any operating system that you like, root access and your own IP address. Having root access means that you’re free to install any software and administer your server as you see fit.

Why do I need VPS?
I need VPS because I want to have a cost-effective server that can run 24/7 for my software and web services since shared hosting solutions have very limited option for customization and expandibility.

I could use my personal computer for the same purpose, but given various factor (electricity bills, reliability, 24/7 uptime, hardware support, unreliable Streamyx ISP), I would rather use RapidVPS as it is the most cost-effective solution.

Why Do I choose RapidVPS?

  • Affordable price, no setup fees
  • Easy to upgrade
  • Service uptime and reliability
  • Excellent customer support
  • Offers various popular Linux operating system including latest release of Ubuntu, CentOS, Debian, Fedora Core, Gentoo

However those who want to host IRC-related software (servers, eggdrop, bnc,psybnc, etc) might be dissapointed because RapidVPS has a strict no-IRC policy on its server.

Other than that, I would recommend RapidVPS anytime if you’re seeking to get a decent VPS solution.

[tags]vps, linux, server,dedicated service, rapidvps,ubuntu,debian[/tags]

How to Shutdown and Reboot Linux PC automatically

A quick tip on how to shutdown your GNU Linux computer automatically,

Suppose you need your Linux pc to shutdown automatically at certain time, you can use this command line :

shutdown -hP 23:55

which instructs your box to power down at exactly 11:55 pm. The ‘h’ parameter instructs the program to halt the computer (init runlevel 6) and ‘P’ instructs it to power off the pc.

Note: You can also add an optional message and 20 seconds shutdown delay,

shutdown -hP 23:55 -t 20 Going to power down, let's call it a day

the delay is useful for you to finish off whatever you’re doing before the pc powers down.

Why do I use this command ?
Recently the doctor diagnose me with low blood pressure and advised me to sleep early and to eat more stuff that contains iron. So by using this command I can limit my online pc time, and let me sleep early.

I’ll show you how to shutdown your computer using countdown timer.

Here’s an example how you can shutdown your pc in one hour with 30 second delay between final warning and the actual shutdown.

shutdown -hP -t 30 60 Please save your work, the lab is going to be closed soon

you can use this command to reboot your computer too,

shutdown -r

Note that you need to have root access in order to use this command. That’s all for now, enjoy the holiday

[tags]shutdown,bash,linux,command line, gnu/linux, debian[/tags]

Linux Mint 2.1 – Bea has been released

Linux Mint project has made its latest release, 2.1 ‘Bea’ available right before Christmas.

Linux Mint is a distribution based on the latest release of Ubuntu Linux with extra non-free component such as multimedia codecs (for playing real,quicktime, mp3, windows media videos and flash plugins).

The latest release includes OpenOffice 2.1 and new artwork, replacing the one taken from Ubuntu Edgy Eft.

Additionally, Linux Mint also includes mintWifi, which help users connect to wireless network for the first time without having to rely on initial internet connection (to download drivers/howto/cabextract/etc).

Who Should use Linux Mint?

Linux Mint is ideal for those who want to use an easy Linux desktop operating system that can play proprietary multimedia files out from the box (aac,mp3,real media, 3gp, quicktime) without much hassle.

The current release Linux Mint is derived from Ubuntu 6.10 Edgy Eft and is compatible with Edgy Eft repositories.

[tags]ubuntu,edgy eft,linux,debian,mint,open source[/tags]

Winefish – GTK+ based LaTeX Editor for Linux

Winefish is a GTK+ LaTeX editor intended for experienced users. Unlike Lyx, Winefish emphasis on preparing documents using purely LaTeX input without bloated features offered by competing applications. Winefish is also useful to those who are just started to learn LaTeX command.

In keeping with LaTeX theme of wanting users to concentrate on writing the actual document instead of their looks, Winefish has no preview or WYSIWYG feature.

LaTeX is handy for preparing professionally written documents, it features autocompletion support, autotext, syntax highlighting, custom search and replace pattern support, shortcuts and function reference browser for LaTeX packages. Additionally LaTeX also feature spell checker and template support for quick template generators.

All these features make Winefish is preferable for newbies and experience users in preparing professionally looking documents using LaTeX.

Where can I get Winefish
Winefish is available from Ubuntu, Fedora Core and OpenSUSE repositories or it can be downloaded from its project website : http://winefish.berlios.de/

[tags]latex,tex,winefish,lyx,linux,ubuntu[/tags]

Howto Install VMWare tools on Ubuntu 6.10 Edgy Eft

One of my friend has prepared a howto on how to install VMware tools on Ubuntu Edgy Eft. I find it interesting because he has never use Ubuntu or any debian-based distro before, yet he has published a quick way to install VMware tools on Edgy Eft.

Considering the fact that I have never use debian before, and this in my first experience on a debian based distro, i did some googling and using the trial and error method, I’ve come to the conclusion that the step below is the best way to install vmware tools 5.5.2 on Ubuntu 6.10 Edgy Eft..

Read his complete post here : Installing VMware Tools 5.5.2 on Ubuntu 6.10 Edgy Eft

[tags]vmware,ubuntu,edgy eft, ubuntu 6.10, linux, debian[/tags]

Burn CD images in Linux command line

This tip will be brief, it concerns about writing bootable linux iso images to CDROM. What you need is cdrecord, cd-writer drive, blank cd-r and iso image (and maybe mkisofs).

Howto burn ISO images to CD
Insert the blank CD-R, and run

cdrecord -v speed=4 dev=/dev/cdrom ubuntu-6.10-desktop-i386.iso

and you’re done.

Howto burn (backup) files to Data CD
You’ll need mkisofs and cdrecord to burn your data files to a CD,

Run,

mkisofs -r -J -o yourbackup.iso /home/path_to/your_files

cdrecord -v dev=/dev/cdrom  -data  yourbackup.iso

and that’s the easiest way to burn cds on command-line linux.

[tags]linux,cdrom,iso9660,joliet,ubuntu,cdrecord,mkisofs,debian[/tags]