-
Notifications
You must be signed in to change notification settings - Fork 190
Troubleshooting
Daniel Mach edited this page Mar 3, 2025
·
6 revisions
-
Remove cookiejar with session cookies before any auth attempt:
- Run
rm ~/.local/state/osc/cookiejar
- Run
-
Run osc in the debug mode
- Add the following options to
osc
:--debug --http-full-debug
- ❗ Do not share the output with anyone, it contains sensitive information such as passwords and session cookies!
- Add the following options to
-
Make sure the system time is accurate.
- Run
timedatectl
to check if your time zone is set correctly - Run
sudo timedatectl set-timezone <your-timezone>
(e.g. Europe/Prague) if the time zone needs a fix - Run
sudo chronyc makestep
to sync time with the time servers
- Run
-
Make sure the apiurl is correct.
- The apiurl should start with
api.
, for examplehttps://api.opensuse.org
-
https://build.opensuse.org
is not an API, it's a web frontend.
- The apiurl should start with
- If you're using VPN, make sure MTU is set correctly.
- Run
ip a
and look for themtu
value of your VPN interface (e.g.tun0
). It should be lower than 1500. - Start with setting MTU to 1360. If it doesn't help, try a slightly lower value:
- OpenVPN:
tun-mtu 1360
- NetworkManager:
tunnel-mtu=1360
- OpenVPN:
- Run
- Authors
- Found an issue?
- Release process
- Roadmap
- Writing your own osc plugin (References the openSUSE Wiki)
- Latest Changelog
- Found an issue?
-
Installation requirements
- Walk through (References the openSUSE Wiki)
- Recommended starter configuration (References the openSUSE Wiki)
- Usage examples (References the openSUSE Wiki)
- Troubleshooting