Unable to locate package dvswitch-server
I am trying to install DVswitch in the cloud. When I follow the step by step process I get this error when I try to install the DVswitch server
root@dvswitch:~# apt install dvswitch-server --dry-runReading package lists... DoneBuilding dependency treeReading state information... DoneE: Unable to locate package dvswitch-serverroot@dvswitch:~#
Hit:3 http://dvswitch.org/ASL_Repository stretch InRelease <----------- This is wrong.
root@dvswitch:~# apt updateHit:1 http://us.archive.ubuntu.com/ubuntu xenial InReleaseGet:2 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]Hit:3 http://dvswitch.org/ASL_Repository stretch InReleaseGet:4 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]Get:5 http://security.ubuntu.com/ubuntu xenial-security InRelease [109 kB]Fetched 325 kB in 0s (425 kB/s)Reading package lists... DoneBuilding dependency treeReading state information... DoneAll packages are up to date.
Debian 6.0.6 x86 Minimal v1 (gen2) The Debian Project is an association of individuals who have made common cause to create a free operating system. |
||
![]() |
Debian 7.0 x64 Debian 7.0.0 x64 Minimal v1 (gen 2) - Min 2GB HDD |
|
![]() |
Debian 7.0.0 x86 Minimal v1 (gen 2) Debian 7.0.0 x86 Minimal v1 (gen 2) - Min 2GB HDD |
|
![]() |
Debian 7.3.0 x86 Minimal v1 (gen 2) Debian 7.0.0 x86 Minimal v1 (gen 2) - Min 2GB HDD |
|
![]() |
Debian 8.0 x86_64 Minimal v1 (gen 2) Debian is a free operating system (OS) for your computer. An operating system is the set of basic programs and utilities that make your computer run. Debian provides more than a pure OS: it comes with over 37500 packages, precompiled software bundled up in a nice format for easy installation on your machine. |
|
![]() |
Debian 9 64bit Minimal |
I was following the step by step in the files section about installing it in an existing linux installation but I now see where it's running Ubuntu by default. Do I need to install Debian instead? If so these are my options:
Debian 6.0.6 x86 Minimal v1 (gen2)
The Debian Project is an association of individuals who have made common cause to create a free operating system.Debian 7.0 x64
Debian 7.0.0 x64 Minimal v1 (gen 2) - Min 2GB HDDDebian 7.0.0 x86 Minimal v1 (gen 2)
Debian 7.0.0 x86 Minimal v1 (gen 2) - Min 2GB HDDDebian 7.3.0 x86 Minimal v1 (gen 2)
Debian 7.0.0 x86 Minimal v1 (gen 2) - Min 2GB HDDDebian 8.0 x86_64 Minimal v1 (gen 2)
Debian is a free operating system (OS) for your computer. An operating system is the set of basic programs and utilities that make your computer run. Debian provides more than a pure OS: it comes with over 37500 packages, precompiled software bundled up in a nice format for easy installation on your machine.Debian 9 64bit Minimal
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
I have the same issue with Buster
I was able to manually update packages until ssh-client/server
and one other related
Stopped till I have time to fool with it again.
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
No, back up a step, I talking system.
apt update
apt apgrade
That script is the first step. It adds the buster repo.
On 2/14/21 3:06 PM, Mike KB8JNM wrote:
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
It did work a week or more ago, then something changed with the packages for system.
No, back up a step, I talking system.
apt update
apt apgrade
On 2/14/2021 3:08 PM, Steve N4IRS wrote:
That script is the first step. It adds the buster repo.
On 2/14/21 3:06 PM, Mike KB8JNM wrote:
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
step one:
Make sure your existing system is up to date.
apt update
apt upgrade
What is wrong there?
No, back up a step, I talking system.
apt update
apt apgrade
On 2/14/2021 3:08 PM, Steve N4IRS wrote:
That script is the first step. It adds the buster repo.
On 2/14/21 3:06 PM, Mike KB8JNM wrote:
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
That is where it takes system updates but can not install them all.
I'm pretty sure that is what the other fella was having a issue
with but can't speak to that if it was not buster
OK,
step one:
Make sure your existing system is up to date.
apt update
apt upgrade
What is wrong there?
On 2/14/21 3:10 PM, Mike KB8JNM wrote:
No, back up a step, I talking system.
apt update
apt apgrade
On 2/14/2021 3:08 PM, Steve N4IRS wrote:
That script is the first step. It adds the buster repo.
On 2/14/21 3:06 PM, Mike KB8JNM wrote:
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
It did work a week or more ago, then something changed with the packages for system.
On 2/14/2021 3:10 PM, Mike KB8JNM wrote:
No, back up a step, I talking system.
apt update
apt apgrade
On 2/14/2021 3:08 PM, Steve N4IRS wrote:
That script is the first step. It adds the buster repo.
On 2/14/21 3:06 PM, Mike KB8JNM wrote:
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
That is where it takes system updates but can not install them all.
I'm pretty sure that is what the other fella was having a issue with but can't speak to that if it was not buster
On 2/14/2021 3:12 PM, Steve N4IRS wrote:
OK,
step one:
Make sure your existing system is up to date.
apt update
apt upgrade
What is wrong there?
On 2/14/21 3:10 PM, Mike KB8JNM wrote:
No, back up a step, I talking system.
apt update
apt apgrade
On 2/14/2021 3:08 PM, Steve N4IRS wrote:
That script is the first step. It adds the buster repo.
On 2/14/21 3:06 PM, Mike KB8JNM wrote:
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
Perhaps the packages have been fixed. Have not done it for a few days.
I just did it this morning and have done it quite a few times over the last few days.
On 2/14/21 3:12 PM, Mike KB8JNM wrote:
It did work a week or more ago, then something changed with the packages for system.
On 2/14/2021 3:10 PM, Mike KB8JNM wrote:
No, back up a step, I talking system.
apt update
apt apgrade
On 2/14/2021 3:08 PM, Steve N4IRS wrote:
That script is the first step. It adds the buster repo.
On 2/14/21 3:06 PM, Mike KB8JNM wrote:
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf
Originally, it left me with 9
I installed them manually, all but 3
ssh client and server and one other network package.
are you saying that apt upgrade does not install updates?
On 2/14/21 3:14 PM, Mike KB8JNM wrote:
That is where it takes system updates but can not install them all.
I'm pretty sure that is what the other fella was having a issue with but can't speak to that if it was not buster
On 2/14/2021 3:12 PM, Steve N4IRS wrote:
OK,
step one:
Make sure your existing system is up to date.
apt update
apt upgrade
What is wrong there?
On 2/14/21 3:10 PM, Mike KB8JNM wrote:
No, back up a step, I talking system.
apt update
apt apgrade
On 2/14/2021 3:08 PM, Steve N4IRS wrote:
That script is the first step. It adds the buster repo.
On 2/14/21 3:06 PM, Mike KB8JNM wrote:
The issue was not with the install script.
Never got that far.
The issue was updated repository's that are broken.
On 2/14/2021 3:05 PM, Steve N4IRS wrote:
This is the buster script:
#!/usr/bin/env bash
set -o errexit
# N4IRS 10/25/2020
#################################################
# #
# Add DVSwitch Repository and gpg key #
# #
#################################################
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
echo "either run as root or with sudo"
exit
fi
distribution=buster
# INSTALL gnupg needed for gpg.key
[ ! -x "/usr/bin/gpg" ] && apt-get install gnupg -y
# Add the backport repository, if needed to install monit
if [ $(apt-cache policy monit | grep -c "Candidate: (none)") -eq 1 ] ; then
# add repository
printf "%s\n" "deb http://ftp.de.debian.org/debian buster-backports main" | tee /etc/apt/sources.list.d/buster-backports.list
fi
# INSTALL netstat needed by dvswitch.sh
[ ! -x "/bin/netstat" ] && apt-get install net-tools -y
# Check for rc.local and create if not found.
FILE="/etc/rc.local"
if [ ! -f "$FILE" ] ; then
echo '#!/bin/sh -e' > $FILE
echo '' >> $FILE
echo 'exit 0' >> $FILE
chmod +x $FILE
fi
# Are the repos installed
# Should this test for buster too?
if [ -f /etc/apt/sources.list.d/dvswitch.list ]
then
echo "The Repository file already exists, exiting"
exit 0
fi
# Install the key and add the repo
wget -O - http://dvswitch.org/DVSwitch_Repository/dvswitch.gpg.key | apt-key add -
echo "# Official DVSwitch repository" >/etc/apt/sources.list.d/dvswitch.list
echo "deb http://dvswitch.org/DVSwitch_Repository $distribution hamradio" >>/etc/apt/sources.list.d/dvswitch.list
echo "#" >>/etc/apt/sources.list.d/dvswitch.list
apt-get update
# print the installed repositories
echo "Installed repositories:"
apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
I don't see any way it would install a pointer to http://dvswitch.org/ASL_Repository stretch
On 2/14/21 3:00 PM, Mike KB8JNM wrote:
I have the same issue with Buster
I was able to manually update packages until ssh-client/server and one other related
Stopped till I have time to fool with it again.
On 2/14/2021 2:48 PM, Steve N4IRS wrote:
I assume you mean this:
wget http://dvswitch.org/buster
sudo chmod +x buster
sudo ./buster
sudo apt-get update
sudo apt-get install dvswitch-server
The buster script would have either added the buster repository or told you that it was already installed.
Check /etc/apt/sources.list.d/allstarlink.list
deb http://dvswitch.org/DVSwitch_Repository buster hamradio
Then:
apt-get update
apt-get install dvswitch-server
Steve N4IRS
On 2/14/21 2:40 PM, David - W9DWH/4 via groups.io wrote:
http://dvswitch.org/DVSwitch_install.pdf