Offline updates
This commit is contained in:
parent
7dd939f450
commit
67ac259301
|
@ -16,7 +16,7 @@ I owe a huge debt of gratitude to a number of people for keeping my enthusiasm a
|
||||||
|
|
||||||
**Tom Fanning M0LTE** - Tom's continued enthusiasm and knowledge of packet radio has helped keep mine alive and developing during our time working on the UK Packet Radio Network project, and you've proved to be a great sounding board for when I've had a half baked idea that needs development. Your ability to get shit done and your depth of knowledge means that people really look up to you and respect what you have to say - more than you realise.
|
**Tom Fanning M0LTE** - Tom's continued enthusiasm and knowledge of packet radio has helped keep mine alive and developing during our time working on the UK Packet Radio Network project, and you've proved to be a great sounding board for when I've had a half baked idea that needs development. Your ability to get shit done and your depth of knowledge means that people really look up to you and respect what you have to say - more than you realise.
|
||||||
|
|
||||||
The rest of the [OARC](https://oarc.uk). Y'all are a consistently fun community to be part of, and have kept the flame of my radio hobby alive for many years now - thanks to Paul M0TZE for bringing me in many years ago, and reminding me consistently of that time I was drunk in a field trying to transmit out of band. There is an exciting get-up-and-do it vibe to our community, and it has successfully overcome my natural recitence to dive in without research more than once, resulting in wonderful results.
|
The rest of the [OARC](https://oarc.uk). Y'all are a consistently fun community to be part of, and have kept the flame of my radio hobby alive for many years now - thanks to Paul M0TZO for bringing me in many years ago, and reminding me consistently of that time I was drunk in a field trying to transmit out of band. There is an exciting get-up-and-do it vibe to our community, and it has successfully overcome my natural recitence to dive in without research more than once, resulting in wonderful results.
|
||||||
|
|
||||||
The HAK5 podcast for sparking the first flame and introducing me to APRS and amateur radio way back in 2005/6/7. I have fond memories of hanging out in irc, talking nonsense and taking my first steps into becoming who I am now.
|
The HAK5 podcast for sparking the first flame and introducing me to APRS and amateur radio way back in 2005/6/7. I have fond memories of hanging out in irc, talking nonsense and taking my first steps into becoming who I am now.
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ There are a number of varieties of IL2P in the wild too, most commonly 'With CRC
|
||||||
|
|
||||||
We often use '1200', '1200bd' or similar as shorthand for how fast our data is sending and received. The 'bd' is baud, or the number of 'symbols' transmitted a second. For most of our communications, 1 baud is equivalent to 1 bit per second, however more exotic modulation can transmit more than one symbol at a time, buying us more speed!
|
We often use '1200', '1200bd' or similar as shorthand for how fast our data is sending and received. The 'bd' is baud, or the number of 'symbols' transmitted a second. For most of our communications, 1 baud is equivalent to 1 bit per second, however more exotic modulation can transmit more than one symbol at a time, buying us more speed!
|
||||||
|
|
||||||
We 3 broad speed categories at the moment:
|
We use 3 broad speed categories at the moment:
|
||||||
|
|
||||||
* Low - 300bd - used on HF
|
* Low - 300bd - used on HF
|
||||||
* Medium - 1200bd - used on VHF
|
* Medium - 1200bd - used on VHF
|
||||||
|
@ -176,7 +176,11 @@ Learn more about debugging:
|
||||||
|
|
||||||
### Ask for Help!
|
### Ask for Help!
|
||||||
|
|
||||||
It is easy to feel overwhelmed and alone as you struggle through debugging your system. Feel free to ask the community for help! No question is stupid, and we all started knowing nothing about this. Everyone is excited to have new stations and nodes to connect to, so will be thrilled to offer some form of pointer, assistance, input or advice. Please note, advice is a form of nostalgia: dispensing it is a way of fishing the past from the disposal, wiping it off, painting over the ugly parts and recycling it for more than it's worth.
|
It is easy to feel overwhelmed and alone as you struggle through debugging your system. Feel free to ask the community for help! No question is stupid, and we all started knowing nothing about this. Everyone is excited to have new stations and nodes to connect to, so will be thrilled to offer some form of pointer, assistance, input or advice.
|
||||||
|
|
||||||
|
!!! note
|
||||||
|
|
||||||
|
Please note, advice is a form of nostalgia: dispensing it is a way of fishing the past from the disposal, wiping it off, painting over the ugly parts and recycling it for more than it's worth.
|
||||||
|
|
||||||
There are a few great sources of assistance, some will be faster than others to get responses from:
|
There are a few great sources of assistance, some will be faster than others to get responses from:
|
||||||
|
|
||||||
|
|
|
@ -11,65 +11,65 @@ osver=`echo "$osstr" |sed 's/GNU\/Linux//g'`
|
||||||
case `echo $osver` in
|
case `echo $osver` in
|
||||||
"Debian 13"*)
|
"Debian 13"*)
|
||||||
echo "Installing GPG signing key, please wait..."
|
echo "Installing GPG signing key, please wait..."
|
||||||
# curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
||||||
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
||||||
echo "Adding Debian testing repository for OARC packages..."
|
echo "Adding Debian testing repository for OARC packages..."
|
||||||
# echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
||||||
# echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages testing main" >> /etc/apt/sources.list
|
echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages testing main" >> /etc/apt/sources.list
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Debian 12"*)
|
"Debian 12"*)
|
||||||
echo "Installing GPG signing key, please wait..."
|
echo "Installing GPG signing key, please wait..."
|
||||||
# curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
||||||
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
||||||
echo "Adding Debian stable repository for OARC packages..."
|
echo "Adding Debian stable repository for OARC packages..."
|
||||||
# echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
||||||
# echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages bookworm main" >> /etc/apt/sources.list
|
echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages bookworm main" >> /etc/apt/sources.list
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Ubuntu 22.04"*)
|
"Ubuntu 22.04"*)
|
||||||
echo "Installing GPG signing key, please wait..."
|
echo "Installing GPG signing key, please wait..."
|
||||||
# curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
||||||
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
||||||
echo "Adding Ubuntu jammy repository for OARC packages..."
|
echo "Adding Ubuntu jammy repository for OARC packages..."
|
||||||
# echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
||||||
# echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages jammy main" >> /etc/apt/sources.list
|
echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages jammy main" >> /etc/apt/sources.list
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Ubuntu 24.04"*)
|
"Ubuntu 24.04"*)
|
||||||
echo "Installing GPG signing key, please wait..."
|
echo "Installing GPG signing key, please wait..."
|
||||||
# curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
||||||
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
||||||
echo "Adding Ubuntu jammy repository for OARC packages..."
|
echo "Adding Ubuntu jammy repository for OARC packages..."
|
||||||
# echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
||||||
# echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages noble main" >> /etc/apt/sources.list
|
echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages noble main" >> /etc/apt/sources.list
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Raspbian 12"*)
|
"Raspbian 12"*)
|
||||||
echo "Installing GPG signing key, please wait..."
|
echo "Installing GPG signing key, please wait..."
|
||||||
# curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
||||||
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
||||||
echo "Adding Raspberry Pi OS stable repository for OARC packages..."
|
echo "Adding Raspberry Pi OS stable repository for OARC packages..."
|
||||||
# echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
||||||
# echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages bookworm main" >> /etc/apt/sources.list
|
echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages bookworm main" >> /etc/apt/sources.list
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Raspbian 11"*)
|
"Raspbian 11"*)
|
||||||
echo "Installing GPG signing key, please wait..."
|
echo "Installing GPG signing key, please wait..."
|
||||||
# curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
||||||
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
||||||
echo "Adding Raspberry Pi OS oldstable repository for OARC packages..."
|
echo "Adding Raspberry Pi OS oldstable repository for OARC packages..."
|
||||||
# echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
||||||
# echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages bullseye main" >> /etc/apt/sources.list
|
echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages bullseye main" >> /etc/apt/sources.list
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Debian 11"*)
|
"Debian 11"*)
|
||||||
echo "Installing GPG signing key, please wait..."
|
echo "Installing GPG signing key, please wait..."
|
||||||
# curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
curl https://online-amateur-radio-club-m0ouk.github.io/oarc-packages/hibby.key | tee /etc/apt/trusted.gpg.d/hibby.asc
|
||||||
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
echo -e "\033[32mGPG signing key installed correctly.\033[0m"
|
||||||
echo "Adding Raspberry Pi OS oldstable repository for OARC packages..."
|
echo "Adding Raspberry Pi OS oldstable repository for OARC packages..."
|
||||||
# echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
echo "#OARC Packet Radio Packages" >> /etc/apt/sources.list
|
||||||
# echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages bullseye main" >> /etc/apt/sources.list
|
echo "deb https://online-amateur-radio-club-m0ouk.github.io/oarc-packages bullseye main" >> /etc/apt/sources.list
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in New Issue