Skip to content

Commit

Permalink
minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
morrownr committed Jan 23, 2022
1 parent 5fc1cf3 commit 523194f
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 32 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ sudo zypper install -t pattern devel_kernel dkms
- 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
Expand Down Expand Up @@ -370,13 +370,13 @@ to be included here.

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
```

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
installation process, however, it may be necessary to build and install
the driver manually with some Linux distros:
Expand Down
63 changes: 35 additions & 28 deletions docs/AP_Mode-Bridged_Wireless_Access_Point.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,33 @@
2021-12-15
2022-01-20

## Bridged Wireless Access Point

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
extend the network to WiFi capable computers and devices in areas where
the WiFi signal is weak or otherwise does not meet expectations.

```
INTERNET >>> modem/router >>> RasPi ))) ((( laptop
(cable) ╱ ╲
(fiber) CAT 5e, 6 ((( phone
(dsl)
```

Note: The connection from the router to the RasPi is begging for alternative
solutions to meet different needs. Please feel free to make suggestions.
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
(cable) ╱ ╲
(fiber) CAT 5e+ ((((( phone
(dsl)
```

Note: The connection from the router to the RasPi is best served by
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

Expand Down Expand Up @@ -52,20 +64,21 @@ Netplan.

[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)

[Case](https://www.amazon.com/dp/B07X8RL8SL)
[Case](https://www.amazon.com/dp/B07T2CPC2H)

[Right Angle USB Extender](https://www.amazon.com/dp/B07S6B5X76)

[Power Supply](https://www.amazon.com/dp/B08C9VYLLK)

[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
work better with the case upside down and no negatives that I can find.
Note: I use the case upside down with little stick on rubber feet. There
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
primary problem has to do with the backfeeding of current into the Raspberry Pi.
Expand Down Expand Up @@ -149,21 +162,14 @@ The follow site provides links to adapters that support WPA3-SAE: [USB-WIFI](htt

-----

Update system.
```
sudo apt update
```

-----

Upgrade system.

Update, upgrade and clean up the operating system.
```
sudo apt full-upgrade
sudo apt update && sudo apt full-upgrade && sudo apt autoremove
```

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.
Note: Upgrading the operating 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.

-----

Expand Down Expand Up @@ -211,6 +217,7 @@ dtoverlay=disable-bt
dtoverlay=disable-wifi
# overclock CPU
# (may not be required on current versions of the RasPiOS with a RasPi4B)
over_voltage=1
arm_freq=1600
```
Expand Down
1 change: 1 addition & 0 deletions install-driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ hostnamectl | grep 'Operating System' | sed 's/ Operating System: //'
uname -r
# architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit
uname -m
# getconf LONG_BIT (need to work on this)

echo "Starting installation..."
# the add command requires source in /usr/src/${DRV_NAME}-${DRV_VERSION}
Expand Down
2 changes: 2 additions & 0 deletions raspiOS-32.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
#
# $ ./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
RESULT=$?

Expand Down

0 comments on commit 523194f

Please sign in to comment.