This isn’t the Raspberry Pi Imager - it’s a tool to build custom images. From the GitHub: A tool to generate highly customised software images for Raspberry Pi devices.
- 3 Posts
- 87 Comments
Have you tried the Raspberry Pi Image Generator?
Substance was probably my favourite. I haven’t heard of Bramayugam, looking forward to checking it out!
Congrats on the journey! This is something I’ve been enjoying lately, but it sounds like it might be too sweet. I’m still trying to find the balance that works for me.
2 oz. Canadian Whisky 1 oz. Dry orange liqueur (I use Pierre Ferrand) 0.25 oz maraschino liqueur 1 oz. lemon juice
bravemonkeytoConservative@lemmy.today•White House shares staggering number of countries who want to make deals on tariffs1·2 months agoNice job trying to avoid the burden of proof.
bravemonkeytoConservative@lemmy.today•White House shares staggering number of countries who want to make deals on tariffs2·2 months agoSo where are the reputable news sources for this claim?
bravemonkeytoMecha, robots, vehicles, etc@lemm.ee•Kei Truck Mech by mech nuggetsEnglish5·2 months agoLooks like it took inspiration from the Tachikoma!
Someone who doesn’t use the distro is saying a tool ‘is a must’ when I do use the distro and have never needed it. You do you, but the point of my original comment was that it’s a valid distro for Europeans wanting a non-US option. Doesn’t mean you need to like it or use, but others might.
So you find Gnome & KDE ugly? I’ve never needed to use Yast for any system configuration. Having BTFRS with snapshots as default makes it a great distro.
SUSE/OpenSUSE seems like a much more European option
bravemonkeyto Canada•Canada won’t drop tariffs on Chinese EVs, despite trade war with U.S.: minister2·2 months agoWhat ‘domestic ev’s do we even have?
Looks interesting. Can you post the recipe?
Does anyone have experience with Waterbird based in Waterloo, Ontario?
I’m used to printing with eSUN but haven’t had a 3d printer in a while and not sure where to get it any longer (based in Toronto). I’ve got a Prusa Core One coming soon though so looking to start getting filaments again!
75179, Kyle Ren’s TIE Fighter. Up next, the 8087 TIE Defender. They’ve both been sitting in storage for too long.
Shorthand is hard to learn from and hard to troubleshoot in complicated scripts.
bravemonkeytoLoblaws is out of control•Trudeau calls out Poilievre after top Conservative adviser is tied to Loblaw lobbyingEnglish1·3 months agoSo what? It’s still relevant.
bravemonkeyto Flohmarkt•The place to discuss the fediverse alternative to Facebook marketplace3·4 months agoHow do I find it? There are no links in your posts or in the sidebar.
From the Windows side (assuming you’re using Windows to connect, considering it’s RDP and not VNC), you can open PowerShell and test to see if the Raspberry Pi is even listening for RDP connections with:
Test-NetConnection x.x.x.x -port 3389
Replace x.x.x.x with the IP address of the Raspberry Pi. If it shows successful, then the Raspberry Pi is listening for RDP connections.
Do you know what RDP package you installed, and what operating system you’re running (Bookworm, Bullseye, etc)? I don’t have a raspberry pi with a desktop to test on, but if you’re using xrdp you could try:
sudo systemctl status xrdp
Does this give any input? If not, then you’ll need to know what package you installed to get RDP, assuming one is still installed even. If it does give you a message it might be a hint as to why it’s not working.
If you get output from the above command you can also try:
sudo journalctl -b | grep -C 2 xrdp
There are much better ways of searching journalctl but I’m a noob too. The -b returns only errors from the last boot time, the -C returns that many lines before and after a match is found.
bravemonkeyto Self Hosted - Self-hosting your services.@lemmy.ml•I'm new to self-hosting and struggling to get my services accessible externally. I'm using Traefik as a reverse proxy on a Raspberry Pi 500 running Stormux (Arch Linux ARM-based). My public IP1·4 months agoSo that means the router isn’t forwarding the ports to your devices. As others have said, it could be the ISP blocking it or it could be a configuration issue in the port fowarding.
Having yt-dlp save the videos to S3 will just add to your costs - what benefit will it provide to your users to get the file from S3 compared to Youtube?
While ‘cloud computing’ is managing servers in the cloud like EC2, they’re still just servers like you’d run in your lab. To do it the ‘cloud way’, use the cloud services instead.
My suggestion would be a price checker - create a webpage maybe with S3 or Lightsail where users can enter in a URL for a product, an email address and a scrape recurrence time like 24hours, then have Lambda scrape the page & email the price to the user on that schedule. Use DynamoDB (or a relational DB like Postgresql) to save the results, schedule, etc.
Try not to use EC2 at all if possible. Or instead of EC2, use EKS if scraping with Lambda is too difficult.
The most important thing is getting the security right, from your access to AWS to ensuring your database isn’t easily downloaded by just anyone.