ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. raspberry pi
    Log in to post
    • All categories
    • scottalanmillerS

      Raspberry Pi 4 as IT Workstation

      IT Discussion
      • raspberry pi raspberry pi 4 arm risc • • scottalanmiller
      50
      3
      Votes
      50
      Posts
      4.3k
      Views

      scottalanmillerS

      @pete-s said in Raspberry Pi 4 as IT Workstation:

      @obsolesce said in Raspberry Pi 4 as IT Workstation:

      @scottalanmiller said in Raspberry Pi 4 as IT Workstation:

      But that means that you can run the lighter 32bit OS version that is faster AND it is already overclocked and includes a massive passive heatsink.

      But the web browser plus whatever else is running in addition to the OS will still eat up what's left of the RAM pretty easily I would think. My phone uses more than 4g of ram easily.

      Not really. It's actually hard to use up the 4GB RAM on the RPI4 as a normal user. Remember that everything running on it is lean, like LXDE for example.

      https://www.tomshardware.com/uk/news/raspberry-pi-4-8gb-tested

      I'd say that if you're happy with the RPI4 performance as a desktop then there's a 95% chance that 4GB RAM will be enough.

      If you're a power user then RPI4 is too slow and you'll probably looking at something with at least 16GB RAM anyway.

      This is why I like the RP400. It's the CPU, more than the RAM, that is the bottleneck for use and the RP400 is like 15% faster.

    • scottalanmillerS

      SBC News

      IT Discussion
      • sbc raspberry pi risc arm arduino risc-v • • scottalanmiller
      20
      2
      Votes
      20
      Posts
      1.3k
      Views

      scottalanmillerS

      https://www.omgubuntu.co.uk/2020/09/pinebook-pro-elementary-os

      Elementary OS coming to Pinebook Pro.

    • scottalanmillerS

      Stop Raspbian Buster on Raspberri Pi Stop Blanking Screen

      IT Discussion
      • linux debian raspberry pi raspberry pi 4 raspbian raspbian buster debian 10 screensaver • • scottalanmiller
      1
      1
      Votes
      1
      Posts
      459
      Views

      No one has replied

    • scottalanmillerS

      Making a Raspberry Pi 4 or Similar SBC Desktop

      IT Discussion
      • raspberry pi raspberry pi 4 linux linux desktop • • scottalanmiller
      33
      0
      Votes
      33
      Posts
      2.4k
      Views

      scottalanmillerS

      @StorageNinja said in Making a Raspberry Pi 4 or Similar SBC Desktop:

      @scottalanmiller said in Making a Raspberry Pi 4 or Similar SBC Desktop:

      RP4 with 4GB of RAM

      The problem with Pi (and frankly a lot of the low end ARM) is these things have incomplete UEFI bios etc. You currently need to really be working on one of the distro's designed for it (Which is likely fine for your use case). ARM and our engineers are working on this though..

      Good point. Definitely an issue. Ubuntu, which is what we use, does make for them at least.

    • gjacobseG

      Unsolved Audio book player

      IT Discussion
      • audiobooks audible raspberry pi zero raspberry pi 3 raspberry pi audio player • • gjacobse
      6
      0
      Votes
      6
      Posts
      570
      Views

      scottalanmillerS

      @gjacobse said in Audio book player:

      @scottalanmiller said in Audio book player:

      Just use the device built for that, the Kindle.

      Does the Kindle have BT? I know the three I have don't, and she doesn't have any other means to connect any type of audio device. Radio, CD, BT - all she has in the car.

      Mine does not, the ones that the kids have do.

    • LakshmanaL

      Raspberry Pi Zero W Bought for Testing

      IT Discussion
      • linux raspbian raspberry pi raspberry pi zero • • Lakshmana
      13
      0
      Votes
      13
      Posts
      1.8k
      Views

      travisdh1T

      @Sawyer said in Raspberry Pi Zero W Bought for Testing:

      I ordered Raspberry Pi zero W from https://robu.in/product/raspberry-pi-zero-w-with-raspberry-pi-zero-w-accessories-kit/.
      What exactly does the NOOBS Software do?

      NOOBS sets up your choice of OS for you. It's not needed, but is handy if you don't have another computer to setup an OS.

      Also, if you have these sorts of questions in the future, just make a new thread.

    • mlnewsM

      New, Faster Raspberry Pi 3B+ Released

      News
      • raspberry pi raspberry pi 3b+ sbc phoronix • • mlnews
      5
      3
      Votes
      5
      Posts
      934
      Views

      travisdh1T

      Improved PXE? Apparently I ordered the rpis we want a week early, good PXE would be a great thing here!

    • gjacobseG

      Raspberry Pi (rPi) tips and Tricks

      IT Discussion
      • raspberry pi • • gjacobse
      11
      1
      Votes
      11
      Posts
      1.5k
      Views

      M

      Prerequisites for client

      sudo apt-get install python3 python3-pip sudo pip3 install paho-mqtt

      Python script:

      #!/usr/bin/python3 #Imports import time import os import paho.mqtt.client as mqtt import paho.mqtt.publish as publish #Variable setups broker = "IP Address MQTT Broker" state_topic = "pi/cputemp" #Topic to publish commands too delay = 1 #Time delay #Fuction to return temp def measure_temp(): temp = os.popen("vcgencmd measure_temp").readline() return (temp.replace("temp=","")) #MQTT connection setup client = mqtt.Client() client.username_pw_set("username", "password") #Login for broker client.connect(broker) client.loop_start() #While loop for posting to MQTT while True: print(measure_temp()) time.sleep(1) cpu_temp = measure_temp() client.publish("pi/cputemp", str(cpu_temp)) time.sleep(delay)
    • A

      How to Install ZeroTier on a Raspberry Pi

      IT Discussion
      • zerotier arm raspberry pi • • amoyer2
      9
      2
      Votes
      9
      Posts
      37.1k
      Views

      S

      @anna
      A bit old I know, but zerotier will allow you to access behind doublenat using local ip address

      https://www.zerotier.com/

    • travisdh1T

      Raspberri Pi, don't use if you've used Debian based distros!

      IT Discussion
      • raspbian raspberry pi sysadmin • • travisdh1
      14
      0
      Votes
      14
      Posts
      2.1k
      Views

      DustinB3403D

      @lakshmana said in Raspberri Pi, don't use if you've used Debian based distros!:

      What raspberry model?

      It doesn't matter. The hardware footprint with the bastardized Debian built for the Raspberri Pi just doesn't work well.

    • mlnewsM

      Five Ways to Use Raspberry Pi in the Classroom

      News
      • raspberry pi education opensource.com • • mlnews
      4
      2
      Votes
      4
      Posts
      1.1k
      Views

      travisdh1T

      @mlnews said in Five Ways to Use Raspberry Pi in the Classroom:

      @travisdh1 said in Five Ways to Use Raspberry Pi in the Classroom:

      @mlnews Just go and make me decide if I want to pull the Pi out or get my home lab running again.

      Post some projects.

      I want to turn mine into a honeypot. Will have to do the config again to do a writeup.

    • scottalanmillerS

      Build a Macintosh Classic... Out of Legos

      News
      • macintosh macintosh classic apple raspberry pi ars technica • • scottalanmiller
      3
      3
      Votes
      3
      Posts
      861
      Views

      dbeatoD

      Nice! That is awesome!

    • mlnewsM

      Nintendo Abandons the NES Classic, So Build a Better One Yourself

      News
      • nintendo gaming ars technica raspberry pi 3 raspberry pi retro pi nes classic • • mlnews
      14
      2
      Votes
      14
      Posts
      2.9k
      Views

      scottalanmillerS

      Apparently a popular item now, already out of stock 🙂

    • mlnewsM

      OpenGL accelerated x86 games come to Raspberry Pi

      News
      • opengl gaming raspberry pi linuxgizmos • • mlnews
      1
      1
      Votes
      1
      Posts
      935
      Views

      No one has replied

    • scottalanmillerS

      Using the Raspberry Pi for Learning Linux Administration

      IT Discussion
      • linux education raspberry pi sam linux administration article scott alan miller • • scottalanmiller
      1
      2
      Votes
      1
      Posts
      2.1k
      Views

      No one has replied

    • DustinB3403D

      Screenly - Raspberry Pi Digital Signage System

      IT Discussion
      • raspberry pi digital signage windows open source • • DustinB3403
      10
      1
      Votes
      10
      Posts
      2.3k
      Views

      DustinB3403D

      Screenly OSE really seems like what we need. The fact that we don't have to spend a ton of money on hardware is a plus in my opinion.

      https://www.screenly.io/ose/

      Youtube Video

    • DustinB3403D

      Pi-Top a cheap Raspberry Pi Do-It-Yourself laptop

      IT Discussion
      • raspberry pi pi top laptop • • DustinB3403
      1
      0
      Votes
      1
      Posts
      688
      Views

      No one has replied

    • mlnewsM

      Installing Amazon Alexa on Raspberry Pi 3

      News
      • alexa raspberry pi 3 raspberry pi linux youtube linuxgizmos • • mlnews
      6
      1
      Votes
      6
      Posts
      1.9k
      Views

      dafyreD

      @travisdh1 said in Installing Amazon Alexa on Raspberry Pi 3:

      @dafyre said in Installing Amazon Alexa on Raspberry Pi 3:

      @travisdh1 said in Installing Amazon Alexa on Raspberry Pi 3:

      @DustinB3403 said in Installing Amazon Alexa on Raspberry Pi 3:

      So this isn't something @travisdh1 would want to build and leave around?

      Maybe in someone else's house. I haven't jumped on the automated assistant thing yet, I'm still quite leery of having something like that in the house.... yes, I know I carry one around in my pocket with the phone. Doesn't mean I use it.

      Also doesn't mean you want yet another one reporting everything you say to the NSA.

      @dafyre Are you sure you don't wear a tin foil hat as well? 😉

      *quickly whips something shiney and metallic looking behind his back*

      Who? Me. Never! *coughs to cover the sound of crumbled up tin foil landing in the trash can*

    • mlnewsM

      Raspberry Pi: 11 reasons why it's the perfect small server

      News
      • zdnet raspberry pi arm • • mlnews
      4
      1
      Votes
      4
      Posts
      1.0k
      Views

      A

      Status lights

      Someone hasn't experienced the glory of the blinkenlights I see.

      Ah, I see the article is from 2014.

    • 1
    • 2
    • 3
    • 4
    • 1 / 4