Linux Wifi Server
Set of scripts that allow a user to create Wifi Access Point. Creates WIFI session.
In my setup I create the Wifi server on ‘Edimax’ Wifi dongle.
This solution is obsolete on Ubuntu machines, since Ubuntu provides Wifi hotspot solution out of the box.
Easier to develop programs using HTTP than bluetooth between raspberry Access Point & client device
My own use cases:
transfer files from phone to laptop when I’m on a trip (laptop operation as Wifi Access Point)
Parts:
Provide public storage to path
[Shared]
comment = Public storage
path=/home/pi/Shared
read only=no
browseable=Yes
To be able to access samba share you have to create a samba user. At the beginning the OS user is not defined in samba.
For raspberry pi we can create samba user ‘pi’, define a password for it. It does not have to be the same as OS password.
sudo smbpasswd -a pi
By using pi user name we can access home pi directory. Otherwise we could not have these previliges out of the box.
automate via python script