I know; they should not be allowed to do that.
Interests: programming, video games, anime, music composition
I used to be on kbin as [email protected] before it broke down.
I know; they should not be allowed to do that.
Mozilla’s non-profit status needs to be revoked.
Glad I could help you make progress – I hope you can get it all the way working now. Good luck!
How 'bout that! :D
If the SSD itself is OK, then it was probably trying to boot the SSD still. The blank screen issue might have to do with the graphics drivers then? I remember having a similar blank screen problem with Ubuntu a long time ago where I had to put in “nomodeset” as a parameter in GRUB when booting until I got the right drivers set up.
the tablet supports pxe boot. Do you think I could get mileage off of that if I set up a server on my other laptop and connected them via ethernet?
Maybe. If it’s not too much trouble to set up and you can’t get the USB to work again, might as well try it before throwing in the towel.
I’m rather confused by the fact that the USB drive worked for you before but doesn’t any more and yet seems to be OK on other systems. Is there anything like “fast boot” enabled in the BIOS maybe? (Try turning that off if so.)
Also, when you’re trying to boot from the SSD, can you get anything out of GRUB by tapping shift or escape (or maybe other keys) while it’s trying to boot?
Do you think that removing the ssd will help?
It’s a sanity check to help you rule out things like unintentionally booting from the wrong device. Can’t boot from hardware that’s not there! If the USB does work with it removed, then something you believe about how the device boots is false and you can then try to figure out what. A lot of BIOSes will “helpfully” try the next device in the sequence if it can’t successfully boot from the first one – which can be really confusing when debugging.
Some other thoughts for things to check: does the device confirm that it can actually see the USB drive in some way? Does a USB keyboard work in the port you’re using? If there’s more than one USB port, have you tried a different port? Do your USB drives work in another computer?
I rebooted to the installation media to try another install. It was black too.
I assume you’ve probably already checked, but in case not, is the boot order correct? What happens if you remove the SSD entirely and try to reboot to the USB without it?
Also, does the SSD boot in another computer?
If you can’t get anything to boot on the tablet, I’d RMA it.
Google puts telemetry in the default keyboard app. Let that sink in for a moment.
I have a few of those, and while the ones I bought have worked out fine so far, I think it’s worth cautioning people that they are annoyingly loud doing basic operations.
Oh, I remember playing Iji! I think that was the first game I played that noticed and reacted if you tried to play as a pacifist. There was at least one unavoidable boss fight when I played it though, as I recall.
Digging back through my old disks, it looks like I actually still have my copy from 2008 (version 1.2, according to the manual.txt file) as well as a saved game from much later when I replayed it in February 2013. That was a while ago!
I tried booting an old Surface off a USB stick with stock Ubuntu once – probably either 20.04 or 22.04. (I tried this in June 2022 but didn’t make a note of the versions in my journal, unfortunately.) I was able to get it to boot, but I couldn’t get touch/pen controls working so I decided against replacing the OS. I didn’t have enough enthusiasm to bother experimenting with it further – I assume it probably needed the custom kernel.
There is absolutely no reason whatsoever that a security camera needs access to anything.
NTP is useful to correct clock drift, but otherwise, I’d agree.
kbin.social has been totally down for a while. I don’t think your posts are actually federating when you post into a kbin.social magazine right now; the votes you are getting are probably from other lemmy.world users only.
Now imagine if to buy a car you had to tolerate cameras and other forms of tracking your telemetry just to get to work and feed yourself.
Sorry to be the bearer of depressing news, but that’s basically already happening in new cars.
https://jacobin.com/2024/03/car-spying-insurance-surveillance-data/
I wonder what cuil things it will say if you start asking questions about hamburgers instead…
I ran into an example of the thumbnail issue again today – this time on a post from kbin: https://old.reddthat.com/post/19193476
The thumbnail looks like this in the HTML:
<div class="thumb">
<a class="url"
href="https://media.kbin.social/media/60/a4/60a45b8ff88b1b2e3a0f77b701feb323c5bbfb7ceeb75154ea7df5d6eea15ef8.jpg"
>
<div style="background-image: url(https://media.kbin.social/media/60/a4/60a45b8ff88b1b2e3a0f77b701feb323c5bbfb7ceeb75154ea7df5d6eea15ef8.jpg?format=jpg&thumbnail=96)"></div>
</a>
</div>
Note that it’s making a request to kbin.social with ?format=jpg&thumbnail=96
parameters in the CSS – which results in the full image being loaded since kbin doesn’t run pictrs.
The versions in use on reddthat (according to the settings page) are:
lemmy: 0.19.4-beta.7
mlmym: 0.0.44
Mrs Bighead?!
…
*hangs up the phone*
DOSBox runs on both Linux and Windows (and probably Mac too?); I was suggesting it since you might be able to replace the dying DOS computers with a modern system and just launch the legacy system as an application under it. (You might be able to do the same with a VM as well, but DOSBox came to mind first and may be easier to setup and distribute.)
Just a thought. If it’s not useful, feel free to disregard.
You can do this by configuring an HTTP server (e.g. Apache) to listen on port 80 and/or 443 (HTTP and HTTPS standard ports, respectively) and select which site to serve based on the name of the site requested. Apache documentation for this feature is here: https://httpd.apache.org/docs/2.4/vhosts/name-based.html
Note the sample config snippet showing how to set up a simple static site serving both
www.example.com
andother.example.com
usingServerName
in aVirtualHost
to select between them.You can also have Apache match a pattern in the URL and reverse proxy to another HTTP server – that can just be another program on the same computer listening on a different port, or could be on another computer entirely. See the simple reverse proxy config example on this page for a starting point: https://httpd.apache.org/docs/2.4/howto/reverse_proxy.html (Note also that you probably don’t need anything further down that page – e.g. the load balancer and failover stuff is not likely to be useful to you for a small personal project.)
Other popular HTTP servers can do this too; I just happen to have done it with Apache before.