Check your slowroll repos if you installed from the slowroll iso

I was checking my tumbleweed test to my slowroll test and was surprised to see it was the same.

I discovered that the slowroll iso did not put the slowroll repos on the machine - it put the tumbleweed repos.

To see what repos you have it is simple if it looks like this - it is tumbleweed and not slowroll:

TWSLOW:~ # grep http /etc/zypp/repos.d/*
 /etc/zypp/repos.d/download.opensuse.org-non-oss.repo:baseurl=http://download.opensuse.org/tumbleweed/repo/non-oss/
 /etc/zypp/repos.d/download.opensuse.org-oss.repo:baseurl=http://download.opensuse.org/tumbleweed/repo/oss/
 /etc/zypp/repos.d/download.opensuse.org-tumbleweed.repo:baseurl=http://download.opensuse.org/update/tumbleweed/
 /etc/zypp/repos.d/repo-debug.repo:baseurl=http://download.opensuse.org/debug/tumbleweed/repo/oss/
 /etc/zypp/repos.d/repo-openh264.repo:baseurl=http://codecs.opensuse.org/openh264/openSUSE_Tumbleweed
 /etc/zypp/repos.d/repo-source.repo:baseurl=http://download.opensuse.org/source/tumbleweed/repo/oss/
TWSLOW:~ #

If it looks like this - it is correct and you have slowroll:

 TWSLOW:~ # grep http /etc/zypp/repos.d/*
/etc/zypp/repos.d/base-non-oss.repo:baseurl=http://cdn.opensuse.org/repositories/openSUSE:/ALP:/Experimental:/Slowroll/base/repo/non-oss/
/etc/zypp/repos.d/base-oss.repo:baseurl=http://cdn.opensuse.org/repositories/openSUSE:/ALP:/Experimental:/Slowroll/base/repo/oss/
/etc/zypp/repos.d/base-src-oss.repo:baseurl=http://cdn.opensuse.org/repositories/openSUSE:/ALP:/Experimental:/Slowroll/base/repo/src-oss/
/etc/zypp/repos.d/h264.repo:baseurl=http://codecs.opensuse.org/openh264/openSUSE_Tumbleweed/
/etc/zypp/repos.d/pack.repo:baseurl=http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Slowroll/Essentials/
/etc/zypp/repos.d/update.repo:baseurl=http://cdn.opensuse.org/repositories/openSUSE:/ALP:/Experimental:/Slowroll/standard/
 TWSLOW:~ #

code to fix from openSUSE:Slowroll - openSUSE Wiki


 rm /etc/zypp/repos.d/*
 zypper ar http://cdn.opensuse.org/repositories/openSUSE:/ALP:/Experimental:/Slowroll/base/repo/oss/ base-oss
 zypper ar http://cdn.opensuse.org/repositories/openSUSE:/ALP:/Experimental:/Slowroll/base/repo/non-oss/ base-non-oss
 zypper ar -p 80 --refresh http://cdn.opensuse.org/repositories/openSUSE:/ALP:/Experimental:/Slowroll/standard/ update
 zypper ar --disable http://cdn.opensuse.org/repositories/openSUSE:/ALP:/Experimental:/Slowroll/base/repo/src-oss/ base-src-oss
 zypper ar http://codecs.opensuse.org/openh264/openSUSE_Tumbleweed/ h264
 zypper ar  -p 70 http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Slowroll/Essentials/ packman
2 Likes

Thanks.

I just checked, and mine are correct. Yes the installer just puts in Tumbleweed repos, because it is a Tumbleweed installer. I changed mine shortly after install, and then did a “zypper dup”.

1 Like