Forum: Getting Started and Choosing a Distro Jul 31st, 2008 |
| Replies: 5 Views: 873 Re: Problems installing Ubuntu So, can I suppose that you have installed succesfully Ubuntu?
Open terminal.
If you have Gnome:
gksudo gedit /boot/grub/menu.lst
KDE:
kdesu kate /boot/grub/menu.lst |
Forum: Getting Started and Choosing a Distro Jul 30th, 2008 |
| Replies: 5 Views: 873 Re: Problems installing Ubuntu Install Ubuntu using the alternative cd and then edit your /boot/grub/menu.lst
title Ubuntu, kernel 2.6.20-15-generic
root (hd0,5)
kernel /boot/vmlinuz-2.6.20-15-generic... |
Forum: Getting Started and Choosing a Distro Jul 29th, 2008 |
| Replies: 5 Views: 873 |
Forum: Shell Scripting Jul 14th, 2008 |
| Replies: 6 Views: 2,018 |
Forum: Getting Started and Choosing a Distro Jul 14th, 2008 |
| Replies: 66 Views: 9,589 Re: Favorite Distro I didn't find in the options Debian.
I think it's one of the most stable distributions, having the greatest variety of packages. |
Forum: Python Jul 13th, 2008 |
| Replies: 1 Views: 476 Re: Prime numbers Problem solved. The problem is line 9 and is solved if it is removed because all natural numbers can be divided by 1.
A more elegant solution:
from math import sqrt
from math import floor
def... |
Forum: Shell Scripting Jul 13th, 2008 |
| Replies: 6 Views: 2,018 |
Forum: Python Jul 13th, 2008 |
| Replies: 1 Views: 476 Prime numbers I have just begun to learn python, so my question is probably silly. Just for practice I want to write a function which calculates the first n primes. prime computes some prime numbers and keeps them... |