Friday, September 5, 2008

Linux distributions for Parallel Computing

In http://en.wikipedia.org/wiki/Beowulf_(computing)

you can find a list of live linux distributions for parallel computing

Tuesday, June 24, 2008

Configurando el mouse en mi casa

Configurando el mouse en mi casa

en consola
# gpm -m /dev/ttyS0 -t mman


Y en /etc/X11/xorg.conf

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/ttyS0"
Option "Protocol" "MouseMan"
Option "Emulate3Buttons" "off"
EndSection

Saturday, March 29, 2008

Mediubuntu

Since the development of Automatix will not continue, use the repository

http://www.medibuntu.org/

to install the codecs in linux.

Tuesday, March 4, 2008

This is not a Linux tip

in Window

sysInternals.

This is a seperate Microsoft facility.

Here is the linkt ot the Process Explorer -> http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

is a good program to see what is going on in the machine


Now
http://www.mojopac.com/
is a good virtual machine for windows

Friday, February 22, 2008

Resolution in the KDM

The KDM greeter was showing a bad resolution I just commented the line
and added the red line in /etc/X11/xorg.conf

Section "Screen"
Identifier "Default Screen"
Device "nVidia Corporation NV18 [GeForce4 MX 4000]"
Monitor "PHILIPS 107E"
Defaultdepth 24
SubSection "Display"
Depth 24
# Virtual 1400 1050
# 1280x1024 is the maximum resolution of the screen, according to the marketing info I found
# in the internet
Virtual 1280 1024
Modes "1024x768@60" "1024x768@43" "1024x768@70" "1152x864@75" "1024x768@75" "1280x960@60" "1024x768@85" "1280x1024@60" "832x624@75" "1400x1050@60" "800x600@60" "800x600@85" "800x600@75" "800x600@72" "800x600@56" "640x480@85" "640x480@75" "640x480@72" "640x480@60"
EndSubSection
EndSection

Saturday, February 2, 2008

User Agent Switcher

This is a wonderful add-on for firefox that makes webpages believe that you are using in fact MS Explorer. This is really useful with some problematic webpages

https://addons.mozilla.org/en-US/firefox/addon/59

http://chrispederick.com/work/user-agent-switcher/

FireFox Alexa Toolbar User Agent Hack for MegaUpload and SexUploader

(taken from http://www.mydigitallife.info/2006/10/18/bypass-and-crack-megaupload-and-sexuploader-download-slots-and-size-limit-with-alexa-toolbar-hack/)

  1. Download and install the User Agent Switcher extension for FireFox.
  2. Restart the FireFox web browser after installation ended.
  3. Go to Tools -> User Agent Switcher -> Options.
  4. Then click on User Agents and then click on Add.
  5. Key in the following information:

    Description: MegaUpload
    User Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar)

  6. Exit by clicking on OK twice.
  7. Whenever you want to download from MegaUpload or SexUploader, go to Tools -> User Agent Switcher and select MegaUpload as FireFox’s temporary user agents.
  8. After downloading the files, you may want to switch back to original user agents, by selecting Default.

Sunday, December 16, 2007

Migrating from Fedora 4 to Ubuntu 7.10

I bought a new hard disk. And I installed Ubuntu 7.10 on it (/dev/hdb). Ubuntu did not want to recognize my partition where I had previously installed Fedora (/dev/hda3). I had to install

$sudo apt-get install lvm2

And then I followed the instructions on:

http://pissedoffadmins.com/index.php?entry=entry070507-105201

Now, just add at the bottom of /boot/grub/menu.lst the following lines to

title Fedora Core 4
root (hd0,1)
chainloader +1
boot

save the file and reboot! See this



To change the console font (when one gives Ctrl+Alt+F1) add the vga=771 to the corresponding line in /boot/grub/menu.lst. For example:

title Ubuntu 7.10, kernel 2.6.22-14-generic
root (hd1,0)
kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=44d34aca-a862-4a4c-99b8-b2ba480527cb ro quiet vga=771
initrd /boot/initrd.img-2.6.22-14-generic
quiet

The table of resolutions is: from http://ubuntuforums.org/showthread.php?t=123920

Code:
                640x480 800x600 1024x768 1280x1024 1600x1200
---------------+-------+-------+--------+---------+---------
256 (8 bit) | 769 771 773 775 796
32,768 (15 bit)| 784 787 790 793 797
65,536 (16 bit)| 785 788 791 794 798
16.8M (24 bit) | 786 789 792 795 799








I "installed the super user". To do this, I just did:

$sudo passwd root

And I assigned a password to root





I removed the NDIVIA logo at startup: Edit /etc/X11/xorg.conf and change the corresponding lines to:

 Section "Device"
...
Driver "nvidia"
...
Option "NoLogo" "true"
EndSection

The KDM has a keyboard configuration in English. But my keyboard has a german distribution. This makes it problematic to ingress passwords. To change the keyboard edit /etc/X11/xorg.conf and change the correponding line

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
EndSection


DO NOT run
$ sudo dpkg-reconfigure -phigh xserver-xorg
as it is recommended in the comments of that file!






To install the mouse in the console mode (Ctrl+Alt+F1) do
$ sudo apt-get install gpm
and then reboot the computer.