Opensuse 10.2 Help wanted

Don´t be shy, Linux is fun! =)
Post Reply
User avatar
pcmsadmin
Newbie
Newbie
Posts: 2
Joined: 16 Mar 2007, 17:00
17
Location: Odense V - Denmark
Contact:

Opensuse 10.2 Help wanted

Post by pcmsadmin »

How to install programs on the system ???

Im a total new user of unix, and i need badley help to install some programs on the system.

User avatar
Gogeta70
^_^
^_^
Posts: 3275
Joined: 25 Jun 2005, 16:00
18

Post by Gogeta70 »

Go to the... "start" button, or chameleon, or whatever... Then, under "Computer", to go "Administrator Settings," or YaST. Then, type in the root password and press ok. Then, in the window that pops up, click on "Online Update". Also, you may want to add more repositories to your list, which you can find on opensuse.org.

Have fun with SuSE 10.2
¯\_(ツ)_/¯ It works on my machine...

User avatar
pcmsadmin
Newbie
Newbie
Posts: 2
Joined: 16 Mar 2007, 17:00
17
Location: Odense V - Denmark
Contact:

Post by pcmsadmin »

I tryed, byt then the opensuse intalled all to a map.

That i asking for is how to install a downloaded program into open suse and how to make the program run when the opensuse is booting up from my mashine !!

User avatar
bad_brain
Site Owner
Site Owner
Posts: 11636
Joined: 06 Apr 2005, 16:00
19
Location: In your eye floaters.
Contact:

Post by bad_brain »

to run the program on startup simply add a little script into /etc/init.d containing the command to start the program:

Code: Select all

#!/bin/bash
command &
and to install an app...well, you can get the source files (usually in an .tar.gz package which is extracted by tar -xzvf name.tar.gz) and do the good old
./configure (if available)
make
make install
make clean

or you download a precompiled package and use your package manager for a local (and not remote as usual) install....

and better do what gogeta said and run the updates via Yast regularly, vulnerabilities and bugs are fixed that way....and installing stuff through Yast is the easiest way, especially for beginners.... :wink:

Post Reply