Last release of Wheezy was July 2015 http://downloads.raspberrypi.org/raspbian/imagesnapajedlaci.cz wrote:Where do I download wheezy? Thank you for the URL.
After THREE MONTHS the OP would of found out I put the wrong date in, anyway Wheezy is EOL !!scruss wrote:May 2015, you mean: https://downloads.raspberrypi.org/raspb ... 015-05-07/
Because Jessie broke 4gb sd cards.scruss wrote:These answers stick around longer in search engines' memory than just the OP's query.
I can't see any reason for running Wheezy either, but people keep asking.
Which is why there is Jessie Lite.blaablaaguy wrote:Because Jessie broke 4gb sd cards.scruss wrote:These answers stick around longer in search engines' memory than just the OP's query.
I can't see any reason for running Wheezy either, but people keep asking.
Jessie Lites has no gui. Its only for the uber 31337kusti8 wrote:Which is why there is Jessie Lite.blaablaaguy wrote:Because Jessie broke 4gb sd cards.scruss wrote:These answers stick around longer in search engines' memory than just the OP's query.
I can't see any reason for running Wheezy either, but people keep asking.
blaablaaguy wrote: Jessie Lites has no gui. Its only for the uber 31337
Code: Select all
sudo apt-get install --no-install-recommends raspberrypi-ui-mods
It would be interesting to here what problems you have had with that on Jessie. It's next on my list of things to do.My reason to still use wheezy is that streaming camera works easier than in jessie.
Code: Select all
[Service]
WorkingDirectory=/home/pi/propanel
ExecStart=/usr/local/bin/node --expose-gc /home/pi/propanel/assets/server-bundle.js
Restart=always
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=propanel
User=root
Group=root
Environment=NODE_ENV=production
[Install]
WantedBy=multi-user.target
The issue with Wheezy is it does not natively boot on a RPi 3B or Zero, so you need an older RPi to update Wheezy first.Jednorozec wrote:Another reason to use Wheezy is that it doesn't use systemd(emonic). Also, the version of Nautilus is very much better than the one in Jessie.
You can see the issue here:Heater wrote:shuckle,It would be interesting to here what problems you have had with that on Jessie. It's next on my list of things to do.My reason to still use wheezy is that streaming camera works easier than in jessie.
There is a common problem mentioned several times in the forums that rc.local is not working with systemd as it used to work in wheezy. There is no quarantee that rc.local runs when the system is really up. I have had to add sleeps into rc.local so that my code works normally. Not a big deal, but nasty when you face it first time (and it slows down the jessie boot making it slower than wheezy)Heater wrote:Jednorozec,
I hear a lot of criticism of systemd. I have not looked into it enough to know how much of that is warranted. I however my experience with it on the desktop and the Pi has been as follows.
In general use one does not even know it's there. Seems to et everything working fine just like SysV Init did.
When do actually want get something running as a service at boot time a systemd .service file is short and sweet and sytemctl makes enable/disable, start/stop very easy. A lot nicer than hacking scripts.
Example: My propanel.service
Code: Select all
[Service] WorkingDirectory=/home/pi/propanel ExecStart=/usr/local/bin/node --expose-gc /home/pi/propanel/assets/server-bundle.js Restart=always StandardOutput=syslog StandardError=syslog SyslogIdentifier=propanel User=root Group=root Environment=NODE_ENV=production [Install] WantedBy=multi-user.target
I've commented on your first thread. If we can nail it down to a kernel/firmware vs VLC change, then it can be taken further.shuckle wrote:You can see the issue here:Heater wrote:shuckle,It would be interesting to here what problems you have had with that on Jessie. It's next on my list of things to do.My reason to still use wheezy is that streaming camera works easier than in jessie.
viewtopic.php?f=38&t=142279
I was able to get it to work by adding :demux=h264 as explained in
viewtopic.php?f=43&t=146597
But it still is not as reliable as with wheezy (where it has not yet ever failed).
there are better ways of running things at start using systemd than using rc.lcoalshuckle wrote:...
There is a common problem mentioned several times in the forums that rc.local is not working with systemd as it used to work in wheezy. There is no quarantee that rc.local runs when the system is really up. I have had to add sleeps into rc.local so that my code works normally. Not a big deal, but nasty when you face it first time (and it slows down the jessie boot making it slower than wheezy)
So the problem is that something changed. Admittedly that is a bit annoying when it happens beforerc.local is not working with systemd as it used to work in wheezy. There is no quarantee that rc.local runs when the system is really up. I have had to add sleeps into rc.local so that my code works normally. Not a big deal, but nasty when you face it first time
I took the last Raspbian Wheezy (2015-05-07) and updated it to run on pi zero & pi3 :fruitoftheloom wrote:The issue with Wheezy is it does not natively boot on a RPi 3B or Zero, so you need an older RPi to update Wheezy first.Jednorozec wrote:Another reason to use Wheezy is that it doesn't use systemd(emonic). Also, the version of Nautilus is very much better than the one in Jessie.