Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Installing Software
Name: Nate Date: September 11, 2003 at 14:09:54 Pacific OS: windows2000 CPU/Ram: 224
Comment:
I'm kinda new to linux, i have a small distribution called Vector Linux, and i'm not doing TOO bad, but even back when i had redhat, i could NOT install software! how do i do it? like i can do RPM -i and it tells me that it installs it, but i dont know where it installs it to! how do i find my installations? i've installed so much but i cannot find any of it....HELP!
Name: Kury Date: September 11, 2003 at 15:56:39 Pacific
Reply:
Try # whereis programname
so to see where perl runs from for example you would type
# whereis perl
Let me know if this doesn't find what you were installing...
0
Response Number 2
Name: sammol Date: September 12, 2003 at 00:11:30 Pacific
Reply:
For what I used to find what I have installed and where I have installed it:
For example if I want to find mozilla
1) rpm -qa | grep mozilla
mozilla-1.4.i386.RPM
2) rpm -ql mozilla-1.4.i386.RPM
/usr/bin/mozilla /usr/lib/mozilla.so . . . .
0
Response Number 3
Name: C_Legend Date: September 12, 2003 at 20:22:23 Pacific
Reply:
I agree with sammol, but you might want to change one thing and that's not putting the version number and i386.RPM portion on the end [only do this when installing a package (rpm -i or -u), as the filename will likely include that info.] Do as he says, though, and do an rpm -qa|grep "packagename", but don't enter the extra info when doing the rpm -ql. For instance:
# rpm -qa|grep "mozilla"
mozilla-1.0.1-24
# rpm -ql mozilla
This should yield the files included with that package.
Summary: can someone explain to me how to install software under linux?I mean what is the difference RPM and using and commands??? and from a cd-rom do I need to copy the software unto a temporary file ...
Summary: can anyone explain how I can install software downloaded from internet onto turbolinux operating system and how to find same in menu. I have looked at previous answers to similar question but still ca...