• 0 Posts
  • 61 Comments
Joined 2 years ago
cake
Cake day: June 13th, 2023

help-circle

  • No display at all? I suspect something else is at play there…

    On that model during bootup

    F2 = BIOS

    F10 = Boot Menu

    You should be seeing something in the Boot Menu, or at least be able to get into the BIOS?

    Also double-check the USB formatting, I don’t remember if that NUC has UEFI boot support or if it needs to be enabled in the BIOS beforehand. e.g. if your USB is formatted to boot legacy then reformat it to boot in UEFI, or vice versa.

    I actually have a few of those NUC models around but am not sure what it does exactly with no SSD, I think/thought it should still be able to handle USB boot in that situation.


  • The service seems kind of generic, maybe even worse than the other generic VPN services. No statements about what they log, whether they allow p2p, no mention of port forwarding, servers in only 5 countries which you may/may not want to VPN through, etc.

    Not sure about the software, I guess they think it will be an improvement over OpenVPN/WireGuard which is debatable.





  • they want to setup a server to host a simple “contact” website

    Not sure what sort of uptime/reliability your friends are expecting out of a self hosted solution but for something like that you wouldn’t need much processing power, even a Raspberry Pi can host a simple website. Not sure what to recommend offhand but there are definitely vendors in that space that sell simple DIY “contact us” form software, or I guess if you wanted to roll your own that’s an option too. I’d be more concerned about keeping it locked down/secure.

    Keep in mind for the internet your friends would likely need business class internet with multiple static IPs so you can give your little DIY box its own public IP address. Many (most?) residential internet service providers do not allow self hosting websites on their network and they’d be dynamic IP anyway though you could work around that somewhat with dynamic DNS since you’re going to need to purchase a domain name and point it to somewhere anyway.

    run an e-mail service (about 10 accounts for now but with possibilities of expanding it to support more)

    Like others said you really don’t want to go that route unless you’re well versed in that area. It would be annoying for a business especially a new one, those emails will likely keep going into other provider’s spam folders for a good period of time. All the big mainstream email providers are notorious for not trusting new email domains / new IP addresses.

    Seems easier to just go to Google Workspace / Microsoft 365 / whatever other provider you like to use, presumably the business has a business use case for reliable email among other things.

    Bonus: Those cloud services can easily host simple contact forms for you so maybe that’s your all in one solution. Look into Google Forms and similar.

    and to store and remote access documents.

    That sounds like the above commercial cloud solutions again :)

    But sure technically you could go through the extra step hosting that yourself. Depends on how the business wants to use/access this stuff, it’s really a question for them. Could be as simple as a Windows server with RDP (if they’re Windows people & just want to log into something “windows” to browse/open files) or maybe multi-user Linux with VNC (the geeks might like, maybe not so much the general Windows/Mac users). Or if you’re trying to do something web oriented maybe something like Nextcloud if you want to do all this in a web browser.

    You should triple check what exactly they are expecting when it comes to remote access documents… you really don’t want to spend the time setting up something that they totally weren’t expecting and end up hating.


  • Best not to overthink it - The sales clerk is trained to ask for this stuff.

    Luckily most times I encounter this I just tell them no I don’t have a phone number with them & continue checkout like normal. Sometimes that means not getting a sale price on something but usually I avoid those type of member-specific sales anyway.

    And worst case - Just make something up. At Best Buy a sales rep absolutely refused to sell me something from the mobile dept without my info. Which didn’t make sense because earlier I had bought something at that same Best Buy with a different rep & that rep took my order without my info no problem (she said she had to enter a phone number but just entered Best Buy’s).

    Yet this particular sales rep refused to proceed without info, so yeah he got an entire fictional name/address/phone/email on the spot.


  • I believe because any site that has an extension with more than four characters is detected as invalid.

    Usually it’s just badly coded apps/websites that only whitelisted some of the main domains e.g. most vanity domains don’t make it through. Or sometimes there are apps/websites that purposely block your domain if the admins think it’s too spammy or whatever.

    If your current email provider allows you to use their own domains as an alias that’s one way to sidestep the issue e.g. you’d end up with [something]@[youremailprovider].com --> [name]@[name].rocks

    I have Fastmail & they have a ton of their own internal domains so that’s one way I sidestep that issue. It’s pretty common among most/all email providers when you bring your own domain e.g. pretty sure Proton can do the same thing. Once you have your own domain you can make up any [alias]@[yourdomain] you like or just use the provider’s as a front facing alias [alias]@[youremailprovider] --> [anything]@[yourdomain].


  • Jellyfin should work fine for what you’re looking for. I haven’t run it on a Pi but it should work on that. You’ll be able to play music using the web ui as well as mobile apps if that’s your thing. It can also transcode on the fly so if your current browser/device/whatever can’t play .flac directly it’ll automatically transcode the playback to .mp3 or whatever it needs to be.

    There are some other self hosted music/streaming projects you could take a look at that are much more built out for music playback specifically. Look into Airsonic-Advanced or Navidrome for example - I’ve been meaning to check them out myself but haven’t gotten around to it yet.


  • So, OP is downloading a torrent containing a sequential zip file?

    We’re in !jellyfin@lemmy.ml so OP is talking about downloading a media file (.mkv, .mp4, etc.). I don’t think Jellyfin can play .zip files (?) but could be wrong.

    So in the filesystem envision a .mkv movie file that exists but is only say 1% complete so maybe it is currently at 1 MB file size. This is a sequential download so it is downloading in order from beginning to end. Media players like Jellyfin, VLC, etc. can recognize and play this .mkv file, normally it’ll stop when it gets to the 1% data end which could be maybe 3 minutes of playback or whatever.

    The magic with a sequential download is that it is still downloading, in OP’s case the download is going faster than the media playback. So by the time Jellyfin finishes playing that first 1% of the file the torrent client maybe already downloaded an additional 10% so Jellyfin continues playing the file uninterrupted. Meanwhile the torrent client is still going, since the download rate is ahead of Jellyfin’s media playback that should mean that Jellyfin will eventually play the entire .mkv movie file uninterrupted from beginning to end.

    You can sequentially download .zip files as well, in that case it’ll just be this blob of data that starts at the beginning of the file data & goes through to the end. Not sure that is very useful to most people but if the sequential download grabbed the first/end pieces of the file maybe you can at least view the inside file listing of the .zip file before it finishes downloading, could be useful if you just want to preview it before the download completes?

    When I’m downloading .part zip files as part of one torrent, how can I go about continuing seeding but not having to have both the archives and the extracted files to save space? Is that even possible?

    Normally not possible, you need the untouched torrent data to exist to continue seeding.

    No experience with this but I’ve read that if you’re on Linux using a filesystem with FUSE you could sort of keep .zip files intact while still interacting with them, sort of like mounting the .zip files in the live OS. That might be more along the lines of what you’re after since you’ll be able to keep the .zip files untouched in that sense while still being able to use them elsewhere.





  • Same here, mobile check deposit and Zelle are literally the only things I’ve ever needed a bank app for.

    I used to never use Zelle for anything but too many friends/family want to use some sort of app for exchanging money & that’s usually what we settle on. And my old landlord wanted rent paid via Zelle so that was another thing that forced me to install a bank app for Zelle purposes.

    Mobile check deposit is a requirement when dealing with a bank without any locations nearby. In practice I only need to use that once a year or so, checks are kind of rare nowadays unless you’re a business owner with clients/customers paying with checks.


  • I have a 13 series chip, it had some reproducible crashing issues that so far have subsided by downclocking it.

    From the article:

    the company confirmed a patch is coming in mid-August that should address the “root cause” of exposure to elevated voltage. But if your 13th or 14th Gen Intel Core processor is already crashing, that patch apparently won’t fix it.

    Citing unnamed sources, Tom’s Hardware reports that any degradation of the processor is irreversible, and an Intel spokesperson did not deny that when we asked.

    If your CPU is already crashing then that’s it, game over. The upcoming patch cannot fix it. You’ve got to figure out if you can do a warranty replacement or continue to live with workarounds like you’re doing now.

    Their retail boxed CPUs usually have a 3(?) year warranty so for a 13th gen CPU you may be midway or at the tail end of that warranty period. If it’s OEM, etc. it could be a 1 year warranty aka Intel isn’t doing anything about it unless a class action suit forces them :/

    The whole situation sucks and honestly seems a bit crazy that Intel hasn’t already issued a recall or dealt with this earlier.



  • Should be fine, just don’t cheap out on the external drive / cable you will be using. And when you’re using something like smartctl you’ll know right away if SMART info is passing through your USB for proper testing.

    I’ve done a lot of these type of scans via USB drives, honestly the more annoying part is that some USB drives do wonky things like go into sleep mode within 1-5 minutes which will disrupt any sort of scanning you had going. So with USB drive scanning I usually implement something to keep the drive alive and awake e.g. a simple infinite loop script to write a file every x seconds, or if you’re on windows you can also use KeepAliveHD.


  • Nowadays I buy digital music (mostly via Bandcamp but there’s also HDTracks, Qobuz, etc.) & play the music that way. Can also stream my own music library if I want via Jellyfin or other applications.

    re: physical CDs, yes I’ve got a ton of those too from before you could buy digital music but have already ripped them. Haven’t had a need to touch the physical discs in years but still keep them in CD binders just in case.

    Also not sure if it matters but for me I’m always living in small apartments/rooms so I absolutely avoid collecting physical items, there’s just no space for that.


  • True, wouldn’t be too different vs just using a VPN. You’re choosing to trust the Tribler tech and the Tribler exit node operator vs choosing to trust the VPN provider. Granted most VPN connections are going to have much better performance vs anything Tribler related.

    There is a nice side effect of running an *arr stack against Tribler, even in 1 hop mode - Your Tribler node is much more easily pulling in new content into the Tribler network for other users to access afterwards without needing an exit node. Ideally it’s just one Tribler node/user needing to pull data through the exit nodes while the rest would just pull it from you and share with other nodes in-network.

    Torrents over I2P work the same way. If the torrent data isn’t found within I2P and you have outproxies configured you could pull torrents from the clearnet & afterwards other I2P users just share amongst the I2P network.