Category Archives: Artwork

ഒരു ഉബുണ്ടു ഗിയര് : ഹോംമേഡ്

വെറുതേ കളയുന്ന പാഴ് വസ്തുക്കളില് നിന്ന് പോലും നമുക്ക് രസകരമായ ചില സാധനങ്ങള് ഉണ്ടാക്കാം. അതുപോലെ എന്റെ വീട്ടില് എന്റെ അമ്മ പിസ്ത തൊണ്ട് കൊണ്ട് ഉണ്ടാക്കിയ ഒരു അലങ്കാര വസ്തുവിന്റെ ചിത്രമാണു് താഴെ കൊടുത്തിരിക്കുന്നത്. എങ്ങനെ ഉണ്ട് ? നല്ലതല്ലേ ? ഐഡിയ എന്റേതു തന്നെയാണു. ഇപ്പോള് വീട്ടില് വരുന്ന എല്ലാവരും ഇതു കണ്ട് ഉബുണ്ടു എന്താണെന്ന് ചോദിക്കും. പിന്നെ എന്റെ ക്ലാസ്സ് തുടങ്ങുകയായി. അവസാനം അവര് ഉബുണ്ടു കൊണ്ടു പോയി ഇന്സ്ടാള് ചെയ്യുന്നു. ഇതുവരെ നാട്ടില് 15 ല് കൂടുതല് വീടുകളില് ലിനക്സ് ഉപയോഗിക്കുന്നു. അതില് പലതും ഇന്സ്ടാല് ചെയ്തത് ഞാന് തന്നെയാണു. കണ്ടില്ലെ ലിനക്സിന്റെ ഒരു പ്രചാരം. പിന്നെ അവര് അതില് ഏറ്റവും ഇഷ്ടപ്പെടുന്നത് വൈറസ് കയറാത്തതും പിന്നെ സ്പീഡും ആണു്.

ubuntu gear

2 Comments

Filed under Artwork, Ubuntu

Changing Ubuntu Bootsplash

sudo apt-get install startupmanager

Be sure to set the resolution to 1024×768.

Add the ***.so file under Manage usplash themes (Downloaded from GNOME Look)

Widescreen

Startupmanager doesn’t support those resolutions so you have to do something else.

Start by adding the .so file as previous described. Don’t mind the resolution.

sudo apt-get install hwinfo
sudo hwinfo --framebuffer

Look for your optimal resolution 24bit.
Remember the mode number of that resolution. (On my system 1440×900 24 bit is mode 0x365)

sudo gedit /boot/grub/menu.lst

Look for your kernel, a line like this

kernel /boot/vmlinuz-2.6.24-12-generic xxx ro splash vga=0x365

Change the vga parameter to your framebuffer mode.

sudo gedit /etc/usplash.conf

Change to your resolution

Hope you enjoy it.

Leave a comment

Filed under Artwork, Linux, Tips, Ubuntu

Making GRUB Splashimages

Here is a simple way to make your own Grub Splashimage:

  1. Create your own Graphic image.png
  2. convert -resize 640x480 -colors 14 image.png image.xpm && gzip image.xpm
  3. copy image.xpm to /boot/grub/
  4. vim /boot/grub.menu.lst
  5. Add the following line
splashimage (hd0,1)/boot/grub/image.xpm

Note: Assuming your Linux partition as /dev/hda2

Comments Off on Making GRUB Splashimages

Filed under Artwork, Linux, Tips, Ubuntu