minor updates

This commit is contained in:
morrownr 2022-01-22 19:08:52 -06:00
parent 5fc1cf3b42
commit 523194f116
4 changed files with 38 additions and 28 deletions

View File

@ -280,7 +280,7 @@ sudo zypper install -t pattern devel_kernel dkms
- Option for Solus - Option for Solus
``` ```
sudo eopkg install gcc linux-current-headers make git sudo eopkg install gcc linux-current-headers make git binutils
``` ```
- Options for Arch and Manjaro - Options for Arch and Manjaro
@ -370,13 +370,13 @@ to be included here.
Note: For automated builds, use _NoPrompt_ as an option. Note: For automated builds, use _NoPrompt_ as an option.
Note: Solus Linux does not support dkms and will require a manual build.
See `Manual build instructions` below.
``` ```
sudo ./install-driver.sh sudo ./install-driver.sh
``` ```
Note: Solus Linux does not support dkms and will require a manual build.
See `Manual build instructions` below.
Manual build instructions: The script `install-driver.sh` automates the Manual build instructions: The script `install-driver.sh` automates the
installation process, however, it may be necessary to build and install installation process, however, it may be necessary to build and install
the driver manually with some Linux distros: the driver manually with some Linux distros:

View File

@ -1,21 +1,33 @@
2021-12-15 2022-01-20
## Bridged Wireless Access Point ## Bridged Wireless Access Point
A bridged wireless access point (aka Dumb AP) works within an existing A bridged wireless access point (aka Dumb AP) works within an existing
ethernet network to add WiFi capability where it does not exist or to ethernet network to add WiFi capability where it does not exist or to
extend the network to WiFi capable computers and devices in areas where extend the network to WiFi capable computers and devices in areas where
the WiFi signal is weak or otherwise does not meet expectations. the WiFi signal is weak or otherwise does not meet expectations. One big
advantage of this setup is that it can cost far less than many of the
Mesh kits that are available. Another advantage this setup has over Mesh
kits is that the Raspberry Pi is a general purpose computer so it can be
used for additional tasks while performing as a Bridged Wireless Access
Point.
``` ```
INTERNET >>> modem/router >>> RasPi ))) ((( laptop INTERNET >>>>>>> modem/router >>>>>>> RasPi ))))) ((((( laptop
(cable) (cable)
(fiber) CAT 5e, 6 ((( phone (fiber) CAT 5e+ ((((( phone
(dsl) (dsl)
``` ```
Note: The connection from the router to the RasPi is begging for alternative Note: The connection from the router to the RasPi is best served by
solutions to meet different needs. Please feel free to make suggestions. a CAT 5e or greater ethernet cable but good alternatives exist. One
alternative is to use your existing electrical wiring by using
Powerline AV2 adapters. These adapters are also called Homeplug AV2
adapters and come in a variety of speeds and prices. I have had success
with Powerline AV2 adapters but success depends on the quality and setup
of the electrical wiring to be used. Anyone considering Powerline AV2
should research the issue and be prepared to the return the product if
it does not work well. I am exploring additional alternatives.
#### Single Band or Dual Band - Your Choice #### Single Band or Dual Band - Your Choice
@ -52,11 +64,11 @@ Netplan.
[Raspberry Pi OS (2021-10-30) (32 bit) (kernel 5.10)](https://www.raspberrypi.org/software/operating-systems/#raspberry-pi-os-32-bit) [Raspberry Pi OS (2021-10-30) (32 bit) (kernel 5.10)](https://www.raspberrypi.org/software/operating-systems/#raspberry-pi-os-32-bit)
Ethernet connection providing internet Ethernet and Powerline AV2 connections providing internet (both tested)
[USB WiFi Adapter(s)](https://github.com/morrownr/USB-WiFi) [USB WiFi Adapter(s)](https://github.com/morrownr/USB-WiFi)
[Case](https://www.amazon.com/dp/B07X8RL8SL) [Case](https://www.amazon.com/dp/B07T2CPC2H)
[Right Angle USB Extender](https://www.amazon.com/dp/B07S6B5X76) [Right Angle USB Extender](https://www.amazon.com/dp/B07S6B5X76)
@ -64,8 +76,9 @@ Ethernet connection providing internet
[SD Card](https://www.amazon.com/Samsung-Endurance-32GB-Micro-Adapter/dp/B07B98GXQT) [SD Card](https://www.amazon.com/Samsung-Endurance-32GB-Micro-Adapter/dp/B07B98GXQT)
Note: I use the case upside down. There are several little things that Note: I use the case upside down with little stick on rubber feet. There
work better with the case upside down and no negatives that I can find. are several little things that work better with the case upside down and
no negatives that I can find.
Note: Very few Powered USB 3 Hubs will work well with Raspberry Pi hardware. The Note: Very few Powered USB 3 Hubs will work well with Raspberry Pi hardware. The
primary problem has to do with the backfeeding of current into the Raspberry Pi. primary problem has to do with the backfeeding of current into the Raspberry Pi.
@ -149,21 +162,14 @@ The follow site provides links to adapters that support WPA3-SAE: [USB-WIFI](htt
----- -----
Update system. Update, upgrade and clean up the operating system.
``` ```
sudo apt update sudo apt update && sudo apt full-upgrade && sudo apt autoremove
``` ```
----- Note: Upgrading the operating system is not mandatory for this
installation but since some users forget to upgrade their system on a
Upgrade system. regular basis, maybe it is a good idea.
```
sudo apt full-upgrade
```
Note: Upgrading system is not mandatory for this installation but since some
users forget to upgrade their system on a regular basis, maybe it is a good idea.
----- -----
@ -211,6 +217,7 @@ dtoverlay=disable-bt
dtoverlay=disable-wifi dtoverlay=disable-wifi
# overclock CPU # overclock CPU
# (may not be required on current versions of the RasPiOS with a RasPi4B)
over_voltage=1 over_voltage=1
arm_freq=1600 arm_freq=1600
``` ```

View File

@ -57,6 +57,7 @@ hostnamectl | grep 'Operating System' | sed 's/ Operating System: //'
uname -r uname -r
# architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit # architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit
uname -m uname -m
# getconf LONG_BIT (need to work on this)
echo "Starting installation..." echo "Starting installation..."
# the add command requires source in /usr/src/${DRV_NAME}-${DRV_VERSION} # the add command requires source in /usr/src/${DRV_NAME}-${DRV_VERSION}

View File

@ -10,6 +10,8 @@
# #
# $ ./raspiOS-32.sh # $ ./raspiOS-32.sh
# getconf LONG_BIT (need to work on this)
sed -i 's/CONFIG_PLATFORM_I386_PC = y/CONFIG_PLATFORM_I386_PC = n/g' Makefile sed -i 's/CONFIG_PLATFORM_I386_PC = y/CONFIG_PLATFORM_I386_PC = n/g' Makefile
RESULT=$? RESULT=$?