[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: The installation of binary packages does not work for Ubuntu 24.04 ,and 24.10
[Thread Prev] | [Thread Next]
- Subject: Re: The installation of binary packages does not work for Ubuntu 24.04 ,and 24.10
- From: gbWilly <gbWilly@xxxxxxxxxxxxxx>
- Date: Tue, 01 Apr 2025 16:39:25 +0000
- To: Gianluigi <gradobag@xxxxxxxxxxx>
- Cc: user@xxxxxxxxxxxxxxxxxxxxxx
On Tuesday, April 1st, 2025 at 16:57, Gianluigi <gradobag@xxxxxxxxxxx> wrote: > Hi Willy, > > Unfortunately, doing the same operation on Ubuntu 24.10 does not work > when you give the command: > curl -fsSL > https://download.opensuse.org/repositories/home:gambas:stable//xUbuntu_22.10/Release.key > | gpg --dearmor | tee /etc/apt/trusted.gpg.d/home_gambas_stable.gpg > /dev/nul The devil is in the details. When not using su root, but sudo you need to pay attention to small things, like With su: "echo 'deb http://download.opensuse.org/repositories/home:/gambas:/master//xUbuntu_24.10/ /' | tee /etc/apt/sources.list.d/home:gambas:master.list" "curl -fsSL https://download.opensuse.org/repositories/home:gambas:master//xUbuntu_24.10/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/home_gambas_master.gpg > /dev/null" With sudo "echo 'deb http://download.opensuse.org/repositories/home:/gambas:/master//xUbuntu_24.10/ /' | sudo tee /etc/apt/sources.list.d/home:gambas:master.list" "curl -fsSL https://download.opensuse.org/repositories/home:gambas:master//xUbuntu_24.10/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_gambas_master.gpg > /dev/null" Find the 2 differences, that is where you go wrong As sudo you try to create /etc/apt/sources.list.d/home:gambas:master.list. without using sudo!! /etc is not a place a regular user has permissions to create/write to On Tuesday, April 1st, 2025 at 17:57, T Lee Davidson <t.lee.davidson@xxxxxxxxx> wrote: > And, shouldn't the distribution directory for the above command be "xUbuntu_24.10"? > > > The installation instructions are incongruent. > Noted and corrected on the wiki. But to be fair, that should work all the same as it is the same signing key for all builds (I presume) and then put into the respective repo's but all under a different name. So, I guess the real problem is not using sudo in the correct manner gbWilly Gambas3 for Debian/Ubuntu
Re: The installation of binary packages does not work for Ubuntu 24.04 ,and 24.10 | Gianluigi <gradobag@xxxxxxxxxxx> |
The installation of binary packages does not work for Ubuntu 24.04 ,and 24.10 | Gianluigi <gradobag@xxxxxxxxxxx> |