1

I have recently acquired an RPi 3 model B. Because I do a lot of traveling I have several questions about the safety and ability of leaving a RPi active while being far away. I am not mainly concerned about leaving it up 24/7 (it is still a concern), my main concern is the use of a USB stick on boot-up. The list below highlights my main concerns:

  1. Is it safe to leave the pi on continually till I get back home? I would have a small fan blowing on the RPi to keep it cool.
  2. Can a USB stick be used on bootup without having to unplug and re-plug it in?
  3. Can I remotely connect to a pi and use its graphical interface or can I only use its terminal?
  4. Will the pi suffer any ill effects by leaving it on 24/7?
Austin Hitt
  • 59
  • 1
  • 2
  • 12

2 Answers2

2

I run two Pi2s and a Pi3 headlessly (i.e. remotely, with no monitor/keyboard) and they're left on 24/7. The Pi devices are great for this type of use-case as they use a fraction of the energy of a full-size computer.

If you have a Pi3 and you'll be leaving it doing very long CPU-intensive tasks, you'll want to use a heatsink and maybe a fan, but it's only the Pi3 that gets toasty and then only when it's stressed. (I use heatsinks but not fans.)

Do some reading on how to properly set up your Pi for remote access. I would recommend setting up key based authentication for ssh, which enables password-free login from your own - trusted - devices.
Once that's working, either disable password auth for ssh altogether, or set up libpam-google-authenticator as challenge response on top of your regular password. Either option will prevent brute force attacks from being a problem.

GainfulShrimp
  • 308
  • 3
  • 7
0
  1. You can use xrdp, nomachine nx, or vnc to have a graphical connection, even to a headless R Pi.
camdv
  • 11