[AJUDA] Arranque de ubuntu 7.10

Iniciado por filipe01, 18 de Março de 2008, 08:59

tópico anterior - próximo tópico

filipe01

Sera que alguem poderia dar uma ajudinha

clcampos

Bem, antes de começar não faça nada se as informações abaixo estiverem incorretas.

Pelo que entendi seu HD esta particionado assim:


  • /dev/sda1: Reservado pela Compaq
  • /dev/sda2: Windows
  • /dev/sda3: Ubuntu
  • /dev/sda4: swap

Se for isto mesmo vamos lá.


  • 1o. Boot com LiveCD
  • 2o. Tornar a partição da instalação disponível (montá-la)

sudo   mount   /dev/sda3   /mnt


  • 3o. Backup do arquivo fstab

sudo   cp    /mnt/etc/fstab    /mnt/etc/fstab.bkp.20080327


  • 4o. Backup do arquivo menu.lst

sudo   cp    /mnt/boot/grub/menu.lst    /mnt/boot/grub/menu.lst.bkp.20080327


  • 5o. Editando o fstab

sudo   gedit   /mnt/etc/fstab


  • 6o. Proceda com as alterações abaixo (Estão em negrito)

Citar
# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
# /dev/sda3
/dev/sda3      /               ext3    defaults,errors=remount-ro 0       1
# /dev/sda1
/dev/sda1      /media/sda1     ntfs    defaults,umask=007,gid=46 0       1
# /dev/sda2
/dev/sda2      /media/sda2     ntfs    defaults,umask=007,gid=46 0       1
# /dev/sda4
/dev/sda4      none            swap    sw              0       0
/dev/hda        /media/cdrom0   udf,iso9660 user,noauto,exec 0       0


  • 7o. Editando do arquivo menu.lst

sudo   gedit    /mnt/boot/grub/menu.lst


  • 8o. Proceda com as alterações abaixo (Estão em negrito)

Citar
# menu.lst - See: grub(8), info grub, update-grub(8)
#            grub-install(8), grub-floppy(8),
#            grub-md5-crypt, /usr/share/doc/grub
#            and /usr/share/doc/grub-doc/.

## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry number 0 is the default if the command is not used.
#
# You can specify 'saved' instead of a number. In this case, the default entry
# is the entry saved with the command 'savedefault'.
# WARNING: If you are using dmraid do not use 'savedefault' or your
# array will desync and will not let you boot your system.
default      0

## timeout sec
# Set a timeout, in SEC seconds, before automatically booting the default entry
# (normally the first entry defined).
timeout      10

## hiddenmenu
# Hides the menu by default (press ESC to see the menu)
#hiddenmenu

# Pretty colours
#color cyan/blue white/blue

## password ['--md5'] passwd
# If used in the first section of a menu file, disable all interactive editing
# control (menu entry editor and command-line)  and entries protected by the
# command 'lock'
# e.g. password topsecret
#      password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
# password topsecret

#
# examples
#
# title      Windows 95/98/NT/2000
# root      (hd0,0)
# makeactive
# chainloader   +1
#
# title      Linux
# root      (hd0,1)
# kernel   /vmlinuz root=/dev/hda2 ro
#

#
# Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST

### BEGIN AUTOMAGIC KERNELS LIST
## lines between the AUTOMAGIC KERNELS LIST markers will be modified
## by the debian update-grub script except for the default options below

## DO NOT UNCOMMENT THEM, Just edit them to your needs

## ## Start Default Options ##
## default kernel options
## default kernel options for automagic boot options
## If you want special options for specific kernels use kopt_x_y_z
## where x.y.z is kernel version. Minor versions can be omitted.
## e.g. kopt=root=/dev/hda1 ro
##      kopt_2_6_8=root=/dev/hdc1 ro
##      kopt_2_6_8_2_686=root=/dev/hdc2 ro
# kopt=root=UUID=0a064ee0-d689-4916-b03c-d321f9063b3b ro

## Setup crashdump menu entries
## e.g. crashdump=1
# crashdump=0

## default grub root device
## e.g. groot=(hd0,0)
# groot=(hd0,2)

## should update-grub create alternative automagic boot options
## e.g. alternative=true
##      alternative=false
# alternative=true

## should update-grub lock alternative automagic boot options
## e.g. lockalternative=true
##      lockalternative=false
# lockalternative=false

## additional options to use with the default boot option, but not with the
## alternatives
## e.g. defoptions=vga=791 resume=/dev/hda5
# defoptions=quiet splash

## should update-grub lock old automagic boot options
## e.g. lockold=false
##      lockold=true
# lockold=false

## Xen hypervisor options to use with the default Xen boot option
# xenhopt=

## Xen Linux kernel options to use with the default Xen boot option
# xenkopt=console=tty0

## altoption boot targets option
## multiple altoptions lines are allowed
## e.g. altoptions=(extra menu suffix) extra boot options
##      altoptions=(recovery) single
# altoptions=(recovery mode) single

## controls how many kernels should be put into the menu.lst
## only counts the first occurence of a kernel, not the
## alternative kernel options
## e.g. howmany=all
##      howmany=7
# howmany=all

