i just installed redhat 9 and was wondering where i could download free software for linux?
NotebookForums.com › Forums › General Notebook Discussions › Linux & Other OS's › where to download software?
Recent Reviews
-
So I just got a Lenovo Yoga 13. This is my review. As what I primarily do is writing and programming, having a good keyboard is critical for me, which is why a tablet alone can’t work for me, and...
-
I have owned dozens of laptops in a variety of brands, and had many different laptops provided for my use at work. Without question, this is the finest I have owned. The Alienware M17x R2 is a...
-
N/m
-
Lenovo Thinkpad W530 Review by Djembe One of the longest and most enduring brands in computers is Thinkpad. Originally developed by IBM in the USA, Thinkpad notebook computers are now...
-
I have this memory installed in my Inspiron 14R. 6gb (one 2gb & one 4gb). Great performance! I highly recommend Kingston.
where to download software?
post #2 of 16
12/8/04 at 1:30pm
- Joined: 10/2004
- Location: Somewhere in the US
- Posts: 3,809
- Select All Posts By This User
Quote:
|
Originally Posted by twoodcc
i just installed redhat 9 and was wondering where i could download free software for linux?
|
One of the largest sites around though is sourceforge.net
Hope you have a few years to browse through the projects there, just remember they are constantly under devlopment.
Seablade
post #5 of 16
12/8/04 at 4:03pm
- jamesshuang
- 0
- Registered User
- offline
- Joined: 11/2002
- Location: Flemington, NJ USA
- Posts: 1,292
- Select All Posts By This User
what kind of software do you need? Most linux distros have their own "package management" software for keeping track of what software you have installed. RedHat 9 is a distro where most everything you need is included on the CD, so you can look through their stuff for the programs you need. However, I highly suggest you look for a newer distro. You can continue with the Red Hat line, and try Fedora Core 3. FC3 has "yum", which lets you download a list of software that's custom made for FC3. Or, you can try something new, such as Suse (which uses "yapt", I think), Slackware (which uses "swaret"), or if you're really brave, Gentoo, which ironically has the easiest to use package management software possible (emerge openoffice gives you the latest openoffice).
If you want to install the programs from sourceforge, first you need to extract it. Run
tar -xvzf <packagename>.tar.gz if the file is a gzip, or
tar -xvjf <packagename>.tar.bz2 if the file is a bzip2 file. Then go into the folder it extract, and look for the INSTALL file. That should explain how to install it. In general, all you have to do is "./configure && make", then switch to root user, then run "make install". To run the program, just type the program name, and you should be able to run it. Good luck with linux!
If you want to install the programs from sourceforge, first you need to extract it. Run
tar -xvzf <packagename>.tar.gz if the file is a gzip, or
tar -xvjf <packagename>.tar.bz2 if the file is a bzip2 file. Then go into the folder it extract, and look for the INSTALL file. That should explain how to install it. In general, all you have to do is "./configure && make", then switch to root user, then run "make install". To run the program, just type the program name, and you should be able to run it. Good luck with linux!
post #7 of 16
12/8/04 at 5:17pm
post #9 of 16
12/8/04 at 11:05pm
- Joined: 6/2003
- Location: South Carolina
- Posts: 1,492
- Select All Posts By This User
post #11 of 16
12/9/04 at 12:48am
- Joined: 10/2004
- Location: Somewhere in the US
- Posts: 3,809
- Select All Posts By This User
Quote:
|
Originally Posted by twoodcc
well the software i was trying to download was gaim. but i would also like a program that can burn cd's and watch dvd's. so you think redhat is no good?
also, what about linspire/lindows? would i like that better. and btw, can i change the background to an actual picture? |
Suse uses APT as well as RPMs? Dang I never even knew that the entire time I used it, and apt is the single reason that Debian is starting to win me over(Then again I also run DeMUdi which is kinda specialized)
Ok going back to your questions... Movie Player I use xine myself, and most players out there that people use are based off the Xine library. Gaim is on Sourceforge, Cine I dont think is but it might be, try googleing for it I cant rememebr the website right off hand. Burn CDs and DVDs I would try out k3B, even if you dont run KDE it is still kinda a common easy to use interface to the command line cdrecord and similar.
To install software, it will get tricky and depends on your distro. Certain distros use RPMs(Distro being short for distribution) RPMs can be downloaded and installed, but they will not install unless all the dependancies are met, which unless you run one of the large distros, typically it will mean more searching and downloading. RPM stands for Red-Hat package manager.
Another method is to compile and install the software yourself, I believe you will need to do this for xine. If you dont already have gcc installed on your computer, you will need it running linux. Most distros come with it installed but I have managed to find a couple that actually remove it(It is required to build the system so it actually has to be removed once the distro is built). The ones that dont have it installed are realitvely rare though. Compiling the software yourself typically involves three steps on the command line
>./configure (Needs to be run in the directory the source is unpacked in along with the rest of these)
>make all
>make install
It will take some time as you are compiling all the source code and some larger projects take almost an hour to do, however when you really get used to things compiling can allow you to customize softare for your specific needs.
The last and easiest method is on certain distros, namely debian, and is called apt. It gets some getting used to, but it will automatcily find any dependancies that you need to resolve and download and install those as well as automaticly downloading and installing the software you want. By far the easiest method, the thing to remember will be the sources file which you will need to add sites for it to search fopr the software, debian installations tend to already have three standard sites on there though so that should get you started, more can be added as you find them on the web(Certain software will have their own sites etc)
Feel free to ask more questions as you go along, if Suse is in fact able to use apt, it definitly just got my vote for best and easiest distro for new people to learn on. I know it can do RPM.
Seablade
post #12 of 16
12/9/04 at 12:53am
thanks for all of your help. i'm actually installing fedora core 3, which is just the latest redhat. they changed the name, or at least that's what i am told. i'll let you know if i have any questions/problems. my friend helped me install gaim, even though it was on the disks. we compiled it and everything. it wasn't too bad.
post #14 of 16
12/9/04 at 6:04am
If you're running a distro w/a package manager (which you are), you don't want to compile/install too many of your own apps by circumventing the PM. This will lead to a lot of grief when removing/upgrading/replacing packages, etc. For redhat, a RPM-based distro, http://rpmfind.net/ is always a good site to visit. In the old days, redhat used to have their own repository of software also, but I don't know if that is true nowadays.
Leave the 'compile; make; make install' cycle for niche software that does not have packages for your distro.
Regards,
zakaluka2.
Leave the 'compile; make; make install' cycle for niche software that does not have packages for your distro.
Regards,
zakaluka2.
post #16 of 16
12/10/04 at 12:18am
If your installing from source, I recommend the program stow. It makes it easy to uninstall things and keeps your partition neat.
This is the kind of stuff you need under slackware since I usually install most programs from source under slack. Redhat, I dunno, lots of programs come in rpm format.
This is the kind of stuff you need under slackware since I usually install most programs from source under slack. Redhat, I dunno, lots of programs come in rpm format.
Return Home
Back to Forum: Linux & Other OS's
- where to download software?
NotebookForums.com › Forums › General Notebook Discussions › Linux & Other OS's › where to download software?
Currently, there are 208 Active Users
(3 Members and 205 Guests)
Recent Discussions
- › Where minds meet 54 minutes ago
- › Is the popular trackpad problem of Lenovo Ideapad Y500 solved or not? 2 hours, 11 minutes ago
- › Cool (at times "Free") iOS apps 4 hours, 16 minutes ago
- › DIAMOND WR300NSI 300Mbps 802.11n Wireless Repeater Range Extender 7 hours, 59 minutes ago
- › Problem Aspire 8920G goes on and off with power supply 8 hours, 4 minutes ago
- › HP ENVY Rove20 mobile All-in-One PC 8 hours, 22 minutes ago
- › X501U Downgrading Windows 8 to Windows 7 9 hours, 11 minutes ago
- › Aiseesoft MXF Converter (for Win and Mac) 9 hours, 17 minutes ago
- › Cool (at times) Free Mac Software 9 hours, 17 minutes ago
- › For freewares hunters 9 hours, 17 minutes ago
View: New Posts | All Discussions
Recent Reviews
- › Lenovo Yoga 13 IdeaPad Convertbale Ultrabook (tablet) 13.3"... by The Bard sRc
- › Alienware M18X by MrFox
- › Kensington Black Contour Pro 17" Notebook Carrying Case Model... by great white
- › Lenovo W530-24382LU i7-3720QM 2.60GHz 4GB 500GB 7200rpm NVIDIA... by Djembe
- › Kingston 8GB (2 x 4GB) 204-Pin DDR3 SO-DIMM DDR3 1333 Laptop Memory by Nicadraus
- › Synology DiskStation 1-Bay (Diskless) Network Attached Storage... by Mr T
- › Barnes & Noble Nook Color by sewshoplady
- › Cooler Master CM Storm Spawn 3500 DPI Optical Sensor Gaming Mouse... by Rotterdamblues
- › Samsung MV-3T4G4 4GB DDR3 Laptop SDRAM (1333MHz PC3-10600) by Rotterdamblues
- › Alienware Aurora m9700 by amythompson172
View: More Reviews
New Articles
- › Intel Summer 2012 SSD Scavenger Hunt - Full... by ranjanis
- › Intel's Maple Crest 330 Series Promotion... by ranjanis
- › Intel Cherryville SSD Spring 2012 Giveaway by ranjanis
- › Intel Cherryville SSD Giveaway 2012 - Terms... by ranjanis
- › Advertise by jdz2287
- › Search And Advanced Search Tutorial by NotebookForums
- › Tagging Tutorial by NotebookForums
- › Add A New Item Tutorial by NotebookForums
- › Image And Video Tutorial by NotebookForums
- › Subscription Tutorial by NotebookForums
View: New Articles | All Articles
Home | Reviews | Forums | Articles | My Profile
About NotebookForums.com | Join the Community | Advertise
© 2013 NotebookForums.com is powered by Huddler Tech | FAQ | Support | Privacy/TOS | Site Map
About NotebookForums.com | Join the Community | Advertise
© 2013 NotebookForums.com is powered by Huddler Tech | FAQ | Support | Privacy/TOS | Site Map




