Problems upgrading server to r3_8_2 #2416
-
My Ubuntu knowledge is zero. I usually upgrade my server using this: cd /usr/local/bin/llcon-jamulus When I checkout r3_8_1 I get "HEAD is now at 40fd0ac Update version to 3.8.1 for release" When I try to checkout r3_8_2 I get "error: pathspec 'r3_8_2' did not match any file(s) known to git" Any help please... |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 8 replies
-
Hmm, when exactly did you run this? it works for me now (and I think it should have been working since right before the announcement was posted). Can you post the output of Note: We've been providing Debian/Ubuntu packages for some time now which saves you the hassle of recompiling. See https://github.com/jamulussoftware/jamulus/releases/tag/r3_8_2 (Ctrl+F headless) Note 2: Even when using git you should not need root (sudo) to download and/or compile. In fact, one usually avoids running anything as root if not absolutely necessary. I added my commands with |
Beta Was this translation helpful? Give feedback.
-
Thanks Hoffie I still get the error on 3_8_2. I didn't mention I also get a message on "sudo git pull" which I considered irrelevant as 3_8_1 works...not sure: sudo git remote -v reports: sudo git status reports: I don't know how to use packages - my knowledge is zero. I just do what I've been told! I acknowledge the sudo good-practice advice. In simple terms, what should I type to upgrade. Please note I have specific folders and batch files used to set the IP address with the DNS host so don't want to upset that. |
Beta Was this translation helpful? Give feedback.
-
Thanks. Same error still on the checkout. sudo git fetch --tags reported: remote: Enumerating objects: 110, done.
|
Beta Was this translation helpful? Give feedback.
-
I think you should use the updated version of the script you’re using. https://worldjam.vip/jamulus/setup-jamulus.sh might work. |
Beta Was this translation helpful? Give feedback.
-
From my point of view, you should move all the stuff present in |
Beta Was this translation helpful? Give feedback.
-
Originally posted by @hoffie in #2416 (reply in thread): @ann0see just pointed out that you are using an outdated repository address (corrados/jamulus). While this has worked for some time, it no longer does¹. You'll either have to update that or really go the package-based route: https://jamulus.io/wiki/Running-a-Server#running-a-headless-linux-server EDIT BY @ann0see: for everyone reading this, please try without typing sudo first. So e.g. To update your repo, the following steps will be necessary (only this time):
Then, continue as mentioned above:
¹ corrados now has its own fork of the new upstream repository here at jamulussoftware/jamulus. Comment/improvement by @jujudusud:
|
Beta Was this translation helpful? Give feedback.
Originally posted by @hoffie in #2416 (reply in thread):
@ann0see just pointed out that you are using an outdated repository address (corrados/jamulus). While this has worked for some time, it no longer does¹. You'll either have to update that or really go the package-based route: https://jamulus.io/wiki/Running-a-Server#running-a-headless-linux-server
EDIT BY @ann0see: for everyone reading this, please try without typing sudo first.
So e.g.
sudo git remote remove origin
would begit remote add origin
.To update your repo, the following steps will be necessary (only this time):
Then, conti…