TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [TCLUG:452] Standard newbie problem - connectivity
Hi,
To find the path to the offending file, you can do this.
$ find / -name libncurses.so.4 -print 2> /dev/null
/usr/lib/libncurses.so.4
Then, to find the package that owns it...
$ rpm -qf /usr/lib/libncurses.so.4
ncurses-4.2-6
Or, combine the two steps.
$ rpm -qf `find / -name libncurses.so.4 2> /dev/null -print`
ncurses-4.2-6
Don't forget to check out the section in your RedHat install guide called
"Impressing Your Friends with RPM".
Have fun,
Chris
On Fri, 26 Jun 1998, Perry J. Hoekstra wrote:
> Hello all,
>
> I have the standard newbie problem of unable to connect to my ISP (I am
> writing through the other OS on this box - NT). I can connect through
> minicom but once connected, it drops. Anyway, before I use my 30 days
> of support through RedHat, I wanted to upgrade minicom and ppp. I
> cannot upgrade minicom because of a libncurses.so.4 dependency and there
> lies the rub. I cannot find the package that would upgrade libncurses.
> I have upgraded both libc, glibc and ncurses to no avail. What package
> contains libncurses.so.4?
>
> Perry Hoekstra
> dutchman@mn.uswest.net