Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Linux
  3. Must fight temptation to buy an overpriced raspberry pi

Must fight temptation to buy an overpriced raspberry pi

Scheduled Pinned Locked Moved Linux
linux
266 Posts 144 Posters 2 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G [email protected]

    The day i can fit the power of a computer capable of emulating the switch 1 in a gameboy shell will be glorious.

    communist@lemmy.frozeninferno.xyzC This user is from outside of this forum
    communist@lemmy.frozeninferno.xyzC This user is from outside of this forum
    [email protected]
    wrote last edited by
    #107

    You probably could with a phone

    1 Reply Last reply
    6
    • C [email protected]

      I bet you could instead use an ESP32 for GPIO and just connect it remotely to whatever Pi alternative you use (if needed at all). Turning some switches on and off while monitoring input values doesn't sound very computationally intensive.

      humanpenguin@feddit.ukH This user is from outside of this forum
      humanpenguin@feddit.ukH This user is from outside of this forum
      [email protected]
      wrote last edited by
      #108

      Yep that can work. But ignores all the well documented and supported development community comments I pointed to while also indicating other options exist.

      As for.

      Turning some switches on and off while monitoring input values doesn’t sound very computationally intensive.

      You realise IO wise that describes your keyboard and mouse interaction on the most powerful gaming PCs.

      It's what you do with the results that matters.

      GPIO supports a fair bit more then the on and off input and output. It's slow compared to other systems. But has multiple serial protocols of differing types. Simple GUI displays can also be run via gpio connections. Low Res Lidar devices are available connected via the spi connections with all the data processed on that host PC.

      So no gpio use can require all levels of processing power post connection. It is after all designed for experimentation and prototyping.

      For my project. You clost to correct. I just use a simple GUI displays with xorg. So a pie 0 is plenty. And way lower power then the other options. It links to a pwm controller to power 2 12v 200w water tank heaters a relay for a 750w AC heater. Bluetooth connection to a BMS and solar MPPT. While operating multiple temp sensors measuring at different levels. And warning of legionaries risk. If the tank has not been over 65c in 14 days (actually 10 days but I'm over careful given the health status of my brother and I).

      So much less then the tiny Pie 0 would not be able to cope but mainly due to the need for the vision impaired interface. Speaking functions dose not take much. But doing so without being unusably slow is about the limit of a pie 0.

      A 1 Reply Last reply
      1
      • K [email protected]

        Power consumption is a massive reason to really not do that. Its cheap for a reason, its takes a shitload of power to be shit and you will pay more in energy than you save in hardware unless its only powered on for short periods of time - a server typically isn't.

        This is actually something that applies to cheap products too. Was in Asda a little while ago and saw 2 LED bulbs with the same lumen rating. Cheaper one used 3w more and you only saved £1. Running it for 8 hours a day for a year would cost double that saving in electricity. For a server you are looking at almost £2 per watt each year. Does that ewaste look so good to you now?

        Some things are absolutely worth getting second hand, but you really should be careful considering the power cost as well.

        Quick edit: If you don't need it running 24/7, consider something like AWS too. I love selfhosting but if its not running much it might be cheaper to not bother buying hardware.

        C This user is from outside of this forum
        C This user is from outside of this forum
        [email protected]
        wrote last edited by
        #109

        I'm not taking electronics advice from someone who uses the term lappies.

        H 1 Reply Last reply
        24
        • B [email protected]

          Laptops are not generally designed to run like that with a closed lid. Heat dissipation is designed around the idea the laptop is open and some of it is through the keyboard surface. The lid closed would change that.

          Systems can of course be setup to power off the display but for server/service uses open laptops may not be efficient space wise.

          Having said that if the scenario is low power use the heat dissipation may not be a major issue. But if there is an unremovable battery i'd still be concerned about heat dissipation with the lid closed and even just the battery itself regardless of heat dissipiation.

          umbrella@lemmy.mlU This user is from outside of this forum
          umbrella@lemmy.mlU This user is from outside of this forum
          [email protected]
          wrote last edited by [email protected]
          #110

          really depends on the laptop. a lot of laptops exhaust off the side.

          1 Reply Last reply
          6
          • H [email protected]

            I mostly agree, and did the same with my second gen lab build - instead of shiny new NUCs like I had used round 1, I bought old off lease Dell Xeon boxes. SO MANY PROS -

            • Got them up to 14c/28t each
            • They can take GPUs and actually do heavy transcoding/ML work
            • They can take up to like, 128GB of memory, which is GREAT when they're all hypervisors

            The downsides can't be denied though -

            • Even without the GPUs and beefed up CPUs, they are power hogs - the CPU alone uses more than an ENTIRE NUC
            • They run HOT
            • They run LOUD

            The same holds true for off-lease SFF stuff, Lenovo and the likes ...

            So while reuse/repurpose is absolutely of the utmost importance, no question - when it comes to technology and how quickly it advances and miniaturizes, a thorough and logical pros/cons list is often required.

            I'd add another option though - if you do need what a Pi brings to the table - do you really need a shiny new Pi 5? Is it possible a used Pi 3 or Pi 4 would do the trick, and check the reuse box?

            A This user is from outside of this forum
            A This user is from outside of this forum
            [email protected]
            wrote last edited by
            #111

            The power aspect is a lot bigger of a factor than I would have thought. I had an old computer I was going to use as a server for Foundry that I could keep up all the time, but when I measured its wattage and did the math, it would cost me $20 a month to keep on. A pi costs like $2 to keep running, so it paid for itself pretty quick

            1 Reply Last reply
            4
            • humanpenguin@feddit.ukH [email protected]

              Yep that can work. But ignores all the well documented and supported development community comments I pointed to while also indicating other options exist.

              As for.

              Turning some switches on and off while monitoring input values doesn’t sound very computationally intensive.

              You realise IO wise that describes your keyboard and mouse interaction on the most powerful gaming PCs.

              It's what you do with the results that matters.

              GPIO supports a fair bit more then the on and off input and output. It's slow compared to other systems. But has multiple serial protocols of differing types. Simple GUI displays can also be run via gpio connections. Low Res Lidar devices are available connected via the spi connections with all the data processed on that host PC.

              So no gpio use can require all levels of processing power post connection. It is after all designed for experimentation and prototyping.

              For my project. You clost to correct. I just use a simple GUI displays with xorg. So a pie 0 is plenty. And way lower power then the other options. It links to a pwm controller to power 2 12v 200w water tank heaters a relay for a 750w AC heater. Bluetooth connection to a BMS and solar MPPT. While operating multiple temp sensors measuring at different levels. And warning of legionaries risk. If the tank has not been over 65c in 14 days (actually 10 days but I'm over careful given the health status of my brother and I).

              So much less then the tiny Pie 0 would not be able to cope but mainly due to the need for the vision impaired interface. Speaking functions dose not take much. But doing so without being unusably slow is about the limit of a pie 0.

              A This user is from outside of this forum
              A This user is from outside of this forum
              [email protected]
              wrote last edited by
              #112

              Any photos of the boat and setup?

              humanpenguin@feddit.ukH 1 Reply Last reply
              0
              • R [email protected]

                but what will fix the fire hazard of the charger? how will you be able to keep it plugged in 24/7?

                E This user is from outside of this forum
                E This user is from outside of this forum
                [email protected]
                wrote last edited by
                #113

                I do SMB support, so I have a pretty good idea of what people tend to do.

                I haven't seen a PS brick catch fire (possible, OFC, but extremely rare in my opinion) i have seen a PC PSU catch fire, and because of the fan, it's fucking scsry, like a jet with the afterburner.

                1 Reply Last reply
                1
                • crmsnbleyd@sopuli.xyzC [email protected]

                  original post: https://mk.moth.zone/notes/a8zer7ypj6uv02ka

                  C This user is from outside of this forum
                  C This user is from outside of this forum
                  [email protected]
                  wrote last edited by
                  #114

                  I would say it can sometimes be nice to have an old
                  Laptop for this purpose, you have to slightly over build your solar but can be nice to have a mouse and keyboard attached and monitor, ssh works. Still have an hp laptop with a core i5 2nd gen sitting out in my greenhouse, is a little more power hungry but not terrible on idle, and is nice to be able to configure changes to watering without going back inside or wrecking the zen by bringing phone.

                  1 Reply Last reply
                  12
                  • T [email protected]

                    Except in Vancouver. It’s a Craigslist city.

                    K This user is from outside of this forum
                    K This user is from outside of this forum
                    [email protected]
                    wrote last edited by
                    #115

                    Interesting.. I wonder why?

                    1 Reply Last reply
                    3
                    • S [email protected]

                      I'm just lucky enough to have one at my apartment building, and very wasteful neighbors.

                      L This user is from outside of this forum
                      L This user is from outside of this forum
                      [email protected]
                      wrote last edited by
                      #116

                      Back when I lived in a (quite nice) apartment building I was constantly surprised at the things people threw out. Perfectly good furniture but also stuff like perfectly functional printers, artwork, computer cases...

                      T 1 Reply Last reply
                      2
                      • R [email protected]

                        I wouldn't touch Facebook with a 10' ethernet cable. Haven't heard of kjiji, I'll have to check it out.

                        L This user is from outside of this forum
                        L This user is from outside of this forum
                        [email protected]
                        wrote last edited by
                        #117

                        You're missing out, Facebook marketplace is THE place to buy local secondhand goods for dirt cheap without getting scammed. You do need an account but you don't need to install anything, and the payments are not done through FB

                        1 Reply Last reply
                        2
                        • C [email protected]

                          I think this really depends on the model they're eyeballing because the Pi5 is frankly ridiculous for the price and has absurd power requirements (5V5A USB?). I wouldn't recommend one of these unless you have a specific need like a certain hat or the GPIO pins. You can get a Dell micro Optiplex for less money and have a full fledged i5 or i7 processor with similar power usage.

                          Plus the RPi Foundation exposed themselves as the greedy bastards they are during COVID which is yet another reason to turn your back on them.

                          For something like a Pi Zero, maybe go for it, but there are similar devices out there from other companies too.

                          L This user is from outside of this forum
                          L This user is from outside of this forum
                          [email protected]
                          wrote last edited by
                          #118

                          You can get a Dell micro Optiplex for less money and have a full fledged i5 or i7 processor with similar power usage.

                          Absolutely, I've got a cluster of mini PCs with 7th/8th gen T sku i7s, plus an Optiplex SFF running a standard i7-7700, and everything together draws less than 100W on average.

                          1 Reply Last reply
                          0
                          • J [email protected]

                            There's lots of ways to make existing hardware more efficient at the cost of performance. Under-volting the CPU and RAM (or just putting them in "efficiency" mode) can probably save more electricity than you lose in generational improvements. Considering how much more powerful PCs are compared to SBCs, you'd probably still have better performance than an SBC. Also, a more powerful CPU that takes double the power but as a result can idle for more than 50% of the time would be more efficient than a less powerful CPU never idling.

                            There's a lot of other variables (like idle power draw, efficiency at various power levels, idle latency, etc), but in general I think your statement would be inaccurate at least 60% of the time.

                            K This user is from outside of this forum
                            K This user is from outside of this forum
                            [email protected]
                            wrote last edited by
                            #119

                            Oh I am not saying specifically get a raspberry pi, personally looking at a bee-link N150 mini PC. It isn't even that much more expensive than the 16GB raspberry pi and as its x86 I can just run normal debian installs in proxmox.

                            A 1 Reply Last reply
                            5
                            • B [email protected]

                              If you have the lid closed, you're looking at 3 to 15 watts to have a laptop running in the background doing some basic server shit.

                              Maybe a little more under high load, but those are going to be intermittent and not constant.

                              I'm just saying it's not that much more electricity usage, and the recycling more than offsets the CO2.

                              L This user is from outside of this forum
                              L This user is from outside of this forum
                              [email protected]
                              wrote last edited by
                              #120

                              Not so sure about the last part. It takes ehhh about 3kg of c02 to produce 1 Watt for a year. Carbon footprint to build a laptop is about 200kg or so, but you're not offsetting one of those you're offsetting the raspberry PI you WOULD have bought which is just a small fraction of that. After a year or 2 you've almost certainly burned through your c02 savings if it's on all the time.

                              A 1 Reply Last reply
                              1
                              • crmsnbleyd@sopuli.xyzC [email protected]

                                original post: https://mk.moth.zone/notes/a8zer7ypj6uv02ka

                                V This user is from outside of this forum
                                V This user is from outside of this forum
                                [email protected]
                                wrote last edited by
                                #121

                                I have one of those 8.1 laptops - I LITERALLY fished it out of a dumpster.

                                1 Reply Last reply
                                28
                                • R [email protected]

                                  Laptop performance when closed is quite variable, but depending on where you live, each 10W of idle consumption 24/7/365 could cost you somewhere around $20/yr (assumes @$0.20/kWh, YMMV). This isn't overwhelming on it's own, but it is "cost difference between a junked laptop and a Raspberry Pi" kinda money.

                                  justenoughducks@feddit.nlJ This user is from outside of this forum
                                  justenoughducks@feddit.nlJ This user is from outside of this forum
                                  [email protected]
                                  wrote last edited by
                                  #122

                                  And you are often paying 140-200 for a pi nowadays to make it have the same usability as a laptop (pi, power supply, sata hat, data drive because SD cards simply fail after a while under server IO) while you can get cheap used laptops for 0-100.

                                  So unless you are running it for more than half a decade (which rarely happens with selfhosters for a main server), you are probably spending more in total on the pi.

                                  R 1 Reply Last reply
                                  5
                                  • K [email protected]

                                    Power consumption is a massive reason to really not do that. Its cheap for a reason, its takes a shitload of power to be shit and you will pay more in energy than you save in hardware unless its only powered on for short periods of time - a server typically isn't.

                                    This is actually something that applies to cheap products too. Was in Asda a little while ago and saw 2 LED bulbs with the same lumen rating. Cheaper one used 3w more and you only saved £1. Running it for 8 hours a day for a year would cost double that saving in electricity. For a server you are looking at almost £2 per watt each year. Does that ewaste look so good to you now?

                                    Some things are absolutely worth getting second hand, but you really should be careful considering the power cost as well.

                                    Quick edit: If you don't need it running 24/7, consider something like AWS too. I love selfhosting but if its not running much it might be cheaper to not bother buying hardware.

                                    A This user is from outside of this forum
                                    A This user is from outside of this forum
                                    [email protected]
                                    wrote last edited by [email protected]
                                    #123

                                    Yes actually still sounds good. Raspberry Pis actually have quite high power draw compared to the performance they give. Like sure the number might be smallish but the performance they give and functionality they have is awful compared to even a mini PC which use similar power. Mini PCs btw are actually one of the best options in performance per watt and can still be cheap, plus they have upgradable RAM and storage. A Mac mini is more expensive but will thrash everything else in efficiency and performance per watt, although non-upgradable. Even slightly older laptops will only draw tens of watts when fully charged, vs a desktop or proper server that could pull 100W even at idle in some cases. Older laptops tended to be more upgradable too.

                                    C 1 Reply Last reply
                                    14
                                    • K [email protected]

                                      Oh I am not saying specifically get a raspberry pi, personally looking at a bee-link N150 mini PC. It isn't even that much more expensive than the 16GB raspberry pi and as its x86 I can just run normal debian installs in proxmox.

                                      A This user is from outside of this forum
                                      A This user is from outside of this forum
                                      [email protected]
                                      wrote last edited by
                                      #124

                                      The post is talking about RPis and other SBCs. Mini PCs are in a whole different category.

                                      jjlinux@lemmy.mlJ 1 Reply Last reply
                                      3
                                      • C [email protected]

                                        I dislike posts like this. Technology moves quickly. PIs are great for hobby electronics where you need a little computer. Want a cheap computer to run a few things 24/7 and know what you're doing? Pi it is. You don't need to run containers on a pi because you have the skills to install the dependencies manually. They cost pennies to run 24/7.

                                        I think of pis as beefed-up calculators. I have made lots of money using a pi zero running code I needed to run 24/7. Code I developed myself.

                                        Having an old laptop with outdated parts taking up lots of space, weighing a lot, and having components like fans, keyboard, and mousepad most-likely soon dying and needing replacing is an additional concern you don't want.

                                        Someone below saying use an old laptop if you're living with parents and don't pay the electricity bill is a bit lame. Do your part for the world. Someone will be paying for it.

                                        Ultimately, use what you want but if you're just starting with servers, use a virtual machine on your computer and log in to it. You can dick about with it as much as you want, and reset back to a working state in seconds.

                                        A This user is from outside of this forum
                                        A This user is from outside of this forum
                                        [email protected]
                                        wrote last edited by [email protected]
                                        #125

                                        Laptops don't even use that much power. You guys are really not into home labbing or as good with tech as you think you are lol. Lots of people run older real servers and desktops as home servers. They use way more power than laptops. Raspberry Pis sound good but use progressively more power in each generation, and still struggle to compete with mini PCs and even older laptops in performance. They also never had good performance per watt. In performance per watt basically nothing beats a Mac Mini, though other mini PCs are also good. Laptops aren't bad in energy efficiency either. They are literally designed to run on battery so have as little idle draw as possible. They would be comparable to a mini PC if you turn off the display.

                                        Edit: Modern RPis apparently use 25W, which is firmly in the territory of what a laptop would use when not running the screen or charging the battery.

                                        L T 2 Replies Last reply
                                        10
                                        • H [email protected]

                                          I mostly agree, and did the same with my second gen lab build - instead of shiny new NUCs like I had used round 1, I bought old off lease Dell Xeon boxes. SO MANY PROS -

                                          • Got them up to 14c/28t each
                                          • They can take GPUs and actually do heavy transcoding/ML work
                                          • They can take up to like, 128GB of memory, which is GREAT when they're all hypervisors

                                          The downsides can't be denied though -

                                          • Even without the GPUs and beefed up CPUs, they are power hogs - the CPU alone uses more than an ENTIRE NUC
                                          • They run HOT
                                          • They run LOUD

                                          The same holds true for off-lease SFF stuff, Lenovo and the likes ...

                                          So while reuse/repurpose is absolutely of the utmost importance, no question - when it comes to technology and how quickly it advances and miniaturizes, a thorough and logical pros/cons list is often required.

                                          I'd add another option though - if you do need what a Pi brings to the table - do you really need a shiny new Pi 5? Is it possible a used Pi 3 or Pi 4 would do the trick, and check the reuse box?

                                          A This user is from outside of this forum
                                          A This user is from outside of this forum
                                          [email protected]
                                          wrote last edited by
                                          #126

                                          RPis aren't energy efficient either. Any situation where you are thinking of putting more than one of them in a cluster you should just buy mini PCs instead.

                                          1 Reply Last reply
                                          1
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups