- 3 Posts
- 30 Comments
elvith@feddit.deto Linux@lemmy.ml•A Linux user's nightmare: the machine was wiped clean with one click8·1 year agoWindows doesn’t have
sudo
(not yet, at least) and privileges work a bit different as even as an administrator, you may not have full rights.To overcome that obstacle, you’d need to run a shell as an administrator (hold CTRL+Shift, then use the start menu entry or right-click it and select run as administrator).
Next obstacle: We have a separate drive for each partition, but no root folder.
If we assume we’re running on a laptop or PC with a single drive and a single partition*, then it’s just
In cmd.exe:
del /F /S C:\
In Powershell:
Remove-Item -Recurse -Force -Path C:\
When you want to delete all (mounted) partitions/drives, you need to iterate over them. (Note that’s from the top of my head, didn’t check the script if it works).
In cmd.exe:
REM Not gonna do that, I'm no masochist
In Powershell:
Get-PSDrive -PSProvider FileSystem | Foreach-Object { Remove-Item -Recurse -Force -Path "$($_.Name):\" }
Done. Mounting additional partitions before that is left as an exercise for the reader.
*note that even a standard installation of windows creates 3 partitions. One for the bootloader, one for the recovery system and then the system drive. Only the latter is mounted and will be deleted by this. The other two will still be intact.
Remember
<marquee>
? And maybe add some dancing hamsters?
Remember that JS file that rendered a text besides your mouse pointer and when you moved your mouse, the text would follow it letter by letter?
That’s what
she said!
elvith@feddit.deto Asklemmy@lemmy.ml•It looks like Duck Duck Go is down at the moment. What is your second choice for privacy respecting search?5·1 year agoNo, it’s not „always up“.
There are three main ways how Google, Bing,… can track you:
- When you’re doing a search while being logged in, it’s probably you
- If you’re not logged in, they can set a cookie to recognize you on your next visit (although they may not be able to link this to you, your email address,… but that’s not needed). They may mix your searches with those of the other users of your PC, when those are using the same PC, browser and account (e.g. if you have a family PC with a single windows/Linux account that everyone uses)
- Even if you’re not logged in and don’t accept / delete your cookies, they still see your IP. Depending on your ISP you might have the same Ip for a long time or you might have it rotated regularly. Now they could only track the searches of your household (assuming everyone isn’t logging in and deleting cookies immediately)
With Searxng, they can only do the last variant. But assuming you use a “real” server in the internet (and not one at home), it will likely have the same IP for its lifetime. And if you’re using it alone, that’s the only thing they need to identify you and track your searches. The more other people use your instance, the less useful this kind of tracking gets. Too much noise to identify a single person.
elvith@feddit.deto Asklemmy@lemmy.ml•It looks like Duck Duck Go is down at the moment. What is your second choice for privacy respecting search?14·1 year agoHaving your own instance can be bad for privacy, as all your searches come from your IP (hosted at home) or the same IP (hosted on a server). They might not be traced to you personally, but you might still get personalized results or your search may still be tracked, depending on how they track you.
That’s circumvented when using it with some or better many other people. But then, you need to trust the admin of that instance.
Self-hosted is easy if you know a bit about servers. You need a domain pointing to a server. If it’s the only thing hosted on that server and you have set up docker on it, you can just follow their instructions here to get it running in less than 5 minutes (assuming you run the default config and don’t customize all of the settings for a while): https://github.com/searxng/searxng-docker?tab=readme-ov-file#how-to-use-it
elvith@feddit.deto Linux@lemmy.ml•KDE Goes and Does It (Double-Click By Default, That Is) - OMG! Linux5·1 year agoRansomware in Windows:
You need to allow macros to read this job applicationRansomware in Linux:
You need to run chmod +x application.ods.sh to read this job application
elvith@feddit.deto Fediverse@lemmy.ml•Mastodon security update: every version prior to today's is vulnerable to remote user impersonation and takeover7·1 year agoAnd if they don’t update it soon, you might want to reconsider your choice of instance.
The advisory went up about 4h ago. About 3h ago, my instance admin sent out an announcement that the patch had been applied. That was before I even heard about the issue.
Nice work :)
elvith@feddit.deto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Wot The Fsck You Say, Spotify?English2·1 year agoI use Voice audiobook player, that can do that, too. But when I switch devices, … it’s easier to pick up where I left, if it’s at least separated by chapters (or as some MP3 CDs do every 3-5 minutes a new track).
Also I do sometimes buy mp3 audiobooks for a blind friend who prefers to listen to them on a CD player (buttons can be felt and its easier to use than a touch screen). But a single, several hours long mp3 is bad in this scenario. And as i didnt find a tool to split them easily, Audible exclusives were out of the question…
elvith@feddit.deto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Wot The Fsck You Say, Spotify?English2·1 year agoThanks, I’ll try it
elvith@feddit.deto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Wot The Fsck You Say, Spotify?English6·1 year agoHave you found a way to split those mp3s into several files by chapter etc.? All converters that I have tried so far just yield a single, several hours long mp3…
elvith@feddit.deto Asklemmy@lemmy.ml•What do you all do on your phones that isn't doom-scrolling or mindless mini games?7·2 years agoSomething, something up and down and up and down and …
“I’m using netBSD btw…”
elvith@feddit.deto Asklemmy@lemmy.ml•Has Windows startup repair or a troubleshooter ever fixed your issue even once?1·2 years agoNah, I’m currently trying to fix a PC that is so borked, that not even a clean install.wim can fix. According to some sources, there are some packages missing in current installation medias, that are not needed for the installation, but you cannot repair a borked install, if those are affected. This seems to be the case since at least somewhen in 2021, from which I found the earliest reports. Oh… and they aren’t in the online image as well. So if those break, you can only do a clean install.
My vicious cycle: Oh no I did ssh into localhost again. Fuck, let’s do some damage control and disable SSH access to my desktop.
Two days later: ugh, I don’t want to change rooms, I want to do this on my laptop and sit in the living room, but need something from my desktop. Why did I think it was a good idea to disable SSH access…
Then repeat.
elvith@feddit.deto Asklemmy@lemmy.ml•Does a Reddit IP ban affect everyone in your house?5·2 years agoEither they’ll see it like some kind of public WiFi, or there’ll be collateral damage. But keep in mind that CG-NAT usually only applies to IPv4, so if your ISP and home network support IPv6, Reddit won’t have said problem and see you IPv6 address.
Instructions unclear, p…aper stuck in tray 1
Dito, also I don’t want to pay 20 bucks for a „replacement“ SIM on my contract, since my SIM isn’t broken/lost
elvith@feddit.deto Fediverse@lemmy.ml•Swiss Federal government starts pilot test on Mastodon22·2 years agoThe German government also has a Mastodon instance: https://social.bund.de
E.g. the German federal government (“Bundesregierung”) toots here: https://social.bund.de/@Bundesregierung
I mean, the hosting company would be the likely target then and they’d probably lock your account and switch off the server. Depending on your nationality and that of the hoster, at least.