A
Archive-8
Guest
install the latest Raspbian Stretch Lite and enable ssh.
to enable ssh you simply create a file called ssh in the boot sector of the sd card. you can then log in to the pi via putty or similer.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y lighttpd
next install samba.
sudo apt-get install samba samba-common-bin
then configure smb.conf
sudo nano /etc/samba/smb.conf
add this
[share]
Comment = Pi shared folder
Path = /home/
Browseable = yes
Writeable = Yes
only guest = no
create mask = 0777
directory mask = 0777
Public = yes
Guest ok = yes
the to save ctrl plus x and hit yes, then run this command to set up a user
sudo smbpasswd -a pi
it will ask you to enter a password twice.
then run this command
sudo /etc/init.d/samba restart
samba should now be installed.
next we need install mono as virtual radar server is a windows program.
sudo apt-get install mono-complete
then install this
sudo apt-get install wget
mkdir VirtualRadar
cd VirtualRadar
wget http://www.virtualradarserver.co.uk/Files/VirtualRadar.tar.gz
wget http://www.virtualradarserver.co.uk/Files/VirtualRadar.exe.config.tar.gz
wget http://www.virtualradarserver.co.uk/Files/VirtualRadar.WebAdminPlugin.tar.gz
tar xvf VirtualRadar.tar.gz
tar xvf VirtualRadar.exe.config.tar.gz
tar xvf VirtualRadar.WebAdminPlugin.tar.gz
On the first run you will need to create an admin user and password so that you can get into web admin
then you should be able to log in to the admin page of virtual radar server
http://127.0.0.1:8080/VirtualRadar/WebAdmin/index.html
For second and subsequent runs do this (you can add this to a script to boot at start)
mono VirtualRadar/VirtualRadar.exe -nogui &
to enable ssh you simply create a file called ssh in the boot sector of the sd card. you can then log in to the pi via putty or similer.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y lighttpd
next install samba.
sudo apt-get install samba samba-common-bin
then configure smb.conf
sudo nano /etc/samba/smb.conf
add this
[share]
Comment = Pi shared folder
Path = /home/
Browseable = yes
Writeable = Yes
only guest = no
create mask = 0777
directory mask = 0777
Public = yes
Guest ok = yes
the to save ctrl plus x and hit yes, then run this command to set up a user
sudo smbpasswd -a pi
it will ask you to enter a password twice.
then run this command
sudo /etc/init.d/samba restart
samba should now be installed.
next we need install mono as virtual radar server is a windows program.
sudo apt-get install mono-complete
then install this
sudo apt-get install wget
mkdir VirtualRadar
cd VirtualRadar
wget http://www.virtualradarserver.co.uk/Files/VirtualRadar.tar.gz
wget http://www.virtualradarserver.co.uk/Files/VirtualRadar.exe.config.tar.gz
wget http://www.virtualradarserver.co.uk/Files/VirtualRadar.WebAdminPlugin.tar.gz
tar xvf VirtualRadar.tar.gz
tar xvf VirtualRadar.exe.config.tar.gz
tar xvf VirtualRadar.WebAdminPlugin.tar.gz
On the first run you will need to create an admin user and password so that you can get into web admin
Code:
mono VirtualRadar/VirtualRadar.exe -nogui -createadmin:admin -password:password
then you should be able to log in to the admin page of virtual radar server
http://127.0.0.1:8080/VirtualRadar/WebAdmin/index.html
For second and subsequent runs do this (you can add this to a script to boot at start)
mono VirtualRadar/VirtualRadar.exe -nogui &