• Re: V210 booted from iso and installed but could not find mirror?

    From Gregor Riepl@21:1/5 to All on Fri Mar 24 23:30:01 2023
    However, I was unable to find a mirror to download any packages from.
    I'm onlyafter basic stuff like tcsh, alpine, openssh-server, etc.

    What are my next steps now to make this system useful?

    That shouldn't be a problem, you only need to make sure that your
    apt.sources contains the debian-ports repo instead of the regular ones.

    Now to add a second CPU to this box and up the RAM a bit.

    I'm very interested in your results. I've recently tried to get the
    SMP kernel working on a V215 and only got tons of kernel panics. Had to
    go back to the standard kernel and a single CPU. :(

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to All on Sat Mar 25 00:10:02 2023
    Hi Brian!

    On Fri, 2023-03-24 at 03:07 +0000, Brian2 wrote:
    Booting from the iso in the DVD allowed me to install without an issue.

    Great.

    However, I was unable to find a mirror to download any packages from. I'm only after basic stuff like tcsh, alpine, openssh-server, etc.

    What are my next steps now to make this system useful?

    Make sure you have these lines in your /etc/apt/sources.list:

    # binary default
    deb http://ftp.ports.debian.org/debian-ports/ unstable main
    deb http://incoming.ports.debian.org/buildd/ unstable main
    deb http://ftp.ports.debian.org/debian-ports/ unreleased main

    # contrib and non-free arch:all packages (i.e. firmware)
    deb [arch=all] http://ftp.debian.org/debian/ unstable contrib non-free

    # source
    deb-src http://ftp.debian.org/debian/ unstable main
    deb-src http://incoming.debian.org/debian-buildd/ buildd-unstable main

    You can fetch the file from here:

    https://people.debian.org/~glaubitz/sources.list

    You may have to install the Debian Ports Archive Keyring:

    # wget http://ftp.ports.debian.org/debian-ports/pool/main/d/debian-ports-archive-keyring/debian-ports-archive-keyring_2023.02.01_all.deb
    # dpkg -i debian-ports-archive-keyring_2023.02.01_all.deb

    before running:

    # apt update

    Thanks Adrian for keeping Debian alive on Sparc.

    You're welcome.

    Now to add a second CPU to this box and up the RAM a bit.

    Good idea.

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to All on Sat Mar 25 08:20:01 2023
    Hi!

    On Sat, 2023-03-25 at 01:59 +0000, Brian2 wrote:
    I seem to be chasing my tail a bit though as I am getting that wget is
    not installed so can't install the keyring to install stuff...

    You can fetch the key with GPG which should be installed:

    # gpg --keyserver keyserver.ubuntu.com --recv-keys 8D69674688B6CB36
    # gpg --export --armor 8D69674688B6CB36 | apt-key add -

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Brian Noonan on Sat Mar 25 10:30:01 2023
    Hi!

    On Sat, 2023-03-25 at 09:03 +0000, Brian Noonan wrote:
    Thanks for the fast response on your weekend!
    Unfortunately not.

    root@daffy:/usr/bin# gpg --keyserver keyserver.ubuntu.com --recv-keys 8D69674686
    -bash: gpg: command not found

    I've run a find in /usr and also checked /usr/bin and /usr/sbin plus /usr/local/bin
    manually just in case the issue was my PATH. No luck there either.

    Try:

    # apt update -o Acquire::Check-Valid-Until=false -o Acquire::AllowInsecureRepositories=true -o Acquire::AllowDowngradeToInsecureRepositories=true

    then:

    # apt install debian-ports-archive-keyring

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Brian Noonan@21:1/5 to All on Sat Mar 25 10:40:01 2023
    Hi Adrian,

    Thanks for the fast response on your weekend!

    Unfortunately not.


    root@daffy:/usr/bin# gpg --keyserver keyserver.ubuntu.com --recv-keys 8D69674686
    -bash: gpg: command not found


    I've run a find in /usr and also checked /usr/bin and /usr/sbin plus /usr/local/bin manually just in case the issue was my PATH. No luck there either.


    Regards

    Brian

    ________________________________
    From: Brian2 <brian@siberianboxes.com>
    Sent: Saturday, March 25, 2023 11:59 AM
    To: John Paul Adrian Glaubitz
    Cc: debian-sparc@lists.debian.org
    Subject: RE: V210 booted from iso and installed but could not find mirror?

    Thanks so much Adrian!
    I seem to be chasing my tail a bit though as I am getting that wget is not installed so can't install the keyring to install stuff...

    root@daffy:/etc/apt# wget
    -bash: wget: command not found
    root@daffy:/etc/apt# apt-get install wget
    Reading package lists... Done
    Building dependency tree... Done
    Reading state information... Done
    Package wget is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source

    E: Package 'wget' has no installation candidate

    Regards
    Brian

    -----Original Message-----
    From: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
    Sent: Saturday, March 25, 2023 9:05 AM
    To: Brian2 <brian@siberianboxes.com>
    Cc: debian-sparc@lists.debian.org
    Subject: Re: V210 booted from iso and installed but could not find mirror?

    Hi Brian!

    On Fri, 2023-03-24 at 03:07 +0000, Brian2 wrote:
    Booting from the iso in the DVD allowed me to install without an issue.

    Great.

    However, I was unable to find a mirror to download any packages from.
    I'm only after basic stuff like tcsh, alpine, openssh-server, etc.

    What are my next steps now to make this system useful?

    Make sure you have these lines in your /etc/apt/sources.list:

    # binary default
    deb http://ftp.ports.debian.org/debian-ports/ unstable main deb http://incoming.ports.debian.org/buildd/ unstable main deb http://ftp.ports.debian.org/debian-ports/ unreleased main

    # contrib and non-free arch:all packages (i.e. firmware) deb [arch=all] http://ftp.debian.org/debian/ unstable contrib non-free

    # source
    deb-src http://ftp.debian.org/debian/ unstable main deb-src http://incoming.debian.org/debian-buildd/ buildd-unstable main

    You can fetch the file from here:

    https://people.debian.org/~glaubitz/sources.list

    You may have to install the Debian Ports Archive Keyring:

    # wget http://ftp.ports.debian.org/debian-ports/pool/main/d/debian-ports-archive-keyring/debian-ports-archive-keyring_2023.02.01_all.deb
    # dpkg -i debian-ports-archive-keyring_2023.02.01_all.deb

    before running:

    # apt update

    Thanks Adrian for keeping Debian alive on Sparc.

    You're welcome.

    Now to add a second CPU to this box and up the RAM a bit.

    Good idea.

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
    </head>
    <body dir="ltr">
    <div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
    <p>Hi Adrian,</p>
    <p>Thanks for the fast response on your weekend!</p>
    <p>Unfortunately not.</p>
    <p><br>

    <div>root@daffy:/usr/bin# gpg --keyserver keyserver.ubuntu.com --recv-keys 8D69674686<br>
    -bash: gpg: command not found<br>

    </div>
    <p>I've run a find in /usr and also checked /usr/bin and&nbsp; /usr/sbin plus /usr/local/bin manually just in case the issue was my PATH.&nbsp; No luck there either.</p>
    <p><br>

    <p>Regards</p>
    <p>Brian<br>


    <div style="color: rgb(0, 0, 0);">
    <div>
    <hr tabindex="-1" style="display:inline-block; width:98%">
    <div id="x_divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" face="Calibri, sans-serif" color="#000000"><b>From:</b> Brian2 &lt;brian@siberianboxes.com&gt;<br>
    <b>Sent:</b> Saturday, March 25, 2023 11:59 AM<br>
    <b>To:</b> John Paul Adrian Glaubitz<br>
    <b>Cc:</b> debian-sparc@lists.debian.org<br>
    <b>Subject:</b> RE: V210 booted from iso and installed but could not find mirror?</font>
    <div>&nbsp;</div>
    </div>
    </div>
    <font size="2"><span style="font-size:10pt;">
    <div class="PlainText">Thanks so much Adrian!<br>
    I seem to be chasing my tail a bit though as I am getting that wget is not installed so can't install the keyring to install stuff...<br>

    root@daffy:/etc/apt# wget<br>
    -bash: wget: command not found<br>
    root@daffy:/etc/apt# apt-get install wget<br>
    Reading package lists... Done<br>
    Building dependency tree... Done<br>
    Reading state information... Done<br>
    Package wget is not available, but is referred to by another package.<br>
    This may mean that the package is missing, has been obsoleted, or<br>
    is only available from another source<br>

    E: Package 'wget' has no installation candidate<br>

    Regards<br>
    Brian<br>

    -----Original Message-----<br>
    From: John Paul Adrian Glaubitz &lt;glaubitz@physik.fu-berlin.de&gt; <br>
    Sent: Saturday, March 25, 2023 9:05 AM<br>
    To: Brian2 &lt;brian@siberianboxes.com&gt;<br>
    Cc: debian-sparc@lists.debian.org<br>
    Subject: Re: V210 booted from iso and installed but could not find mirror?<br>

    Hi Brian!<br>

    On Fri, 2023-03-24 at 03:07 &#43;0000, Brian2 wrote:<br>
    &gt; Booting from the iso in the DVD allowed me to install without an issue. <br>

    Great.<br>

    &gt; However, I was unable to find a mirror to download any packages from. <br> &gt; I'm only after basic stuff like tcsh, alpine, openssh-server, etc.<br> &gt; <br>
    &gt; What are my next steps now to make this system useful?<br>

    Make sure you have these lines in your /etc/apt/sources.list:<br>

    # binary default<br>
    deb <a href="http://ftp.ports.debian.org/debian-ports/" id="LPlnk170176" previewremoved="true">
    http://ftp.ports.debian.org/debian-ports/</a> unstable main deb <a href="http://incoming.ports.debian.org/buildd/" id="LPlnk532423" previewremoved="true">
    http://incoming.ports.debian.org/buildd/</a> unstable main deb <a href="http://ftp.ports.debian.org/debian-ports/" id="LPlnk568709" previewremoved="true">
    http://ftp.ports.debian.org/debian-ports/</a> unreleased main<br>

    # contrib and non-free arch:all packages (i.e. firmware) deb [arch=all] <a href="http://ftp.debian.org/debian/" id="LPlnk497460" previewremoved="true">
    http://ftp.debian.org/debian/</a> unstable contrib non-free<br>

    # source<br>
    deb-src <a href="http://ftp.debian.org/debian/" id="LPlnk144247" previewremoved="true">
    http://ftp.debian.org/debian/</a> unstable main deb-src <a href="http://incoming.debian.org/debian-buildd/" id="LPlnk950553" previewremoved="true">
    http://incoming.debian.org/debian-buildd/</a> buildd-unstable main<br>

    You can fetch the file from here:<br>

    &gt; <a href="https://people.debian.org/~glaubitz/sources.list" id="LPlnk560320" previewremoved="true">
    https://people.debian.org/~glaubitz/sources.list</a><br>

    You may have to install the Debian Ports Archive Keyring:<br>

    # wget <a href="http://ftp.ports.debian.org/debian-ports/pool/main/d/debian-ports-archive-keyring/debian-ports-archive-keyring_2023.02.01_all.deb" id="LPlnk504575" previewremoved="true">
    http://ftp.ports.debian.org/debian-ports/pool/main/d/debian-ports-archive-keyring/debian-ports-archive-keyring_2023.02.01_all.deb</a><br>
    # dpkg -i debian-ports-archive-keyring_2023.02.01_all.deb<br>

    before running:<br>

    # apt update<br>

    &gt; Thanks Adrian for keeping Debian alive on Sparc.<br>

    You're welcome.<br>

    &gt; Now to add a second CPU to this box and up the RAM a bit.<br>

    Good idea.<br>

    Adrian<br>

    --<br>
    &nbsp;.''`.&nbsp; John Paul Adrian Glaubitz<br>
    : :' :&nbsp; Debian Developer<br>
    `. `'&nbsp;&nbsp; Physicist<br>
    &nbsp; `-&nbsp;&nbsp;&nbsp; GPG: 62FF 8A75 84E0 2956 9546&nbsp; 0006 7426 3B37 F5B5 F913<br>
    </div>
    </span></font></div>
    </div>
    </body>
    </html>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Gregor Riepl@21:1/5 to All on Sat Mar 25 12:20:01 2023
    Also got a kernel panic with vsftpd.

    Is this with the SMP kernel?
    You should try the normal one first, it works very stable on my V215.
    I get crashes all over the the place with the SMP kernel.

    Unfortunately, that means you'll only have one CPU available...

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Brian Noonan on Sat Mar 25 13:20:01 2023
    Hi Brian!

    On Sat, 2023-03-25 at 10:39 +0000, Brian Noonan wrote:
    Thanks Adrian!
    That appears to work!
    Now installing packages. But i just got a kernel panic with openssh-server. 😞

    Try installing and booting an older kernel first:

    # wget http://snapshot.debian.org/archive/debian-ports/20190719T183113Z/pool-sparc64/main/l/linux/linux-image-4.19.0-5-sparc64-smp_4.19.37-6_sparc64.deb
    # dpkg -i linux-image-4.19.0-5-sparc64-smp_4.19.37-6_sparc64.deb

    Newer kernels are known to be unstable on older sparc64 machines.

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)