Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
title Gobolinux - Graphic Desktop
kernel (hd0,1)/System/Kernel/boot/kernel vga=0 root=/dev/hda2 Boot=Graphic
title Gobolinux - Console
kernel (hd0,1)/System/Kernel/Boot/kernel vga=o root=/dev/hda2
title Gobolinux - Framebuffer Console
kernel (hd0,1)/System/Kernel/Boot/kernel vga=791 root=/dev/hda2Posted By: minotaurOk guys! Wish me luck!In italy I would say you "in the wolf's mouth" (don't ask me the meaning), but I really don't know the english equivalent, so good luck :D
Posted By: MichaelIt doesn't really matter where they are - the divider is just so that debian doesn't mess with your own settings when you upgrade kernels. The "Other operating systems" thing is just a title to separate things, it doesn't change anything. So anywhere after the "###END DEBIAN ..." is fine.Good point, my fault.
Edited to clarify after seeing m@cCo's post: if you put them before the ###END DEBIAN ... line, they may get wiped in a future apt-get upgrade, so put them afterwards.
sudo your_editor_here /boot/grub/menu.lstsu #it will ask you for root password
your_editor_here /boot/grub/menu.lst
] su
[enter the root password you set during the install here.]
[If you're on the livecd, you only have to do the part after this, not the su.]
] mkdir mint
] mount /dev/hdb1 mint
] nano -w mint/boot/grub/menu.lstYou can make the changes given there and restart. Ctrl-O saves, Ctrl-X exits.Posted By: minotaurIndeed, Michael, I opened a terminal and typed the `sudo nano -w /boot/grub/menu.lst`, command. I had results! I received a long list (with the grub procedures, right?). But what to do there? How can pull out the Gobo grub?It's a text editor. You move around with the arrows and type. If you're running it in a graphical environment, you can just copy and paste in the text m@cCo provided above in post #32 by selecting it and then using the middle mouse button (or pressing the left and right at the same time) in the terminal window, once you've put the cursor where you want the text to go. If you're at the bare console, you'll have to type it in.
cp /boot/grub/menu.lst /boot/grub/menu.lst.backup ; { cat /boot/grub/menu.lst ; echo -e "\ntitle Gobolinux - Graphic Desktop\nkernel (hd0,1)/System/Kernel/boot/kernel vga=0 root=/dev/hda2 Boot=Graphic\ntitle Gobolinux - Console\nkernel (hd0,1)/System/Kernel/Boot/kernel vga=o root=/dev/hda2\ntitle Gobolinux - Framebuffer Console\nkernel (hd0,1)/System/Kernel/Boot/kernel vga=791 root=/dev/hda2"; } | sudo tee /boot/grub/menu.lst
Posted By: minotaur"...you can edit the file from Gobo (either installed or from the live CD) by mounting the partition and editing it there as root".Using the instructions I posted in my last post (the code block right after that line you quoted).
----------------------------------------
How can I do this?
Posted By: minotaurTried the terminal way:Did you put a space between /boot/grub/menu.lst and /boot/grub/menu.lst.backup? It is telling you that you're missing the destination file which you want to copy to.
cp: missing destination file operand after `/boot/grub/menu.lst/boot/grub/menu.lst.backup'
Try `cp --help' for more information
bash: {cat/boot/grub/menu.lst: No such file or directory
sudo nano -w /boot/grub/menu.lsttitle Gobolinux - Graphic Desktop...to this:
kernel (hd0,1) /System/Kernel/boot/kernel vga=0 root=/dev/hda2 Boot=Graphic
title Gobolinux - Console
kernel (hd0,1) /System/Kernel/Boot/kernel vga=o root=/dev/hda2
title Gobolinux - Framebuffer Console
kernel (hd0,1) /System/Kernel/Boot/kernel vga=791 root=/dev/hda2
title GoboLinux - Graphic Desktop
root (hd0,1)
kernel /System/Kernel/Boot/kernel root=/dev/hda2 vga=0 Boot=Graphic
title Gobolinux - Console
root (hd0,1)
kernel /System/Kernel/Boot/kernel root=/dev/hda2 vga=0
title Gobolinux - Framebuffer Console
root (hd0,1)
kernel /System/Kernel/Boot/kernel root=/dev/hda2 vga=791
cd /boot/grublssudo nano menu.lstsudo cp /boot/grub/menu.lst /boot/grub/menu.lstsudo nano /boot/grub/menu.lstPosted By: minotaurAh, sorry - of course you can't write there as a regular user. My mistake. It also looks like you missed out some spaces that need to be there, and have o instead of 0 once or twice. Copy and paste this, don't try to type it in - the spaces are important, and so is "vga=0".
cp: cannot create regular file `/boot/grub/menu.lst.backup': Permission denied.
bash: {cat/boot/grub/menu.lst: No such file or directory.
cp /boot/grub/menu.lst ~/menu.lst.backup ; { cat /boot/grub/menu.lst ; echo -e "\ntitle Gobolinux - Graphic Desktop\nkernel (hd0,1)/System/Kernel/boot/kernel vga=0 root=/dev/hda2 Boot=Graphic\ntitle Gobolinux - Console\nkernel (hd0,1)/System/Kernel/Boot/kernel vga=o root=/dev/hda2\ntitle Gobolinux - Framebuffer Console\nkernel (hd0,1)/System/Kernel/Boot/kernel vga=791 root=/dev/hda2\n"; } | sudo tee /boot/grub/menu.lst
Posted By: minotaurAs for the editor, I don't understand exactly the way we use it! (See, I came from Windows!) You don't mean the terminal! Where is this editor in Linux Mint and how can I use it?As I said before, you need to run `sudo nano -w /boot/grub/menu.lst`, which I think you said you already did. That is a text editor. You use the arrow keys to move the cursor around, and you type like you usually would. Ctrl-O saves, Ctrl-K deletes a line, Ctrl-X exits. You can select text in one program (in a graphical interface), say the browser, and paste it in by middle-clicking in the terminal window with the file open. If you don't have a middle button, use the left and right simultaneously.