Fedora Linux Support Community & Resources Center
  #1  
Old 7th June 2012, 02:44 AM
Zen2012 Offline
Registered User
 
Join Date: Jun 2012
Location: Scotland, UK
Posts: 3
windows_7firefox
Question F17. Installed fine now wont reboot after adding RealPlayer!

Hi Everybody,

* Edit: Thread title should have said "boot" not "reboot". My brain needs the latter - sorry.

Apart from a short stint with Mandrake (when it was still called that) years ago I am a complete Linux newbie. Absolutely so with Fedora. So, if you can help please keep it simple.

Installed F17 from DVD onto a small Toshiba 500gig USB3 hard drive and, after a few teething problems with my desktop PC's BIOS and having to unplug my 2 internal hard drives (Windows/Data), I finally got F17 installed and running fine. After some humongous updating I then discovered the "no mp3 or video codec's" thing...

Sometime later I have F17 playing mp3's and video's with no problems - apart from an installation of RealPlayer (and over a dozen needed support files) which then refused to do anything (seemingly) beyond spin the busy pointer for a while then give up without doing anything noticeable. Happy that all is going well regardless I played around for a while with my new Linux - setting up desktop pic, screen saver, and so on. Finally, I shut down, reconnected my internal Data drive (keeping the Windows one unplugged), rebooted into F17, and copied a lot of important data over from the newly connected internal data drive. Finally, happy all was well, I switched off for the night and slept the sleep of the contented.

Next day, first thing, F17 refused to boot with a declaration of "cannot open font file True".

I reboot thinking "safe boot mode" but there is none (could have sworn I saw one).

Reboot again into the advanced option and get the original font message twice along with messsages about starting Sendmail client and agent. This has me head-scratching wondering what email has to do with anything at this point. However, I connect my router to the PC and instantly note the USB3 hard disk light flicker.

This produced a message about "...(cant remember) NFS file locking service" ???

Then a flurry of further starting and stopping of the Sendmail Client and Agent which ended in a going nowhere flashing cursor (gives up and comes here).

I've invested a lot of time and effort getting F17 installed - then updated - then multimedia enabled - then cosmetically tweaked, then loaded up with important data from Windows land, and now seem to be locked out of all that despite all being well the night before - due to said boot failure out of the blue!

Could RealPlayer (not open source) have sunk me with its busy pointer "going nowhere" stuff?

Was there a "safe boot" mode (like Windows) or did I really just imagine that?

And most important of all: Is there any way to get back into my "up and running" installation of F17 without having to start all over again from scratch?

All help most gratefully received.

Namaste,

Zen2012.

Last edited by Zen2012; 7th June 2012 at 02:54 AM.
Reply With Quote
  #2  
Old 7th June 2012, 08:33 AM
george_toolan Offline
Registered User
 
Join Date: Dec 2006
Posts: 1,717
linuxfirefox
Re: F17. Installed fine now wont reboot after adding RealPlayer!

Sendmail is a mail server and not a client ;-)

Have you tried to disconnect your internal drives again?

Are you booting from an USB 3.0 port or USB 2.0?
Reply With Quote
  #3  
Old 8th June 2012, 01:53 AM
Zen2012 Offline
Registered User
 
Join Date: Jun 2012
Location: Scotland, UK
Posts: 3
windows_7firefox
Re: F17. Installed fine now wont reboot after adding RealPlayer!

Quote:
Originally Posted by george_toolan View Post
Sendmail is a mail server and not a client ;-)

Have you tried to disconnect your internal drives again?

Are you booting from an USB 3.0 port or USB 2.0?
Hi George,

Thank you for your response.

Not sure I get the "not a client" bit on the Sendmail part (see below - it mentions client). But then the stuff I don't get about Linux is encyclopedic, lol.

Tried disconnection the internal drive (Data) again. Made no difference. This is what i got when attempting to boot:

Cannot open font file True
[OK] Started Sendmail Mail Transport Agent
Starting Sendmail Mail Transport Client...
[OK] Started MFS flile locking service...
[OK] Started Sendmail Mail Transport Client.

Then just an endless flashing cursor line.

The USB drive and the motherboard USB port is USB3.

Hope that helps you to help me some, lol.

Isn't there a way of temporarily bypassing the problem(s) here by booting into some kind of safe mode like the one Windows has?
Reply With Quote
  #4  
Old 8th June 2012, 04:38 AM
landho Offline
Registered User
 
Join Date: Jun 2012
Location: Melbourne
Posts: 6
linuxchrome
Re: F17. Installed fine now wont reboot after adding RealPlayer!

Next time you want to play mp3s and the like it's much better to follow one of the guides (autoplus or RPMFusion repository) at http://www.fedoraforum.org/?view=fedora_setup here to get the codecs you might need. I find with both smplayer and vlc pretty much any video is playable. Realplayer might well cause problems, and I can't see any advantage in installing it.

