This is a discussion on rpm does not work within the Linux Operating System forums, part of the Unix Operating Systems category; --> Hello, I am trying to rpm a file and it doesn't work. When I type rpm -i MySQL-server-4.1.9-0.i386.rpm, it ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| webtekie@gmail.com wrote: > I am trying to rpm a file and it doesn't work. When I type rpm -i > MySQL-server-4.1.9-0.i386.rpm, it just sits there and that's it. Any > ideas? -v Print verbose information - normally routine progress messages will be displayed. -- David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/> Home is where the ~/.bashrc is |
| |||
| -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 webtekie@gmail.com wrote: | Hello, | | I am trying to rpm a file and it doesn't work. When I type rpm -i | MySQL-server-4.1.9-0.i386.rpm, it just sits there and that's it. Any | ideas? You can try rebuilding the rpm database (rpm --rebuilddb), though that may have absolutely nothing to do with your problem. I would take the previous poster's suggestion of turning verbose mode on to see where the process is hanging. Sometimes removing the __db files from /var/lib/rpm helps too. Jeff - -- Add an underscore between 'd' and 's' and remove the first three letters of the alphabet for email. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCC7cxlRbyBxB9qBwRAvFuAJ9ZcOR4b0SZK8T8tDKLxK fkF+Jb0ACfRrKg oXrBmJ5INSnXRKzsn0Y4gtc= =2/1x -----END PGP SIGNATURE----- |
| |||
| On Thu, 10 Feb 2005 11:34:09 -0800, Jeff Krimmel <madscientist03abc@hotmail.com> wrote: > > webtekie@gmail.com wrote: >| Hello, >| >| I am trying to rpm a file and it doesn't work. When I type rpm -i >| MySQL-server-4.1.9-0.i386.rpm, it just sits there and that's it. Any >| ideas? > > You can try rebuilding the rpm database (rpm --rebuilddb), though that > may have absolutely nothing to do with your problem. I would take the > previous poster's suggestion of turning verbose mode on to see where the > process is hanging. > > Sometimes removing the __db files from /var/lib/rpm helps too. > That would help because some Berkely DB implementations makes locks persistent by storing the lock in one of the __db files. Villy |
| ||||
| "David Dorward" <dorward@yahoo.com> wrote in message news:cug9tp$hcs$2$8302bc10@news.demon.co.uk... > webtekie@gmail.com wrote: > >> I am trying to rpm a file and it doesn't work. When I type rpm -i >> MySQL-server-4.1.9-0.i386.rpm, it just sits there and that's it. Any >> ideas? > > -v Print verbose information - normally routine progress messages > will be displayed. This can happen when the RPM database is locked. Check if any other RPM processes are running with "ps auxwww", make sure they're all dead, and try again with "-v -v" added. If it's still hanging, you need to delete the lock files at /var/lib/rpm/_*, maybe use "rpm --rebuilddb" to clean up any debris, then try again. Your system could also be overwhelmed and swapping like crazy.... |