LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   SUSE / openSUSE (https://www.linuxquestions.org/questions/suse-opensuse-60/)
-   -   How to set-up repositories in OpenSuse 11.1 ....? (https://www.linuxquestions.org/questions/suse-opensuse-60/how-to-set-up-repositories-in-opensuse-11-1-a-697999/)

dolphans1 01-17-2009 04:47 PM

How to set-up repositories in OpenSuse 11.1 ....?
 
Hey Guys I came back from using Mandriva 2009 and I can't remember how to set up the respositories in Suse, can anyone lend a hand....?

d-1

dolphans1 01-17-2009 04:57 PM

Found it guys, go to respositories and click add

d-1

tomslick 01-18-2009 05:11 PM

or add them manually with zypper

Code:

zypper ar http://download.opensuse.org/repositories/Banshee/openSUSE_11.1/ "Banshee"
or add a lot of them at once like this

Code:

#!/bin/bash

if [ "$EUID" != "0" ]; then
  echo "You must have root privileges to run this script!"
  exit 1
fi

printf "################################################################################\n"
printf "YAST INSTALLATION SOURCES SETUP SCRIPT FOR openSUSE 11.1\n"
printf "by Scott Morris (2008-06-18)\n"
printf "http://www.suseblog.com/\n\n"
printf "You *MUST* be connected to the Internet for this script to work!\n\n"
printf "################################################################################\n"



zypper ar http://download.opensuse.org/repositories/Banshee/openSUSE_11.1/ "Banshee"

zypper ar http://download.opensuse.org/repositories/Emulators/openSUSE_11.1/ "Emulators"
zypper ar http://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_11.1/ "openSUSE BuildService - Wine"
zypper ar http://download.opensuse.org/repositories/games/openSUSE_11.1/ "Games"
zypper ar http://download.opensuse.org/repositories/GNOME:/Community/openSUSE_11.1/ "Gnome Community"
zypper ar http://download.opensuse.org/repositories/GNOME:/STABLE/openSUSE_11.1/ "Gnome Stable"

zypper ar http://download.opensuse.org/repositories/KDE:/Backports/openSUSE_11.1/ "KDE3 Backports"
zypper ar http://download.opensuse.org/repositories/KDE:/Community/openSUSE_11.1 "KDE3 Community"
zypper ar http://download.opensuse.org/repositories/KDE:/KDE3/openSUSE_11.1/ "openSUSE BuildService - KDE3"
zypper ar http://download.opensuse.org/repositories/KDE:/Qt/openSUSE_11.1/ "KDE Qt"
zypper ar http://download.opensuse.org/repositories/smart/openSUSE_11.1/ "Smart"
zypper ar http://download.opensuse.org/repositories/Mono:/Community/openSUSE_11.1/ "Mono Community"
zypper ar http://download.opensuse.org/repositories/Mono:/Community/openSUSE_11.1+Mono/ "Mono Community+"
zypper ar http://download.opensuse.org/repositories/Mono/openSUSE_11.1/ "Mono"
zypper ar http://download.opensuse.org/repositories/mozilla/openSUSE_11.1/ "Mozilla"
zypper ar http://download.opensuse.org/repositories/multimedia:/audio/openSUSE_11.1/ "Audio"
zypper ar http://download.opensuse.org/repositories/multimedia:/photo/openSUSE_11.1/ "Photo"
zypper ar http://download.opensuse.org/repositories/multimedia:/audio:/KMP/openSUSE_11.1/ "Audio KPM"

zypper ar http://download.opensuse.org/repositories/KDE:/KDE4:/Community/openSUSE_11.1/ "KDE4 Community"
zypper ar http://download.opensuse.org/repositories/OpenOffice.org:/STABLE/openSUSE_11.1/ "OpenOffice"
zypper ar http://download.opensuse.org/repositories/home:/leonardocf/openSUSE_11.1/ "leonardocf"
zypper ar http://download.opensuse.org/repositories/home:/illuusio/openSUSE_11.1/ "illuusio"
zypper ar http://download.opensuse.org/repositories/home:/anubisg1/openSUSE_11.1/ "anubisg1"
zypper ar http://download.opensuse.org/repositories/home:/uljanow/openSUSE_11.1/ "uljanow"
zypper ar http://download.opensuse.org/repositories/home:/pbleser:/Security/openSUSE_11.1/ "pbleser:"

zypper ar http://download.opensuse.org/repositories/X11:/xfce/openSUSE_11.1/ "XFCE"
zypper ar http://download.opensuse.org/repositories/X11:/XGL/openSUSE_11.1/ "XGL"
zypper ar http://download.opensuse.org/repositories/X11:/Compiz/openSUSE_11.1/ "openSUSE BuildService - XOrg & Compiz Fusion"
zypper ar http://download.opensuse.org/repositories/home:/hfiguiere:/NOMAD/openSUSE_11.1/ "hfiguiere:NOMAD"
zypper ar http://download.opensuse.org/repositories/home:/hfiguiere/openSUSE_11.1/repodata/ "hfiguiere"
yes | zypper ref

printf "\nThe script has now finished. Congratulations!\n"

not my script just altered it for suse 11.1


All times are GMT -5. The time now is 03:11 PM.