Sometimes there is an option to boot to a rescue shell in the grub boot menu. Also, while booting you will often be given a rescue shell or able to access a shell if things are not working correctly. CTRL+ALT+F2 might switch you to a shell.

Changing the order of your drives shouldn't cause problems in modern distributions.

I would recommend booting from your install media and checking out your current install. You can access it by booting a live cd and going to the terminal.

First mount your root partition:
open a terminal and change to root user:
Code:
 su -
To figure out which drive your install is on try
Code:
 cfdisk /dev/sdx
ie. sda, sdb etc. Your linux partition will be identified in one of your drives. If it is an LVM partition it will be stated as such.

Mount the partition
Code:
mount /dev/sdxn /mnt
Or if you have used lvm
Code:
 mount /dev/mapper/xxx /mnt
You can use the tab key to complete the drive names, ie. /dev/mapper/[tab] will show you a list of your options.

After you have successfully mounted your root directory you can get console access to your system with the following commands:

Code:
 mount -o bind /dev /mnt/dev
mount -t sysfs /sys /mnt/sys
mount -t proc /proc /mnt/proc
chroot /mnt
At this point you can make changes to your system as if you were running the system, such as working with yum and checking what happened when your boot failed
Code:
cat /var/log/messages
# Last 50 lines
tail -n 50 /var/log/messages
and reloading grub:
Code:
 grub2-mkconfig -o /boot/grub2/grub.cfg

If this causes an error you might have other partitions. You can check your fstab with
Code:
cat /etc/fstab
to see the partitions that are saved to be mounted on your system. If any of these partitions are referenced by their physical disk ie. /dev/sdxn, this will cause problems when you change the order of your disks. You can use a text editor, like
Code:
pico /etc/fstab
to fix these values to match your current setup.

If your /boot partition was listed in /etc/fstab you will need to remount it before you can reinstall grub simply by typing
Code:
mount /boot
If you do have to reinstall though, just back up your home folder in its entirety. Most of your configuration files are stored in your home directory prefixed with a '.' char. You can see them by opening a terminal and typing 'ls -A'. After reinstall many of your settings will remain if you replace your home folder. This is probably the simplest option. I would recommend just packing it
Code:
 tar cvf /targetdir/myname.tar /home
to pack your entire home folder into /targetdir/myname.tar. Then to unpack in your new system (use the same username of course), as root
Code:
cd /
cp /targetdir/myname.tar /
mv /home /homebackup
tar xvf myname.tar

# If all was successful then
rm /myname.tar
rm -r /homebackup #this will delete the backup of your new installs home directory

Last edited by landho; 8th June 2012 at 06:02 AM.
Reply With Quote
  #5  
Old 16th June 2012, 08:23 PM
Zen2012 Offline
Registered User
 
Join Date: Jun 2012
Location: Scotland, UK
Posts: 3
windows_7firefox
Thumbs up Re: F17. Installed fine now wont reboot after adding RealPlayer!

Thank you landho for such a clear, extensive and very helpful reply. I learned much from it - and printed it out for future use, lol.

After the Realplayer debacle I had actually ended up at RPMFusion and that is how I finally got mp3's and videos to work. The great link you gave led me to a dangermouse script that was top notch. Wish I had found that earlier!

Regained access to the broken F17 install and recovered my home folder using your noob-friendly instructions (thanks again), but hit more problems. Decided to reinstall at that point and hit another really annoying hurdle: the F17 live install disk then refused to even acknowledge the existence of my USB3 external disk drive - presumably because it already found itself installed (albeit broken) on there? In the end had to use another Linux distro to flush that problem (Mandriva). That, and a few other problems, rather put me off Fedora I'm afraid.

I now have a relatively problem free installation of Ubuntu 12.04 LTS (Unity) and have fallen in love with it and think I want it to have my babies!

Just came back to thank you for what is/was an exceptionally great response to a noob way out of his depth

Live long and prosper landho.

Namaste.

Last edited by Zen2012; 16th June 2012 at 08:26 PM.
Reply With Quote
Reply

Tags
adding, boot, f17, failure, fine, installed, realplayer, reboot

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
dhcpd wont start at reboot but runs fine when service dhcpd restart fireater Servers & Networking 0 8th June 2010 07:44 PM
Fedora installs fine, but errors after initial reboot? _Sky_ Using Fedora 6 6th November 2008 08:18 PM
Just installed driver and it wont startup after reboot mat.hunt Using Fedora 7 2nd April 2007 01:51 PM
Nvidia installs fine, until i reboot ruthik Using Fedora 1 14th October 2006 10:23 AM
RealPlayer is and it is not installed grautu Using Fedora 7 2nd August 2005 11:45 PM


Current GMT-time: 19:21 (Tuesday, 21-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat