linux

Page 1 of 1

8 Replies - 966 Views - Last Post: 11 May 2007 - 06:39 AM

#1 prajayshetty   User is offline

  • D.I.C Addict
  • member icon

Reputation: 31
  • View blog
  • Posts: 920
  • Joined: 27-April 07

linux

Posted 05 May 2007 - 06:40 AM

how to install a software in linux guys
Is This A Good Question/Topic? 0
  • +

Replies To: linux

#2 Amadeus   User is offline

  • g+ + -o drink whiskey.cpp
  • member icon

Reputation: 253
  • View blog
  • Posts: 13,507
  • Joined: 12-July 02

Re: linux

Posted 05 May 2007 - 06:54 AM

What software application? What distribution of linux are you using?
Was This Post Helpful? 0
  • +
  • -

#3 spullen   User is offline

  • D.I.C Regular
  • member icon

Reputation: 10
  • View blog
  • Posts: 356
  • Joined: 22-March 07

Re: linux

Posted 05 May 2007 - 12:27 PM

for most distributions you just burn the iso, and then when you turn on your comp, then change the boot sequence to start with the cd/dvd drive that you have the disc in, and then run it and it should take you through the set-up.
Was This Post Helpful? 0
  • +
  • -

#4 GWatt   User is offline

  • member icon

Reputation: 312
  • View blog
  • Posts: 3,107
  • Joined: 01-December 05

Re: linux

Posted 05 May 2007 - 12:37 PM

I think he's asking how to install programs under linux. In which case, I agree with Amadeus.
Was This Post Helpful? 0
  • +
  • -

#5 prajayshetty   User is offline

  • D.I.C Addict
  • member icon

Reputation: 31
  • View blog
  • Posts: 920
  • Joined: 27-April 07

Re: linux

Posted 06 May 2007 - 12:02 AM

View PostGWatt, on 5 May, 2007 - 12:37 PM, said:

I think he's asking how to install programs under linux. In which case, I agree with Amadeus.

how to install an external software in red hat linux


View Postprajayshetty, on 6 May, 2007 - 12:01 AM, said:

View PostGWatt, on 5 May, 2007 - 12:37 PM, said:

I think he's asking how to install programs under linux. In which case, I agree with Amadeus.

how to install an external software in red hat linux

i mean those i download from net
Was This Post Helpful? 0
  • +
  • -

#6 GWatt   User is offline

  • member icon

Reputation: 312
  • View blog
  • Posts: 3,107
  • Joined: 01-December 05

Re: linux

Posted 06 May 2007 - 05:59 AM

Still depends. Did you download the source, or did you download a package?
You can build from source which involves:
./configure
make
sudo make install



Or you can use the package manager, which is different fo each system.
What linux distro are you running.
Was This Post Helpful? 0
  • +
  • -

#7 prajayshetty   User is offline

  • D.I.C Addict
  • member icon

Reputation: 31
  • View blog
  • Posts: 920
  • Joined: 27-April 07

Re: linux

Posted 07 May 2007 - 12:23 AM

View PostGWatt, on 6 May, 2007 - 05:59 AM, said:

Still depends. Did you download the source, or did you download a package?
You can build from source which involves:
./configure
make
sudo make install



Or you can use the package manager, which is different fo each system.
What linux distro are you running.

i downlaoded packages and sourcode but i dont know how to install them for fedoracore linux
i downlaoded cedega can u plz tell me how to install
and plz tell me where to write this command i dont know where is command shell
Was This Post Helpful? 0
  • +
  • -

#8 GWatt   User is offline

  • member icon

Reputation: 312
  • View blog
  • Posts: 3,107
  • Joined: 01-December 05

Re: linux

Posted 08 May 2007 - 03:28 PM

If the package is a .rpm file
(1) Open up a terminal
(2) Type "cd DIRECTORY" where directory is the directory that holds the .rpm file
(3) Type "sudo rpm -i PACKAGE_NAME.rpm"

If the package is a tar.bz2 or tar.gz
(1) Extract all the archive (should be able to right click and say extract)
(2) Open a terminal
(3) Type "cd DIRECTORY"
(4) Type "./configure"
(5) Type "make"
(6) Type "sudo make install"

If the package is a .sh file
(1) Open a terminal
(2) cd to the parent directory
(3) Type "sudo DIRECTORY/PACKAGE_NAME.sh"

Whenever you type the "sudo" command, it will prompt you to enter your password. When you type, nothing will be printed, so don't be surprised when you're typing and nothing happens.
Was This Post Helpful? 0
  • +
  • -

#9 prajayshetty   User is offline

  • D.I.C Addict
  • member icon

Reputation: 31
  • View blog
  • Posts: 920
  • Joined: 27-April 07

Re: linux

Posted 11 May 2007 - 06:39 AM

View PostGWatt, on 8 May, 2007 - 03:28 PM, said:

If the package is a .rpm file
(1) Open up a terminal
(2) Type "cd DIRECTORY" where directory is the directory that holds the .rpm file
(3) Type "sudo rpm -i PACKAGE_NAME.rpm"

If the package is a tar.bz2 or tar.gz
(1) Extract all the archive (should be able to right click and say extract)
(2) Open a terminal
(3) Type "cd DIRECTORY"
(4) Type "./configure"
(5) Type "make"
(6) Type "sudo make install"

If the package is a .sh file
(1) Open a terminal
(2) cd to the parent directory
(3) Type "sudo DIRECTORY/PACKAGE_NAME.sh"

Whenever you type the "sudo" command, it will prompt you to enter your password. When you type, nothing will be printed, so don't be surprised when you're typing and nothing happens.

thanks a lot guys u guys helped me a lot this forum is suerly of great use thanks a lot
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1