Uninstalled Nautilus by mistake and yum is not working.
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
2)I found my smb.conf empty, so thought of uninstalling it using add/remove program. then it showed for all dependencies and in it nautilus browser was also present, by mistake i removed that one too..
whats the solution now. not worried about samba, first i would like to get my system into normal condition.
I cant open anything from places/ it says : no application registered as handilling this file
help me out to work well with browser and yum, is there anything like windows recovery in linux. I know this is not such a stupid windows but tell me something... nervous...
Thanks in advance
Last edited by kalyan1985; 05-01-2009 at 04:01 PM.
Do you still have the install media? If so, put it in the drive and when it is mounted, run the command:
sudo yum install `find /media -name yum\*.rpm`
After that you can run
sudo yum reinstall <pkgname>
or
sudo yum install <pkgname>
where <pkgname> is the name of a package you would like to reinstall (e.g. nautilus).
HTH
Forrest
As I'm using vmware. i dont know how to use the .iso image placed in my windows D drive. anyother option. I tried downloading nautilus browser from web, but it asks to save. When I opened it with archive manager and try to extract it , it asks for place to extract.
other thing i tried is try to run install.sh file , but it dint work
sudo (run with root priveleges)
yum (command to manage software in Fedora)
install (parameter to the yum command to tell it you want to install software)
find (command in Linux/Unix that will traverse a directory structure looking for files)
/mnt/cdrom (starting point of find's search)
NOW, THIS IS IMPORTANT!!!!!
yum\*.rpm (Notice the '\' YOU NEED IT OR THE COMMAND WILL NOT WORK).
Also, you left off the '-name' parameter to find, so it doesn't know it is looking for a file "named" something (filenames are not the only thing find will search on).
The back ticks are also important. They mean "put the output of the command within the ticks here".
[root@localhost cdrom]# rpm -Uvh `find /mnt/cdrom -name yum\*.rpm`
rpm: no packages given for install
i thought to try with -i option but no use :
[root@localhost cdrom]# rpm -ivh `find /mnt/cdrom -name yum\*.rpm`
rpm: no packages given for install
[root@localhost cdrom]#
OK, run the command "mount" and post the output here.
Forrest
# mount
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw)
/proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/sda1 on /boot type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
gvfs-fuse-daemon on /home/kalyan/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=kalyan)
/dev/sr0 on /mnt/cdrom type iso9660 (ro)
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.