## should update-grub create memtest86 boot option
## e.g. memtest86=true
##      memtest86=false
# memtest86=true

## should update-grub adjust the value of the default booted system
## can be true or false
# updatedefaultentry=false

## should update-grub add savedefault to the default options
## can be true or false
# savedefault=false

## ## End Default Options ##

title      Ubuntu 7.10, kernel 2.6.22-14-generic
root      (hd0,2)
kernel      /boot/vmlinuz-2.6.22-14-generic root=/dev/sda3 ro quiet splash
initrd      /boot/initrd.img-2.6.22-14-generic
quiet

title      Ubuntu 7.10, kernel 2.6.22-14-generic (recovery mode)
root      (hd0,2)
kernel      /boot/vmlinuz-2.6.22-14-generic root=/dev/sda3 ro single
initrd      /boot/initrd.img-2.6.22-14-generic

title      Ubuntu 7.10, memtest86+
root      (hd0,2)
kernel      /boot/memtest86+.bin
quiet

### END DEBIAN AUTOMAGIC KERNELS LIST

# This is a divider, added to separate the menu items below from the Debian
# ones.
title      Other operating systems:
root


# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sda1
title      Windows Vista/Longhorn (loader)
root      (hd0,0)
savedefault
makeactive
chainloader   +1


# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sda2
title      Windows Vista/Longhorn (loader)
root      (hd0,1)
savedefault
makeactive
chainloader   +1


Espero que funcione.

[]'s

Cristiano
Cristiano/Timóteo - MG
.: Como Fazer Perguntas de Forma Inteligente :.                
Com dúvida? pesquise!

filipe01

clcampos desculpe a demora na resposta mas fiquei sem internet e nao tive como responder, ao fazer sudo gedit /mnt/etc/fstab

aparece me a dizer
Citarsudo gedit: command no found

ja experimentei tambem o  sudo gedit /mnt/boot/grub/menu.ls e sem sucesso aparece sempre o texto
Citarsudo gedit: command no found

tambem experimentei substituir o ficheiro fstab por um ja editado por mim com as configuraçoes que mencionou e diz que no e possivel substituir

Obrigado pela força ccampos
abraço


clcampos

A sim, vendo aquela mensagem em que colocou várias imagens vi que você esta usando o Kubuntu, ou seja o editor que deve usar é o dele, então substitua sudo gedit para sudo  kate (se não me engano) nas mensagens que esta dando erro.
Cristiano/Timóteo - MG
.: Como Fazer Perguntas de Forma Inteligente :.                
Com dúvida? pesquise!

filipe01

Logo a noite ja vejo se as suas dicas dao, agra nao estou em casa.. obrigado ccampos

filipe01

Fiz o que voce me endicou e continua parando na barra de loading  :(


clcampos

De uma lida no tópico problema ao iniciar, espero que ele te ajude.
Cristiano/Timóteo - MG
.: Como Fazer Perguntas de Forma Inteligente :.                
Com dúvida? pesquise!

filipe01

É o mesmo que me aprece....Obrigado  :)

Mas infelizmente ainda nao esta resolvido o problema!!! :-[

Cumprimentos

filipe01

Muito obrigado ccampos  :)

Ja esta dando o Ubuntu

Desinstalei como me tinham dito aqui no forum e instalei o ubuntu 8.04 e esta rodando numa boa, obrigado pela forcinha que voce deu  8)

So mais uma coisa como posso configurar a minha placa Grafica  e uma Nvidio Geforce 7000M

Obrigadao

Abraço

clcampos

Olha eu instalei a minha nvidia 8400Gt com o envy, mas não sei como iria rolar com o 8.04.
Cristiano/Timóteo - MG
.: Como Fazer Perguntas de Forma Inteligente :.                
Com dúvida? pesquise!

filipe01

Instalei o envy 
Citar
sudo apt-get install envy

e disse que nao aquele nome estava incorrecto e para experimentar outros, tentei outros nomes que me referiu la na consola e deu consegui instalar o envy e consequentemente a minha placa grafica :D:D

ja esta a rolar D:D

So mais uma coisa, eu trabalho com o dreanwaver e com o Visual Studio dao para emular com o wine sem nenhum problema??

Obrigado Cristiano  :)


clcampos

Tem um link na mensagem anterior que te levará a uma mensagem explicando como instalar o envy.
Cristiano/Timóteo - MG
.: Como Fazer Perguntas de Forma Inteligente :.                
Com dúvida? pesquise!

madeinnordeste

filipe01
Já consegui usar o wine para o dreamweaver, mas nao a versão CS3, ultimamente li um post interessante, de como instalar uma maquina virtual e o SO que for preciso nela.

segue o link:
http://www.dalloglio.net/58


Tenho um ACER ASPIRE 5520, mas nao tô conseguindo instalar o ubuntu de jeito nnehum :(

Abzs a todos
"Um passo a frente e vc não estará no mesmo lugar"
Chico Science

filipe01

madeinnordeste pode explicar  em que parte nao da?? tipo se trava se fica parado com um ecra preto


obrigado ccampos valeu muito obrigado :D:D