Page 1 of 1

New Raspberry Pi OS

PostPosted: Thu Aug 17, 2017 9:43 am
by jalves
I see in today's news that there is a new version of Raspberry Pi OS, Rasperrian Stretch, or something like that. Wondering if this will have any adverse affect on the plugin.

Re: New Raspberry Pi OS

PostPosted: Fri Aug 18, 2017 6:45 am
by kw123
If you don't use it likely not..
I strongly suggest not to use v.0 of anything.
Anyway that happens every year .. will test when I am back home.


Sent from my iPhone using Tapatalk

Re: New Raspberry Pi OS

PostPosted: Fri Aug 18, 2017 6:49 am
by kw123
Just looking at the description for Debian stretch.
Userid pi can not switch on sudo without password.
And pi is not the default id.

That will need some work.


Sent from my iPhone using Tapatalk

Re: New Raspberry Pi OS

PostPosted: Fri Aug 18, 2017 8:00 am
by jalves
Thanks for the look Karl. I suspected the login/SUDO stuff would be a problem.

It matters not to me right now because I've yet to implement this plugin. I've been gathering the needed hardware (pi's and beacons) for a while. Just haven't had time to pull it all together so far.

New Raspberry Pi OS

PostPosted: Fri Aug 18, 2017 8:39 am
by kw123
Just use the current posted sd Image.

Jessie will be supported for some several months and the plugin does not require any facing things anyway.



Sent from my iPhone using Tapatalk

Re: New Raspberry Pi OS

PostPosted: Fri Sep 08, 2017 7:54 pm
by kw123
just tried to use "stretch" an can not get ssh to work..
-enabled in sudo rasps-config
- added /boot/ssh file

finally found this:
http://yup-the-website-domain-is.mindginative.com/post/raspberrypi-ssh-connection-reset/

need to reconfigure opens server.. bad config files ..


seems to be running now. just starting to use it.. this will take a little while

Karl

Re: New Raspberry Pi OS

PostPosted: Sat Sep 09, 2017 7:01 am
by jalves
Appreciate you blazing the trail. Please let us know your experiences.

Re: New Raspberry Pi OS

PostPosted: Sat Sep 09, 2017 9:05 am
by kw123
another update on raspberry from jessie to stretch (debian versions)

it seems to work now.. some of the changes:

the output format of ifconfig has changed

from
Code: Select all
eth0      Link encap:Ethernet  HWaddr b8:27:eb:1b:1f:50 
          inet addr:192.168.1.22  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::b353:51f6:14af:313b/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:265423 errors:0 dropped:64 overruns:0 frame:0
          TX packets:22955 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:16819844 (16.0 MiB)  TX bytes:3578725 (3.4 MiB)
to
Code: Select all
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.29  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::dce1:1b86:bed4:154c  prefixlen 64  scopeid 0x20<link>
        ether b8:27:eb:db:92:4d  txqueuelen 1000  (Ethernet)
        RX packets 293588  bytes 21576528 (20.5 MiB)
        RX errors 0  dropped 64  overruns 0  frame 0
        TX packets 53652  bytes 12473747 (11.8 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0



so looking for "etho " has to also look for "eth0:" and
"inet addr: " changes to "inet "

and
"HWaddr b8:27:eb:1b:1f:50" => "ether b8:27:eb:1b:1f:50"

don't know why that was necessary .. or what the benefit is ..


still want to let it run for some days before I post the "stretch" version.


Karl