After installing POSBOX let it boot with ethernet connected

 

login with ssh with user pi and raspberry as password.

 

1Disable Ramdisks

 

mount -o remount,rw /

mount -o remount,rw /root_bypass_ramdisk

 

vi /root_bypass_ramdisks/etc/fstab

 

change / from ro to rw

 

 

vi /home/pi/odoo/addons/point_of_sale/tools/posbox/configuration/setup_ramdisks.sh

 

 

comment out create_ramdisk

mount –bind / /root_bypass_ramdisks

 

 

 

reboot

 

 

2Reset Passwords

 

login again with ssh

 

sudo su -

passwd pi

 

set new password

 

Change hostname

 

vi /etc/hosts

 

change 127.0.1.1 raspberrypi to 127.0.1.1 <NEW_HOSTNAME>

 

vi /etc/hostname

 

change raspberrypi to <NEW_HOSTNAME>

 

 

3configure network


vi /etc/network/interfaces



insert the following lines:


auto eth0
iface eth0 inet static
address 192.168.20.12x
netmask 255.255.255.0

allow-hotplug wlan0
auto wlan0
iface wlan0 inet static
address 192.168.20.13x
netmask 255.255.255.0
wpa-ssid "AAPT_YES_4"
wpa-psk "PASSWORD"




4configure default gateway and DNS


vi /etc/nerwork/interfaces


add the follwong lines:


 dns-nameservers 8.8.8.8

gateway 192.168.20.1


 

reboot

My Articles are a collection of short reading texts I have placed here to help me remember things I consider important to remember.

How I use SSL?

 

SSL is a way to encrypt traffic between server and browser. Since this traffic includes my login and password details when I login to my server and although I don't think hacking my server would not make anyone rich and me poor, I fill better knowing that the server I build I use exclusively.

 

For these reason implementation of SSL on my server is necessary. However, I do not wish to spend lots of money and am comfortable with the fact that serious hackers can still crack the expensive encryption, I and happy to deter the amateurs and installed a free SSL certificate from:

 

https://www.sslforfree.com

 

One word about this service.. while its drawback is a short 3 month life of the certificate, you can have no restrictions as to what the certificate will cover. This includes Wildcards as well as multiple domains on one certificate. This last one is normally not available through the payed SSL service since one certificate is created for one domain. However with www.sslforfree.com service I can create certificate for multiple domains and protect them all from one server IP address running the domains on separate virtual hosts with one certificate. Very significant improvment..

 

This, I suspect will create major change in the IT industry, as up till now, one had to have multiple IP addresses to host multiple domain certificates. The site www.sslforfree.com is non for profit and I even could not find a donate button.

 

Happy surfing,

Fellow Surfer.