RE: [Fwd: Re: [SLE] Please Desperate Help to recover.]
21 Feb
2005
21 Feb
'05
18:27
I have set the system to init 3 and then run yast in text mode but as soon as I run the section install/remove software, it just hangs with the message initializing. If I install SuSE 8 onto another hard drive should I then copy from the old hard drive to the new installation with the command: first cd onto the mounted file system then use the command cp -rp * / Alternatively if I boor into init 3 how would I go about re-installing the system or check to see what files where missing extremely grateful for all the very kind help John Proctor. >From: slaza@xs4all.nl >To: suse-linux-e@suse.com >Subject: [Fwd: Re: [SLE] Please Desperate Help to recover.] >Date: Mon, 21 Feb 2005 13:40:19 +0100 (CET) > >John, > >Don't try to enter into KDE or any X-stuff, if the system is corrupt. >Boor into init level 3 and try to do everything from the terminal. > >I would still recommend to make a backup and reinstall the whole thing, it >will save you a lot of time... > >Regards, > > >Sandor > >---------------------------- Original Message ---------------------------- >Subject: Re: [SLE] Please Desperate Help to recover. >From: "John Proctor" <jproctor0@hotmail.com> >Date: Mon, February 21, 2005 12:16 pm >To: marktaff@comcast.net >Cc: suse-linux-e@suse.com >-------------------------------------------------------------------------- > >Hi Mark thanks for the great advice I will try and perform these actions >to-day( when I get to the college), all though I think I tried to run yast > from the text prompt and when I choose software install it started to >work but then just hang having said that I may not have been in init 3, >is it possible to run yast from the installation cd I have the whole set( >7 cds) also the problem is that if I boot up using the installation cd >(via boot system from disk) I can log into the KDE or text mode but cant >run any software or commands such as top, telnet, ftp etc again I am >extremely grateful for your kind help John Proctor. > >ps if I try to boot from HD it gets so far and hangs ( I think there is a >few files missing) > > > >From: "Mark A. Taff" <marktaff@comcast.net> > >To: suse-linux-e@suse.com > >Subject: Re: [SLE] Please Desparate Help to recover. > >Date: Sun, 20 Feb 2005 13:22:54 -0800 > > > >On Sunday 20 February 2005 13:12, Chris H wrote: > > > Mark A. Taff wrote: > > > >On Sunday 20 February 2005 12:20, John Proctor wrote: > > > >>I wonder if any body could please give me some advice, I have SuSE >8, > >and > > > >>via the system disk I can boot up from the hard disk but when I try >to > >go > > > >>into Yast it just hangs, > > > > > > Remember having a similar problem in the 8 series as well. One thing >you can do is as follows: > > > > > > 1. Boot into the system in any manner you can and access the command >line shell via cntrl-alt-F3 for example. > > > 2. enter the root credentials and enter init 3 at the prompt, this >will drop you into singel user mode with no X > > > 3. If you have the install discs available, then enter yast at the >command prompt and re-install all yast components > > > 4. If you dont have the install discs available, set the installation >source to a known ftp (remote) installation source and proceed with >instruction (3) above. > > > 5. Prior to leaving yast, run the update to get the latest updates to >yast for your release. > > > 6. Exist yast, and run SuSEconfig manually just to be sure. > > > 7. enter init 5 and this will bring you back to your X session prompt. >8. test yast to see if it works for you. > > > 9. if it fails, then just repost with the tail error log in line as >text. The log can be found in /var/log/y2log and tail in a terminal as >follows; > > > $ tail /var/log/y2log > > > $ ----> lots of output (copy to email via cut and paste) > > > > > > This should get you working again however without the last items...:) > > > > > > /ch > >Chris, > > You sent this to me, not to the list. ;-) John might find it more > >valuable > >on the list. > >-- > >Mark A. Taff > ><< attach3 >> > > > >-- >Check the headers for your unsubscription address >For additional commands send e-mail to suse-linux-e-help@suse.com >Also check the archives at http://lists.suse.com >Please read the FAQs: suse-linux-e-faq@suse.com > > > > > > >-- >Check the headers for your unsubscription address >For additional commands send e-mail to suse-linux-e-help@suse.com >Also check the archives at http://lists.suse.com >Please read the FAQs: suse-linux-e-faq@suse.com > >
21 Feb
21 Feb
20:31
New subject: [Fwd: Re: [SLE] Please Desperate Help to recover.]
On Mon, 21 Feb 2005 18:27:12 +0000 "John Proctor" <jproctor0@hotmail.com> wrote: > I have set the system to init 3 and then run yast in text mode but as soon > as I run the section install/remove software, it just hangs with the message > initializing. > If I install SuSE 8 onto another hard drive should I then copy from the old > hard drive to the new installation with the command: first cd onto the > mounted file system then use the command cp -rp * / > Alternatively if I boor into init 3 how would I go about re-installing the > system or check to see what files where missing extremely grateful for all > the very kind help John Proctor. Yes, you can install onto another drive and copy, but I would use a rescue system rather than copy a live system. The reason is that there are some files (mostly in /var) that are open. My recommendation might be a bit easier: 1. Boot the installation media. 2. Do an upgrade install, but force YaST to reinstall. This should correct your problem in much less time. If you want to install to a new drive and copy, I suggest you do the install, then boot from the rescue disk (or any other standalone Linux); Mount the new installation read-only Mount the target at read-write. cp -rp old/* new When the copy completes, then edit new/etc/fstab and change the mount points. The third thing is that you need to update the Grub settings. The installation will set up Grub in the wrong place. You can fix this by doing a chroot to new Then run grub. (You can do info grub for the docs) Here are the commands you will probably need assuming root is on /dev/hda1: ---------------- From the info page: grub> root (hd0,0) If you are not sure which partition actually holds these files, use the command `find' (*note find::), like this: grub> find /boot/grub/stage1 This will search for the file name `/boot/grub/stage1' and show the devices which contain the file. Once you've set the root device correctly, run the command `setup' (*note setup::): grub> setup (hd0) This command will install GRUB on the MBR in the first drive. If you want to install GRUB into the "boot sector" of a partition instead of the MBR, specify a partition into which you want to install GRUB: grub> setup (hd0,0) --------------------------- If you use LILO, then edit /new/etc/lilo.conf Set it to point to the appropriate kernels. The simply run /sbin/lilo This will install lilo into the MBR. -------------------------- -- Jerry Feldman <gaf@blu.org> Boston Linux and Unix user group http://www.blu.org PGP key id:C5061EA9 PGP Key fingerprint:053C 73EC 3AC1 5C44 3E14 9245 FB00 3ED5 C506 1EA9
7239
Age (days ago)
7239
Last active (days ago)
1 comments
2 participants
participants (2)
-
Jerry Feldman
-
John Proctor