Lavrov Warns Against Military Presence of Non-Regional Actors in Afghanistan
Lavrov Warns Against Military Presence of Non-Regional Actors in Afghanistan
The deployment of third-party military infrastructure in Afghanistan is absolutely unacceptable, Russian Foreign Minister Sergey Lavrov said on Tuesday.Sputnik International
Czechia Under Andrej Babiš Will Be Less Pro-Ukraine And More Sovereign
Czechia Under Andrej Babiš Will Be Less Pro-Ukraine And More Sovereign
With his first message that Ukraine is not ready for EU membership, Andrej Babiš announced a dramatic shift from Prague’s previous policy, which was one of the most extreme in terms of Russophobia.Anonymous834 (South Front)
How Russia forced the West to face its own decline
How Russia forced the West to face its own decline
No single power rules the world anymore – and that may be a good thingRT
It’s has a long history but first usage of this when Ottoman empire collapsed in the Balkans many states were governed. Then, Yugoslavia dissolved by NATO through IMF and they ignited ethnic conflicts. As a result, they “created” 7 new countries which are Serbia, Montenegro, Kosovo, Croatia, Bosnia, North Macedonia and Slovenia.
So, If Nato would won this war They will use the same tactics like dissolving the Russia Federation creating new states like Chechenia, Dagestan
like this
☆ Yσɠƚԋσʂ ☆ likes this.
Its a reference to how the balkan peninsula, specifically former yugoslavia, was broken into a multitude of weaker independant states primarily by exploiting ethnic tensions. This allowed western capital to exert significant influence on the political-economy of these countries in a way they could not when they were united. As these new states fought eachother and destroyed themselves foreign capitalist bought up their economies and to this day remain significant employers in the region; allowing them to extract wealth they couldn't have without balkanization and the violence that came with it.
It essentially boils down to the divide and conquer strategy. I honestly don't believe the west is currently capable of accomplishing this in Russia no matter the outcome of the Ukraine war. The Balkans have a history of nationalist movements and a dense diversity of cultures that made them much more vulnerable to this strategy than modern Russia would be.
like this
☆ Yσɠƚԋσʂ ☆ likes this.
Russian presidential council urges UN to act on children’s data on Mirotvorets
Russian presidential council urges UN to act on children’s data on Mirotvorets
The council emphasized that publishing the personal information of underage children infringes on their rightsTASS
I don't know about you, but for me this is just crossing a red line, they are truly evil.
White House memo says furloughed federal workers aren't entitled to back pay
Furloughed federal workers aren't guaranteed compensation for their forced time off during the government shutdown, according to a draft White House memo described to Axios by three sources.Why it matters: If the White House acts on that legal analysis, it would dramatically escalate President Trump's pressure on Senate Democrats to end the week-old shutdown by denying back pay to as many as 750,000 federal workers after the shutdown.
https://www.axios.com/2025/10/07/trump-memo-furloughed-federal-workers-backpay
essell likes this.
MAGA-Lite: What “Bari Weiss Conservatism” Is, and Why It’s Dangerous
MAGA-Lite: What “Bari Weiss Conservatism” Is, and Why It’s Dangerous
The new CBS executive isn’t exactly MAGA. But her polite Trumpism will still help destroy America as we know it.The New Republic
Tip #758
Return to the top of the page on Vivaldi Social by clicking the feed header.
To see the latest posts on Vivaldi Social after having made your way down the feed, you need to scroll to the top of the page, where the newest posts are waiting for you automatically or require a simple click to load (aka slow mode). There are a few ways you can do it, so find what works for you.
To jump to the top of the page:
- Click the feed header (Home, Trending, Notifications, etc.)
- Press “Home” on your keyboard.
- Scroll with the mouse wheel until you reach the top of the page.
- Create a Keyboard Shortcut or Mouse Gesture for the action in the Vivaldi browser.
#Mastodon #Vivaldi #VivaldiSocial
vivaldi.com/blog/tips/tip-758/
Tip #758 - Vivaldi Social | Vivaldi Browser
What’s the easiest way to return to the top of the feed in Vivaldi Social? Take a look at the options shared in this tip and find your favorite.Vivaldi Tips (Vivaldi Technologies)
How to manage configuration files
I'm trying to find a better solution to manage configuration files, both user's dotfiles and system files in /etc.
I'm running an ubuntu server where I have a bunch services with custom configurations, and systemd drop-in files, but on top of that I also have some scripts and user dotfiles that I need to track.
What I'm doing right now is that I have a folder full of symlinks in the admin user's directory (poor username choice, btw) and I'm using bindfs to mount this directory inside a git repository, this way git won't see them as symlinks, and will version them as regular files. The problem with doing this is that as git deletes and rewrites files, bindfs fails to track the changes and converts the symlink to regular files.
I looked into chezmoi, but that is only meant to track user dotfiles and will refuse to add a file from /etc, that is unless doing some extra work. But even so, chezmoi will not track the user:group of files, so I would still have to manage that manually.
I also looked into GNU Stow, and that would not complain about files from /etc or anywhere, but it similarly will not track permissions and I would have to manage that manually.
I see that some people are using ansible to manage dotfiles, but at that point, it would make sense to just migrate to ansible, except I don't want to rebuild my server from scratch to use ansible. Also it looks like a lot to learn.
Is there a better solution I'm not seeing? Maybe something using git hooks?
Edit:
I ended up using pre-commit and post-merge git hooks to launch a python script. The python script reads from a yaml file where I annotate the file paths and permissions, and then copies to or from the file location to the git repository.
I used the sudoers file to allow the admin user to run this specific script with specific arguments as root without password (because the git commands are run from VS Code and not manually), which is dangerous, be careful when doing that. I have taken special care to make this secure:
* I used absolute paths for everything, to avoid allowing running from a different pwd as a way to copy different files
* The script itself is installed in a root-owned location, so an unprevileged user cannot edit it
* The configuration yaml is root-owned, so an unprevileged user cannot modify which files are copied or their permissions
* Configuration files that can grant permission are not managed by this script (the yaml, /etc/passwd, /etc/groups, polkit rules, the sudoers file, ...)
like this
Rozaŭtuno likes this.
I'm trying to find an easy way to redo my VMs and configs, I've started learning terraform to build my VMs and create a cloud init to install all necessary things. Then I think I'll use ansible for the remaining and put back my configs.
While I'm sure this will work well, I find this is a huge amount of work. I'm hoping someone else has some good ideas / lessons learned about that.
If your goal is to host services, I would recommend looking into Docker, and eventually Podman. Containerization lets you keep the configuration wherever you want, personally I use a dedicated a directory for each service.
Also, please note that a container is not a VM. It's just a way to keep everything in one place.
Ah I see... I keep container configs in a specific directory, which contains one directory per-service, which contain all the config files + a compose.yml file to place them in the correct path in the container. I could commit everything to Git if I wanted to.
Regarding network and firewall, you could make a symlink to a versioned file and keep your config with the containers. Same for firewall rules.
I'm not sure what you mean by file sharing permissions. With containers you could give a different user to each service.
If you are worried about memory and disk usage, another option I've been exploring recently is using OverlayFS, which, among other things, allows you to inject a directory at a specific path. Again, this would let you keep all your configs where you fancy the best. I use it through Bubblewrap.
Anyways I realize that what I just described is far from standard... hopefully other users will suggest something less custom.
dotfiles and system configuration are pretty different use-cases, usually when you do system-wide stuff you want to manage not just the configuration files but also what software is installed and a bunch of other things. Ansible or something else like it is definitely the right tool for the job. And Ansible isn't so difficult to learn, you only need to know like 5% of what it can do to be very effective.
For dotfiles my personal preference is dotbot, but there are MANY many different tools that are all good and are just different ways to accomplish roughly the same thing.
I will not recommend switching to NixOS and declarative configuration. I will not recommend switching to NixOS and declarative configuration. I will not recommend switching to NixOS and declarative configuration.
...fuck. I failed the saving throw. I'm sorry.
Do look into Ansible, and the whole configuration management topic, though.
Ah yes, the obligatory NixOS recommendation post.
On a serious note though, NixOS IS well-suited for this purpose.
Stow/chezmoi/your choice for dotfiles, config mgmt for system config. You don't need to rebuild whole server to start with ansible tho, you can take over one file at a time and grow as you learn.
As you've found I don't know of a tool that will cover both usecases as config mgmt for dotfiles is too much and dotfile mgrs for system config is probably out of their scope.
Chezmoi for user stuff, Ansible for system level (packages, user accounts, base services like mail and vpn)
Docker compose managed with opentofu for applications because I’m weird like that
You don't need to rebuild your server from scratch to use Ansible or any other configuration management tool. It helps, though, because then you can ensure you can rebuild from scratch in a fully automatic way.
You can start putting small things in control with Ansible; next time you want to make a change, do it through Ansible. If you stop making manual changes, you'll already get some benefit- like being able to put your Ansible manifests in version control.
(I still use Puppet for configuration files, installing packages, etc. It just does some stuff better than Ansible. Still, Puppet is harder to learn, and Ansible can be more than enough. Plus, there's stuff that Ansible can do that Puppet can't do.)
Dotfiles are a completely separate problem, tackle them separately. Don't use Ansible for that, use a dotfile-specific tool.
You could use aliases on your .bashrc for git (and a bare repo), that would let you manage your $HOME and /etc directly with git without using symlinks, only downside is having them separated in two aliases and two repos.
# user config repo
alias dotfiles='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
# system config repo
alias etcfiles='sudo git --git-dir=$HOME/.etcfiles --work-tree=/etc'It is also recommended that you run:
<alias> config --local status.showUntrackedFiles noin the terminal for both the
dotfiles and etcfiles aliases (you can pick the aliases and git-dir names you want)The aliases help you have a custom named folder instead of .git located in a custom path, and you can manage them without symlinks as you use git directly on the file's original location, this would solve your issue of other solutions that depend on symlinks
Note: you could technically have the root directory --work-tree=/ as a work tree to use only one command, but It is not recommended to give git the possibility to rewrite any file on the entire file system.
Some reference links:
How to Store Dotfiles - A Bare Git Repository | Atlassian Git Tutorial
It's time to find a better way to store your dotfiles. Learn why you should start using a bare Git repository instead.Atlassian
UK Age Verification Data Confirms What Critics Always Predicted: Mass Migration To Sketchier Sites
A month old now, but it's important on the unnecessary surveillance creep we keep having. First this, then digital ID.
Worrying levels of authoritarianism that solves nothing. Government are supposed to represent us, not ignore us and treat us like children. Who are they working for?
UK Age Verification Data Confirms What Critics Always Predicted: Mass Migration To Sketchier Sites
New data from the UK’s age verification rollout provides hard evidence of what internet governance experts have been warning about for years: these laws don’t protect children—they syst…Techdirt
copymyjalopy likes this.
Factcheck: What the Climate Change Act does – and does not – mean for the UK
Factcheck: What the Climate Change Act does – and does not – mean for the UK - Carbon Brief
The UK’s Climate Change Act is a landmark piece of legislation that guides the nation’s response to global warming and has proved highly influential around the world.Carbon Brief Staff (Carbon Brief)
like this
copymyjalopy e adhocfungus like this.
Many governments are astonishingly dumb. If I were in charge and wanted to make pro-Israel politics, I would let them demonstrate whatever they want. Just would keep completely ignoring those demonstrations and avoid the theme altogether.
Peaceful demonstrations are completely useless, no need to fight them.
Luckily, most governments are dumb.
Clear likes this.
Major US Midwest port [Cleveland] begins electrifying operations to reduce emissions
Major Midwest port begins electrifying operations to reduce emissions
The Port of Cleveland is adding charging ports, batteries, and solar to its main warehouse — work funded by a federal program that has so far survived…Canary Media
Microsoft makes it even harder to install Windows 11 without a Microsoft Account or internet
The company has already blocked the popular oobe\bypassnro command that people used to skip parts of the initial setup, and now, Microsoft is doubling down on its efforts. In the latest Windows 11 preview builds, the software giant makes it much harder to install Windows 11 without a Microsoft Account.
How Mark Carney is complicating Canada’s climate progress
From cancelling the carbon tax to pausing the electric vehicle mandate, the Carney government is making sweeping changes to the country’s environmental rules
How Mark Carney is complicating Canada’s climate progress | The Narwhal
From cancelling the ‘carbon tax’ to pausing the EV mandate, Mark Carney’s government is making sweeping changes to Canada’s environmental rulesCarl Meyer (The Narwhal)
like this
copymyjalopy e Rozaŭtuno like this.
Western politicians: we need to invigorate our economy and rely less on China and USA. We’ll do that by increasing our investment in 20th century fossil fuel infrastructure instead of investing in 21st century infrastructure.
Fucking boomers.
We kinda need both.
Oil isn’t just for cars and power plants. Oil is a chemical used in so many things, from asphalt to medicine.
But we should be transitioning to green energy, which is less centralized than a few big power plants, less polluting, and therefore more secure from threats. It’s also getting cheaper and cheaper by the month.
I want a strong Canada that can run our own critical supply chains, and I want a green Canada that doesn’t let our mines throw their tailings into our drinking water and our air is clean. And I want a secure Canada that can stand up to bullies without fear.
Solar and wind surge signals a turning point | Rapid solar and wind growth in the first half of 2025 signals that fossil fuel demand is nearing its peak.
Global Electricity Mid-Year Insights 2025 | Ember
Solar and wind outpaced demand growth in the first half of 2025, as renewables overtook coal’s share in the global electricity mix.Ember
Tory plan to scrap net zero target puts UK climate leadership at risk
Tory plan to scrap net zero target puts UK climate leadership at risk
The country has enjoyed a unique period of consensus and stability under the Climate Change Act, which the Tories now want to scrap.The Conversation
like this
Maeve likes this.
Anyone else live somewhere that has had people joining in a WiFi naming joke?
My WiFi is ‘Secret Rebel Base’.
My neighbours have added ‘Java the Hub’, ‘Obi Lan Kenobi’, and ‘Red WiFi-ve Standing By’. This makes me happy.
Anyone else live in a neighbourhood that embraces this kind of WiFi silliness?
like this
copymyjalopy, adhocfungus, Rozaŭtuno e essell like this.
Sadly in my apartment complex they seem to all use the default name given by the router (like Carrier-randomnumbers).
I have a friend who named his WiFi "Connecting..." which is diabolical
Pope Leo to visit Turkey and Lebanon on first overseas trip
Pope Leo to visit Turkey and Lebanon on first overseas trip
Pontiff expected to appeal for peace across the Middle East and speak about the persecution of Christians in regionAngela Giuffrida (The Guardian)
World News reshared this.
A good person would be more concerned about some other kind of persecutions taking place right now.
Seems almost like Donald and Elon advocating against whites discrimination in South Africa.
CommunityHasNoFollowers error
2025-10-07T12:20:11.488023Z WARN Error encountered while processing the incoming HTTP request: lemmy_server::root_span_builder: CommunityHasNoFollowers: CommunityHasNoFollowers
0: lemmy_apub::activities::community::announce::receive
at crates/apub/src/activities/community/announce.rs:161
1: lemmy_server::root_span_builder::HTTP request
with http.method=POST http.scheme="http" http.host=lemmy.domain.ext http.target=/inbox otel.kind="server" request_id=02568c66-9ed6-4eb0-b533-77b19rcdef56 http.status_code=400 otel.status_code="OK"
at src/root_span_builder.rs:16Is there a way to determine which communities are throwing this error, and force the unsubscribe?
RUST_LOG=warn,extism=info,lemmy_server=debug,lemmy_api=debug,lemmy_api_common=debug,lemmy_api_crud=debug,lemmy_apub=debug,lemmy_db_schema=debug,lemmy_db_views=debug,lemmy_routes=debug,lemmy_utils=debug,lemmy_websocket=debugAny idea which one I should set to trace?
Why some federal workers aren't scared by the threat of shutdown layoffs
As the federal government appeared headed for a shutdown early last week, Jenna Norton joined a press conference outside the U.S. Capitol to urge lawmakers not to be cowed by the Trump administration's threat of mass layoffs."As a federal worker, I am here to tell you that every awful thing that would happen in a shutdown — shuttering programs that Americans rely on, damaging our economy, firing federal workers — all of this is already happening," said Norton, a program director with the National Institutes of Health, who spoke in her personal capacity alongside other civil servants.
...
Now furloughed, Norton continues to implore members of Congress to reject a spending deal that maintains the status quo. Instead, she hopes they'll use the moment to assert their constitutional authority — their power of the purse — to take back control of government spending.
"They accepted a position of power and privilege of representing the American people," Norton said in an interview with NPR. "If they're serious about doing that, they need to stand up and represent the American people and push back against a president who wants to be king."
Archived at web.archive.org/web/2025100712…
Why some federal workers aren't scared by the threat of shutdown layoffs
Some federal workers support the government shutdown, even as President Trump threatens to use this moment to lay off employees and cut funding to programs.NPR
essell likes this.
RIAA: Telegram & Discord Are Notorious Hubs For Pre-Release Music Piracy * TorrentFreak
RIAA: Telegram & Discord Are Notorious Hubs For Pre-Release Music Piracy * TorrentFreak
The RIAA has submitted its latest overview of "notorious markets" to the U.S. Government, flagging Telegram & Discord for pre-release piracy.Ernesto Van der Sar (TF Publishing)
thisisbutaname likes this.
If you lose your memories, are "you" dead? If a close relative/friend lose their memories, are they still "your relative/friend"? What the hell even is memory? How sentimental are you about memories?
like this
copymyjalopy e essell like this.
I’m an amnesiac and one of the first things I learned is that memories don’t really matter. The past is over, what matters is what you choose to do and not what you did. Obviously people do terrible and sometimes unforgivable things. I can sympathize with people who can’t let stuff go, but I personally just can’t be bothered by it anymore though. I have and will offer support to even my abusers.
To me, a person is how they act and what they want in the present. Lived experience affects everything a person does, the parts of a person’s past that are relevant reveal themselves in the present through how a person is.
Anime su mangaka: Jun Fukuyama nel cast di Egao no Taenai Shokuba Desu; è Masayuki Todo, ex editor di Futami
Nuovo ingresso d’autore per l’anime Egao no Taenai Shokuba Desu (Un posto di lavoro stranamente meraviglioso per mangaka): Jun Fukuyama si unisce al cast nel ruolo di Masayuki Todo, ex editor della protagonista Nana Futami. L’aggiunta rafforza un ensemble vocale già ricco e conferma l’attenzione della produzione verso interpreti di primo piano.
TUTTI I DETTAGLI E DOVE VEDERLO IN STREAMING: Anime su mangaka: Jun Fukuyama nel cast di Egao no Taenai Shokuba Desu; è Masayuki Todo, ex editor di Futami
Jun Fukuyama nel cast di Egao no Taenai Shokuba Desu: sarà Masayuki Todo
Jun Fukuyama si unisce all’anime su mangaka Egao no Taenai Shokuba Desu come Masayuki Todo, ex editor di Futami. Dove vederlo in streaming.Redazione (Atom Heart Magazine)
Blanca 3, anticipazioni terza puntata del 13 ottobre 2025: Blanca si riavvicina a Liguori, Eva è gelosa di Domenico
La terza puntata di Blanca 3 andrà in onda lunedì 13 ottobre 2025 in prima serata su Rai 1. L’episodio “Il Delfino” intreccia il caso di puntata con i nodi sentimentali: Blanca e Liguori tornano a indagare fianco a fianco, mentre Eva Faraldi fatica a nascondere la gelosia per il legame tra Blanca e Domenico.
LEGGI LE ANTICIPAZIONI: Blanca 3, anticipazioni terza puntata del 13 ottobre 2025: Blanca si riavvicina a Liguori, Eva è gelosa di Domenico
Blanca 3, anticipazioni terza puntata del 13 ottobre 2025: Blanca si riavvicina a Liguori, Eva è gelosa di Domenico
Blanca 3, anticipazioni 13 ottobre 2025 “Il Delfino”: tentato omicidio al Centro Recupero Animali Marini. Blanca e Liguori di nuovo vicini.Redazione (Atom Heart Magazine)
Dell Latitude Touchpad Deadzone and Fingerprint
I recently got my hands on a Dell Latitude E7470 and installed Fedora Workstation. Even though I enabled two finger scroll (and disabled touchpad edge scroll), the right side of the touchpad still has a dead zone of considerable size. So, when I start a mouse movement too far on the right side, it wont register.
I tried a few things, like adding quirk configs, but the zone is still there. Bios had no option to disable. (I reinstalled with UEFI, prior installation was legacy uefi / bios, so I have to give it a look again).
Does someone have a way to disable the dead zone?
Also, the fingerprint sensor doesn't work. From what I could research, it is a broadcom device with officials drivers for MS and Ubuntu. I tried some stuff to get this thing running, but it didn't work out. I still have to try a bios update after the reinstall. Is there a way to get this thing running under Fedora? It's not a crucial feature, but a nice to have for sure.
like this
Rozaŭtuno likes this.
I don't think so. If the movement starts outside the "dead zone", the touchpad works fine even within the "dead zone". Only if the movement starts in the dead zone, it's actually dead and its exactly the size of the "edge scroll zone", when the option is enabled.
I had a Dell Latitude at work a few years ago, I don't know if it was this exact model number, but the same series. And iirc on there was a driver option to disable the "dead zone" under microsoft.
Oh, Live USB is a good idea.
I really wanted to give Fedora a try, but maybe the time has come to give Ubuntu a second chance, when theres no solution.
yeah, it's just not fully compatible that touchpad it seems.
However, there's a trick.
These DELL laptops have an ubuntu equivalent usually. They used to sell them with either Windows or Ubuntu -- in cooperation with Canonical. And Canonical had SPECIAL repos for these laptops (different for each model), where you could find special driver versions for some hardware. This meant that you were stuck in the version of ubuntu LTS the laptop came with. You couldn't upgrade it to a newer version or to another distro. So I'd suggest you check if that model has an ubuntu equivalent, and then find their repo and see what kind of drivers they have for it. ubuntu.com/certified/laptops?v…
If it's not there, it just means that this hardware piece is not compatible with linux period... It happens, Linux can't support absolutely everything out there, especially since they have been developing for Windows and not for linux.
So it looks like the touchpad problem is a known issue with that particular model. A web search turned up an Arch Linux forum post from 2017 with the same issue. Unfortunately, there was no solution posted.
Your touchpad shows up as a PS/2 device, right? I have a ThinkPad A475 with a PS/2 trackpad that won’t function at all in Linux unless I add i8042.reset as a GRUB argument.
Maybe see if that helps?
Your touchpad shows up as a PS/2 device, right?
Yes.
I am not an expert with GRUB at all. For some reason, this sounds very aggressive and with a high chance of side effects. Theres nothing of worth on the device though, so I guess I'll give it a try.
This Month’s Quote
Give to every human being every right that you claim for yourself.
Robert G Ingersoll
Eurovision 2026: All The Countries That Have Spoken Out About Israel's Involvement
Eurovision 2026: All The Countries That Have Spoken Out About Israel's Involvement
A vote is due to take place later this year to decide whether Israel should remain part of the Eurovision Song Contest, with some countries threatening to withdraw if they stay.Daniel Welsh (HuffPost UK)
Can we update the wiki? Most streaming sites no longer work.
Clearly the feds are onto us. They actively monitor this place and will put forth as much effort as possible to shut sites down.
Hold on, let me update this. Why are you stupid people/mods ok with such a shit list of garbage that doesn't work? Why do you condone giving free media a bad name? Holy shit, have some fucking standards. Don't just accept everything that's shoved into your idiot face.
This is disgusting. You all make me sick.
like this
Rozaŭtuno likes this.
to be fair the wiki editing rules say:
If you aren't comfortable making edits to the wiki yourself, then please reach out to a mod/admin on our lemmy instance.
but this is just a rude ass OP
The Rachel Maddow Show 10/6/25
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.www.youtube.com
Brajla skribo jubileas kaj evoluas
En la jaro 2025 oni festas la 200-jariĝon de brajlo, skribsistemo inventita por blinduloj en 1825 de la tiam 16-jara franco Louis Braille. Versio de brajlo kun esperantaj literoj estis proponita de la sveda pioniro Harald Thilander ĉirkaŭ la jaro 1900, kaj ekde 1904 daŭre aperadas la brajla revuo Esperanta Ligilo. Otto Prytz en detala artikolo speciale verkita por Libera Folio rakontas pri la estiĝo kaj evoluo de la brajla skribo por diversaj lingvoj.
reshared this
Alexander Goeres 𒀯 e Verda Majorano ⁂ reshared this.
Jon Stewart Makes the Case for Dems Holding the Line in Trump's Shutdown Warfare
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.www.youtube.com
Microsoft is plugging more holes that let you use Windows 11 without an online account
Microsoft is plugging more holes that let you use Windows 11 without an online account
Microsoft is making changes to crack down on local Windows 11 accounts. You’ll need an internet connection and a Microsoft account to setup a new Windows PC.Tom Warren (The Verge)
Rozaŭtuno likes this.
like this
Hyacin (He/Him), goosey, mathemachristian[he], radio_free_asgarthr [he/him, comrade/them], P3Tr0VZ, hereforawhile, raoul, cristian64, besbin, CXORA, solrize, Sam, The Man, entropicdrift, PerryGirl [she/her, she/her], D_Air1, Someplaceunknown, Penguin_1024, MachineFab812, qt0x40490FDB, z3rOR0ne, sunshine, ComradeSharkfucker, Marty_TF, sleeperdouge, normal_user [they/them, any], hemko, ashestosea, Cochise, Programmer Belch, Ithorian [comrade/them], Matengor, SaltyIceteaMaker, Foster Hangdaan, Mechanize, paschko_mato, lengau, LadyCajAsca [she/her, comrade/them], JayDee, hairyfeet, ambitiousslab, dragnucs, Capybaro, , CascadeOfLight [he/him], Cowbee [he/they], db0, sawdustprophet, turambar, standarduser, Dessalines, morpheus17pro, thoro, comrade_elmo [none/use name], triplenadir, Evil_Shrubbery, Piperpiper1, kureta, DynamicBits, dnf, tuxiqae, haroldstork, m532, NoStepOnPython, Ixoid, robertxgray, communism, sylphio, SineIraEtStudio, jutty, Raccoonn, deathbird, Binette, ferric_carcinization, تحريرها كلها ممكن e altre 5 persone like this.
don't like this
digivation e erock don't like this.
like this
huf [he/him] likes this.
it also means that there's a smooth transition between doing a thing once and doing it a 1000 times (or otherwise automating it), because you've got a programming language right there already. no need to look for a "mass-x gui tool" for each x.
oh, and i think (though i have no actual experience with this) that it's a lot easier to make terminals friendly for disabled people (blind, etc)
like this
alexei_1917 [mirror/your pronouns], Ferk, m532 e ferric_carcinization like this.
The CLI is also a much more reliable environment to provide instructions on how to do something.
Instructing people to click on "this button > tab > menu > submenu > item" is very exhausting for both instructor and reader, it's language-dependant and less future-proof. Also sometimes the location of some graphic elements isn't immediately obvious and there are cases where the only way to make sure people understand it is with a video tutorial of sorts. Which is annoying both to make and to have to sit and watch through.
This also makes the CLI better at reporting/diagnosing problems.. for a GUI app, if you want to report a bug you have to write down a bible of steps on what things you clicked on, etc. (again, a video ultimately is needed to make things clear). Whereas a CLI app has all that information already in the parameters so you can just provide that as the report (along with any input/output data). Or simply copy the contents of your terminal.
like this
huf [he/him], alexei_1917 [mirror/your pronouns], m532 e ferric_carcinization like this.
like this
alexei_1917 [mirror/your pronouns], m532, ferric_carcinization e basiclemmon98 like this.
triplenadir doesn't like this.
mm yes, i'd love to have a UI for the computer where the same input will produce different results each time (and makes half of it up on the spot) and you can never ever trust anything it outputs but have to check literally every single pixel carefully.
as opposed to entering a cli command you're familiar with and checking just the little bit of the output that is relevant to you, because you are familiar with the output format and it's stable.
i like having extra cognitive load, it helps.
like this
alexei_1917 [mirror/your pronouns], Are_Euclidding_Me [e/em/eir], ferric_carcinization e BartyDeCanter like this.
don't like this
Tippon, ☆ Yσɠƚԋσʂ ☆ e m532 don't like this.
like this
huf [he/him] e ferric_carcinization like this.
like this
Tippon, m532 e ferric_carcinization like this.
ferric_carcinization likes this.
like this
m532 e ferric_carcinization like this.
m532 likes this.
like this
alexei_1917 [mirror/your pronouns] e ferric_carcinization like this.
like this
huf [he/him], m532 e ferric_carcinization like this.
That seems extremely frustrating to use. I don't want or need that compared to what's currently available.
And of course, there will always be people who want direct access to the underlying command line. Which is unsurprising now and will still be unsurprising in another 20 years.
like this
huf [he/him], bountygiver [any] e ferric_carcinization like this.
like this
m532 e ferric_carcinization like this.
like this
☆ Yσɠƚԋσʂ ☆ e ferric_carcinization like this.
like this
The Menemen e alexei_1917 [mirror/your pronouns] like this.
like this
alexei_1917 [mirror/your pronouns], ferric_carcinization, Nondiegetic (any), megane-kun e basiclemmon98 like this.
That really sounds like hardware designers being very mean to programmers and terminal junkies, for sure.
I've never really understood the appeal of having a terminal app on your phone, for this reason - I get the cool factor, Android is based on Linux so being able to get deep into things and have terminal access to stuff on your handheld device, that follows the same conventions and standards as any more traditional computer you use at home does, is neat, sure, but actually seriously using a CLI with a phone keyboard sounds very frustrating.
like this
ferric_carcinization e The Menemen like this.
I have a terminal app in my phone, but I don't normally use it from the touch keyboard..
The main reason I have it is because from it I can install an ssh server (and a few other services, like privoxy and so) and then connect to the phone through ssh and access that CLI from other locations, even places where the internet is restricted/monitored or there isn't a wifi access point (I can create a hotspot from the phone instead). If you are using a work laptop with restricted access, or are traveling and using a computer in your remote location, carrying around with you, in your pocket, a set of CLI / TUI tools and apps that you are familiar with can come in handy.
Also, nowadays you can plug a keyboard directly to your phone (a monitor too) and have it work as a portable terminal device. Of course it would be better if you were able to have a Desktop-grade OS in your phone for this.. but things like termux work if you are a "terminal junkie".
like this
ferric_carcinization e Nondiegetic (any) like this.
Nondiegetic (any) likes this.
Washington turns its back on US citizens detained with the Global Sumud Flotilla
On October 6, after several US citizens had been detained for days by Israeli forces after attempting to deliver humanitarian aid to Gaza, US ambassador to Israel Mike Huckabee took to X to accuse these activists of taking “a carbon-spewing Hamas-funded boat ride in violation of [international] law intruding into war zone to stand [with] terrorists.”
Last week, Israeli forces detained over 435 activists who were taking part in the Global Sumud Flotilla, the largest civilian-led humanitarian mission of its kind. While dozens are still being held by Israel, those who have been deported and released, allege mistreatment by Israeli forces.
The flotilla saw participation from delegates from 57 countries – but following the seizing of ships by Israeli forces, the US government has taken a unique position in both ignoring the plight of its own citizens and open condemnation of its own citizens by diplomatic personnel.
British parliamentarian Zarah Sultana demanded the United Kingdom call for the freedom of detained US citizen and activist David Adler, writing, “the US won’t act so it’s on us to demand justice.”
According to Laura Colston, mother of detained activist and journalist Alex Colston who alleges her son is being mistreated by Israeli forces, “calls/messages to US Gov’t officials are ignored.”
“When else has a US journalist been unlawfully detained abroad and the State Department has done essentially nothing about it?” wrote Freedom of the Press Foundation on X, in relation to Colston’s detention.
Progressive lawmakers pressure executive branch
Some US lawmakers have challenged the indifference of the executive branch.
Lawmakers have urged Secretary of State Marco Rubio to protect the US citizens aboard the flotilla even before they were detained. In a letter sent on September 29, a group of congressional representatives, led by Representative Rashida Tlaib, argued that “the 24 American citizens on board these ships cannot afford another failure of American leadership.”
On Monday, California representative Ro Khanna said he plans to put pressure on Rubio and Huckabee for Adler’s release, writing, “Our government must stand up for an American citizen’s fair treatment and release.”
Maryland Senator Chris Van Hollen posted a video of him speaking directly with the relatives of US flotilla activists detained by Israel, and called on Huckabee to “do his job.”
“The siege on Gaza is breaking”
The 24 US citizens aboard the flotilla who were captured by Israel include Adler, Colston, anti-imperialist veteran activist Greg Stoker, musicians Leila Hegazy and Carsie Blanton, and others.
“My sister is a New Yorker,” said Hegazy’s twin sister, Omnia, in an October 1 press conference after the flotilla was terrorized by Israeli attacks. “She is being openly threatened by the Israeli government, while our senators are sending money to Israel,” Hegazy said, denouncing her Senators Chuck Schumer and Kirsten Gillibrand for not speaking out for her sister.
The day after songwriter Carsie Blanton was detained by Israeli forces, her brother, Elijah, spoke at a pro-Palestine rally. Blanton said, that, although he does not know his sister’s current whereabouts, or where she is being detained, he knows that she is “not afraid,” because “they can see what we can see,” that “the siege on Gaza is breaking.”
The post Washington turns its back on US citizens detained with the Global Sumud Flotilla appeared first on Peoples Dispatch.
'The Entire World Is Watching': US Lawmakers Demand Protection for Gaza Flotilla From Israeli Attacks
"The 24 American citizens on board these ships cannot afford another failure of American leadership," the Democratic lawmakers emphasized.brad-reed (Common Dreams)
Wayland - How Best to Log My Own Desktop Activities
I'm self employed. I need to record how much time I spend on whatever task for whatever client.
Sounds simple, but I'm terrible at it. I always get to the end of the day without having recorded anything and not knowing what I've actually done.
Basically, I'd like to create a text log of the active window title, and take a screen cap.
I'd like to do this periodically as in every 15 minutes or so.
For the text log I just haven't been able to achieve this at all.
For the screen caps I can use flameshot to take a screenshot from the CLI, but it makes a sound and shows an animation which is sub-optimal.
Any suggestions of where to look much appreciated.
Edit: I'm not asking for a time tracking app. I want something to log the active window title and take a screen cap so I can figure out what I was doing and write it in my time tracking app.
Edit: I'm narrowing in on a solution.
Firstly, a lot of previously available solutions don't work because of recently implemented security features in gnome.
You need to enter unsafe mode by entering the following in the looking glass tool (which you can access by running lg in the alt + f2 dialog):
global.context.unsafe_mode = truethereafter, this can grab the active window title for you:
gdbus call --session --dest org.gnome.Shell --object-path /org/gnome/Shell --method org.gnome.Shell.Eval "global.display.focus_window.title"... and this can take a screen cap for you:
gdbus call --session --dest org.gnome.Shell.Screenshot --object-path /org/gnome/Shell/Screenshot --method org.gnome.Shell.Screenshot.Screenshot false false /tmp/screencap.pngdbus calls to gnome shell don't work under Ubuntu 22.04
Trivial example: Under Ubuntu 20.04, the following command: gdbus call -e -d org.gnome.Shell -o /org/gnome/Shell -m org.gnome.Shell.Eval true produces this output: (true, 'true') but under 22.04...Ask Ubuntu
like this
Rozaŭtuno e adhocfungus like this.
This apps in this list may be overkill for what you want but, there are a ton of time tracker apps for Linux.
25 Best Free and Open Source Linux GUI Time Tracking Software
I don’t use any personally, sorry, I don’t have any recommendations specifically.
25 Best Free and Open Source Linux GUI Time Tracking Software - LinuxLinks
A good range of free Linux time tracking tools are available. This article identifies our favourite tools.Steve Emms (LinuxLinks)
maybe:
github.com/Svahnen/openrecall_…
GitHub - Svahnen/openrecall_wayland: OpenRecall is a fully open-source, privacy-first alternative to proprietary solutions like Microsoft's Windows Recall. With OpenRecall, you can easily access your digital history, enhancing your memory and productivity
OpenRecall is a fully open-source, privacy-first alternative to proprietary solutions like Microsoft's Windows Recall. With OpenRecall, you can easily access your digital history, enhancing you...GitHub
Kinda cool, interesting. Thanks for the suggestion.
It's not really suitable for me though. This kinda takes periodic screenshots and makes them searchable.
I need to know what I was doing at different times. So really it's just the periodic screenshots that I need and the search functionality isn't useful to me.
"searchable" in the sense that you can ask an AI what you were doing at certain times.
I am pretty sure you could ask it to generate per project timetables from that.
Or at the very least, you can use the codebase to see how they take continuous screenshots. Especially since all the wayland code is clearly seperated in the fork.
Yeah there's a video on the upstream project page that shows how it works. It's notreally "AI" so much as OCR. Like if you search "wayland" it will show you the times at which that word was visible on the screen.
I don't think it accepts a "prompt" like "make a list of activities for me".
I did have a quick look at how they're doing it. It's just a different python lib.
I did however discover, from looking at this project, that the sound and animation from taking a screenshot originates from gnome, not the thing taking the screen shot. There's some notes in this project explaining how to disable that.
With this in mind, other screenshot apps like flameshot will be fine.
I don’t think it accepts a “prompt” like “make a list of activities for me”.
Ah I see, my bad.
Another idea that might or might not work is filming a video at 0.0011 fps (1 frame every 15 min). Not sure if it accepts values that low or handles them correctly.
wf-recorder --framerate=0.0011 --file=timelapse.mkvOr maybe do a 1 frame video on a loop
while true; do
wf-recorder -f frame_$(date +%Y%m%d_%H%M%S).png -t 1
sleep 900
doneAs that will use a different interface it might not flash the screen.
Just random ideas, no clue if they would work.
Good luck with your project.
Chatgt says build a scrip using a few tools. xdotool and scrot. I don't know if this code is good or not. And some hashes are making markdown headers. How do we paste code on here?
Set interval (in seconds)
INTERVAL=10
Output directories
LOG_FILE="$HOME/window_log.txt"
IMG_DIR="$HOME/window_snaps"
mkdir -p "$IMG_DIR"
while true; do
# Get timestamp
TS=$(date "+%Y-%m-%d_%H-%M-%S")
# Get active window title
TITLE=$(xdotool getactivewindow getwindowname 2>/dev/null)
# Fallback if title is empty
if [ -z "$TITLE" ]; then
TITLE="(No active window)"
fi
# Take screenshot
IMG_FILE="$IMG_DIR/snap_$TS.png"
scrot "$IMG_FILE"
# Log entry
echo "$TS | $TITLE" >> "$LOG_FILE"
# Wait before next iteration
sleep $INTERVALdone
There is an etiquette to not just copy and pasting from ChatGPT. The fact you couldn’t verify the code yourself is a bigger issue.
I understand you may have thought this may help, it really does not.
like this
eshep likes this.
I find LMM is typically trash, but can get you started. But your etiquette note is noted
There's several answers like this in this thread.
I feel like the community would benefit from a sticky explaining some basic etiquette and how not to "help".
It's not just dumping gen AI output in a thread, there's other poorly considered answers here too.
Maybe ask chatgpt whether xdotool is compatible with wayland.
I get that you're trying to help but, this is not the way.
like this
eshep likes this.
This might shock you but... I have actually spent some time looking into this.
The tools you've suggested aren't compatible with Wayland. It seems that alternatives don't really exist, or cause the problems I mentioned in my post.
Additionally, I have a few decades experience with Linux and while I'm not some amazing Linux guru I do know what a bash script is and how to "link two programs together".
Finally, like everyone on the planet I also know what chatgpt is and might even consider using it to create a bash script if I knew what tools were compatible with Wayland.
It's funny you say that. I was thinking exactly the same thing about your comments.
I've asked for help, you posted a chatgpt response, and now you've claimed eleventy times that I seem like I don't know where to start or don't seem like the type to search things.
"OP should've googled it first" is one of the hallmarks of toxic communities.
@BCsven
This is so much less helpful than just posting "I don't know" or "beats me".
First, if you're gonna post code, put it in a code block. And nevermind you not knowing if the ""code is good"", it doesn't even adhere to the question that was asked; the two programs you suggested are not even wayland compatible tools.
@null_dot
OP seemed like they didn't know where to start, so linking programs together was my suggestion. With a rough example. If thats against etiquette the noted.
As for helpfulness, where are the code block entries. I have preview, hyperlink, inage, bold, italic,quotes,lists and spoilers across the bottom, and no codeblock.
As for Wayland compatible this is where, somebody reads between the lines. If those two aren't Wayland compatible search for Wayland compatible tool like "xxxxxx".
Haven't ever done this in wayland, but in X, I always used to
xdotool to grab the title of the active window. I'd guess you could do the same using one of the wayland alternatives like ydotool, wlrctl, dotool, or whatever else is out there. And something like grim to grab an image of the window.
Thanks for these suggestions.
I think xdotool kinda does "gnome magic" including simulating key presses to gnome.
It looks like ydotool and dotool only simulate key presses to gnome, which can't achieve my aims.
I couldn't figure out how to install wlrctl, but other attempts with other avenues have led me to believe that anything that starts with wlr is wlroots and gnome doesn't implement those endpoints of the wayland api.
grim also doesn't work with debian / gnome / mutter / wayland it appears.
What’s your window manager?
You can use grim+slurp to take screenshots. Scroll down to the Wayland section for a snippet:
wiki.archlinux.org/title/Scree…
I keep my desktop muted so I am not sure if it makes a sound or not. If you wrap the commands into a timer loop it will do what you’re looking for.
For the window title you can likely use your window manager’s IPC calls to get the active window title or list of windows on a workspace. My wayland experience is limited to hyprland and if you haven’t found a solution when I get home from work I can post the jank utility I made in rust to output the data I needed for my Eww bar.
I'm using a default debian / gnome setup, so that's mutter + wayland.
Grim seems to error with compositor doesn't support wlr-screencopy-unstable-v1 which I don't really understand. Searching that term suggests that gnome will never support wlr-anything.
There's nothing like you ask. Most time tracker apps are just a calendar where you write manually how much time you spent on something. So you can use something like Kimai, or use a paper calendar and write on it.
But text log of the active window and a screencap, that's the stuff of Microsoft Recall AI nightmares that Linux developers wouldn't be keen to implement. What you're asking is intrusive AI for others. Maybe you need to actually learn to be punctual and write down your activities, or simply, buy a Snapdragon laptop with Windows AI on it. And even then, that info stays with the AI, I don't think it's shared much with the user.
Most time tracker apps
That's not what I asked for.
use a paper calendar and write on it.
You don't really understand time tracking, I see.
But text log of the active window and a screencap, that's the stuff of Microsoft Recall AI nightmares
How is logging the title of the active window an AI nightmare ?
the stuff of Microsoft Recall AI nightmares that Linux developers wouldn't be keen to implement
Like this you mean? Yes, surely that doesn't exist.
Maybe you need to actually learn to be punctual and write down your activities
Maybe you need to try being... a bit less of a dick ?
buy a Snapdragon laptop with Windows AI on it
Kinda speechless at this one. Well done.
GitHub - openrecall/openrecall: OpenRecall is a fully open-source, privacy-first alternative to proprietary solutions like Microsoft's Windows Recall. With OpenRecall, you can easily access your digital history, enhancing your memory and productivity with
OpenRecall is a fully open-source, privacy-first alternative to proprietary solutions like Microsoft's Windows Recall. With OpenRecall, you can easily access your digital history, enhancing you...GitHub
like this
eshep likes this.
It's been a while since I looked into details of wayland, but one thing I recall is that a lot of things depend on the specific compositor / desktop environment you are using.
X is very open: you can easily query open windows etc, while on wayland things are less standardized / more hidden.
Which compositor do you use?
I had a play around with this. Thanks for the suggestion.
It seems to use pipewire to capture the desktop. I can't get pipewire to watch more than one monitor at a time. On this basis it's a non-starter unfortunately. Screen cap tools can get the entire desktop.
I wrote software to do þis, but in X, so it wouldn't help you. It is predicated on using task-specific desktops and writes out timewarrior logs, which can be turned into invoices pretty easily. It doesn't work at þe window level, and it doesn't do screen caps.
Alþough it won't help you because it isn't Wayland, it is all just scripts. Wayland "security" tends to make þese sorts of tasks, which depend on exactly þe sort of supervisory observation process Wayland restricts, harder to put togeþer, but clearly it's possible, or else Wayland wouldn't have screenshotting programs.
that's easy. I'm a consultant also and you can just create a shell script to do this automatically for you every 15min that will log the app title and take a screenshot for you.
Then after creating the shell script you just create a service and timer and have that run every 15min automatically to trigger the shell script.
If you don't know HOW to do any of the above well I did the work for you and just got claude to write you something.
here ya go: claude.ai/share/ef030e63-0814-…
I appreciate that you've made an attempt to help, but sadly this answer is like the other gen AI answers in this thread in that it just plain doesn't work.
My question is something like "what is the command to do X" and your answer is really "here's a script that could run a command if you knew what command to run".
In this case claude has chosen gnome-screenshot for the screenshot, which hasn't been part of gnome for many years.
I will acknowledge however that the gdbus call claud selected is actually the best way to get the active window title, it's just that it doesn't work unless you disable gnome shell security manually, each time you log in.
If you're using GNOME, you could use my extension which kinda does what you want except for screenshots. Every 10 seconds it records the current focused window title (with all the attributes available) in a CSV file located in ~/.local/share/activitytracket/log. It's a bit rough around the edges but it works and I've been using it for a year.
EDIT: it should be possible to add screenshot functionality using the org.gnome.Shell.Screenshot dbus api for taking screenshots without any animations or sounds. It should not be that difficult to add to my extension
GitHub - nortio/activitytracker
Contribute to nortio/activitytracker development by creating an account on GitHub.GitHub
Hyprland has the screenshotting functionality builtin.
hyprctl dispatch capture window
\#!/usr/bin/env bash
# get hyprland event socket path
HIS=$HYPRLAND_INSTANCE_SIGNATURE
EVENT_SOCK="$XDG_RUNTIME_DIR/hypr/$HIS/.socket2.sock"
# fallback / error check
if [ -z "$HIS" ] || [ ! -S "$EVENT_SOCK" ]; then
echo "Error: cannot locate Hyprland event socket at $EVENT_SOCK" >&2
exit 1
fi
logfile="${HOME}/hypr_focus.log"
# function to handle a line from the event stream
handle_event() {
local line="$1"
# check for activewindow event
if [[ $line == activewindow* ]]; then
# format: activewindow>>CLASS,TITLE
# strip prefix
local payload=${line#activewindow>>}
# split on comma (first comma)
local cls="${payload%%,*}"
local title="${payload#*,}"
local ts
ts=$(date '+%Y-%m-%d %H:%M:%S')
echo "$ts — $title (class: $cls)" >> "$logfile"
fi
# optionally handle activewindowv2 if you want address instead
# if [[ $line == activewindowv2* ]]; then
# ...
# fi
}
# listen to the socket
socat -u "UNIX-CONNECT:$EVENT_SOCK" - | while IFS= read -r line; do
handle_event "$line"
donehonestly if you're willing to do some work you can make hyprland do almost anything
**disclaimer i did not test this much
edit: forgot about the screenshot part, should be easy to add though, just add screenshotting everytime focus changes with grim or whatever
Thanks.
I didn't really know hyprland was a thing prior to the comments in this thread. It looks great though.
However, the install process seems non-trivial so I'm going to wait until I have a little more time to play around with it.
Microsoft is plugging more holes that let you use Windows 11 without an online account
Microsoft is plugging more holes that let you use Windows 11 without an online account
Microsoft is making changes to crack down on local Windows 11 accounts. You’ll need an internet connection and a Microsoft account to setup a new Windows PC.Tom Warren (The Verge)
like this
Rozaŭtuno, adhocfungus, aramis87, dhhyfddehhfyy4673, Dantpool, Maeve, wagesj45, massive_bereavement, YoSoySnekBoi, giantpaper, HamiltonBakony e essell like this.
Technology reshared this.
Same, I refuse to have my OS linked to anything other then a local account.
Especially since most email accounts now need cell phone numbers, and home addresses.
like this
TVA likes this.
Legally cost a lot not available for usual users only in crack way
I wish the IT company we work with used enterprise edition, instead I have to deal with a ton of fuckery that is professional edition in an org with 50 employees, and I do not have the schooling necessary to take over fully.
Really wish we could just ditch windows altogether every time I find another computer that is using a local login instead of an AD login because they couldn't be bothered to set shit up properly
One option is to install an older version and update after.
A better one is not use it because it's trash.
The Enterprise/IoT SKUs, which of course include LTSC, still let you use a local account, for now...
I won't be surprised if they plug that at some point way down the line too though given they're already playing with Windows on the Cloud in the enterprise sector.
like this
TVA likes this.
I would be surprised if they force the requirement on LTSC.
I could believe they force it into enterprise licensing, but LTSC's whole deal is that the environment doesn't change and only gets security patches. It's made to be used in kiosks, CNC controllers and the like. Machines that are supposed perform one task reliably.
This is also the reason it's the best version of Windows for the desktop, and why Microsoft makes it so challenging to acquire licences.
You think people would be happy
You think people are happy with the current situation either?
Here's your bypass:
In OOBE, go through MS account creation. Tell it you were born today. It'll let you set a password for the MS account before rejecting you due to COPA requirements. At this point, you can make an offline account without having even created an MS account, let alone having to use one.
This will not go away - it's a legal thing. MS doesn't want to deal with COPA stuff for very young kids, so this flow exists. Enjoy.
If that actually becomes a thing people do, that could prompt MS to start to require either submitting to a face scan or showing some government ID just to install Windows, though, if the way Google's handling KYC on YT if your account gets flagged as underage, and soon Android app dev, as well as KYC going out across other sites, is any indication.
I'm pretty sure having to KYC just to install an OS is the last thing people want right now.
Let them. The entire world is slowly migrating to Mac and Linux. I haven't even had the option of windows at my last 3 jobs. (To be fair, I've never had the option of desktop Linux, but this last one said pick a computer—I'm not positive that they would've balked at Linux.) That said, idk what's so great about Mac over Linux, but I guess it's not corporate friendly.
I'm trying to think of which MS products we even have in our ecosystem. Office, I guess. Corporate world will never wean themselves off of Excel.
The entire world is slowly migrating to Mac and Linux.
have a look at the steam hardware survey results or basically any other statistics and see that it's not the case.
If os can't be installed off a usb then that means linux can't either, which makes it a pretty sad machine to spend money on.
So it must be a work or school device then? Which users wouldn't be installing OS on anyways with it being handled through IT.
There are plenty that will boot/install Linux just fine but won't do a nice clean install of Windows 11.
Modern Thinkpad E16 (AMD) is one of them, a clean USB won't work, it will always stick at not finding required drivers.
You need to inevitably create a USB install from the MS USB Media Creation tool, running on the machine itself from the included crapware Windows - to get an installer USB that will work.
Different if you're just pushing a wim over the network from endpoint/scm, but it's basically broken for local users.
I'm mostly working with T series laptops and haven't had the problem, but always good to know if or when an E16 shows up.
I've started calling the E-series as E-waste.
Yes please let us know. Wont know till we order another batch of newer computers in a few weeks.
I guess i could download the latest test build on a test machine and reset it and try.
Inconclusive. Re-used machines instead of new computers. Systems did have Windows 11 on them. OOBE\BypassNRO worked, but they may have pending updates.
Edit: one machine would not let me skip MS account sign in with OOBE\BypassNRO. IPConfig /Release immediately let me set up a local account.
Dump windows. These megacorps need to fail.
Edit: I have only been using Linux for less than a year now, and right now, really is the perfect time to switch. I only held onto windows for gaming, and now I use bazzite. There are some games that don't have steam backup, but with the games that do, I can play the same save between my steamdeck and bazzite.
There is so much more you can do with linux and all it's distros. I've messed around with linux in the past, but never was patient enough to deal with it. Now it's really that easy.
like this
onewithoutaname likes this.
“While these mechanisms were often used to bypass Microsoft account setup, they also inadvertently skip critical setup screens, potentially causing users to exit OOBE with a device that is not fully configured for use.”
Lol sure. If that was the real reason they'd simply let you create a local account. The audacious lying is just insulting.
like this
qupada e IHeartBadCode like this.
potentially causing users to exit OOBE with a device that is not fully configured for use
Oh no, onedrive not working or the office nagging screen missing in the start menu, how will we cope.
It's not lying if what they mean by "not fully configured for use" is that the private data being captured and sent to their servers is not fully matched to a personal identity in their systems.
After all, they didn't say whose "use" that device would not be configured for.
In theory Pluton enforcement platform-wide, which also includes forced SecureBoot without the ability to install user-signed keys, as well as OTA updates for that super-TPM, could block alt OSes on PC though.
Fortunately, Pluton never caught on and that hasn't happened so far.
like this
HeerlijkeDrop e onewithoutaname like this.
Forced SecureBoot with only MS keys and no way to install user-signed keys and no Linux shim would block non-Windows OSes from booting.
Basically, Pluton functions similar to how mobile devices function in terms of locked bootloaders.
AFAIK the only devices currently produced which actually use Pluton are Surface devices though, and if it's not being implemented as intended, it's just seen as a generic TPM by other OSes.
For anyone wondering what Pluton is: learn.microsoft.com/en-us/wind…
Pluton as TPM: learn.microsoft.com/en-us/wind…
Microsoft Pluton security processor
Learn more about Microsoft Pluton security processorlearn.microsoft.com
Proprietary hardware, like opaque bioses that can only be updated with signed, proprietary blobs? The bios that's in charge of picking something to boot from from storage? The bios that can decide which bootloader is allowed through digital signatures? The signatures that are only valid if their public key is registered in the bios? The proprietary, opaque bios that decide which bootloader's signature is valid through keys it can restrict?
Yeah, it's all coming together. Always has been. Joking aside, I'm still surprised this whole "fully locked bios" didn't take off. And I'm glad for it.
Fortunately, Pluton never caught on and that hasn't happened so far.
I'm confused. don't all recent AMD and intel CPUs have pluton included? I remember such an AMD announcement from ryzen 6000 and onwards, and for intel too
From the other time this was posted:
95 is the stick, and ME is the stick up someone’s butt.
Doesn’t stop me from using Windows 11 as much as I want.
Which is none.
like this
giantpaper likes this.
My work offers alternatives.
But even if, my work laptop is just something I remote on from my desktop and switch around seemlessly.
like this
giantpaper likes this.
like this
HeerlijkeDrop e giantpaper like this.
Glad I found one and used it. If I didn't need Windows for my classes, I'd be on Linux already.
I found it because the wifi was stuck off and if I couldn't turn it on unless I set up windows... Which dumbly requires internet.
So once that comes to pass, someone in my situation would be SOL.
"It would bypass critical steps..."
Which step is that, data collection? Shoving OneDrive down my throat by putting my Desktop in it with no way to easily remove it?
like this
TVA e onewithoutaname like this.
At this point I just net user /add it, which just creates the user manually and then you can reboot and just log into it.
It's not like you need anything from the OOBE at all, so might as well just skip it entirely.
Germans got us covered:
schneegans.de/windows/unattend…
Some crap I still have a Windows VM. Combine this with ShutUp10 for blocking telemetry.
like this
onewithoutaname likes this.
like this
Zier likes this.
like this
mPony likes this.
I've got an old desktop with a Core I7 with a 3 digit model number and 12GB of DDR3 RAM, it's running Mint Cinnamon. I've got a Lenovo x86 tablet thing with 8GB of RAM and a Pentium processor, it's currently running Fedora GNOME. I've run Ubuntu MATE on a Pi 4 as a desktop PC for about a year.
Most distros of Linux will run very well on a machine that ever ran Windows 7 acceptably. Prior to that, you start running into the "we're discontinuing 32-bit support" problem.
well I assumed your devices have 4 and such GB of RAM, but yeah at 8 GB memory efficiency is not a pressing problem.
like I have a laptop with 2 GB that runs windows 10 acceptably, there was a time when that was my main on-the-go setup. that memory is almost completely used up by just logging in to kde plasma. memory compression is of course not a choice with the cpu it has though
Im running cosmic desktop on arch, its actually very good! I have enabled automatic tiling of windows and its just super convenient. Like a tiling window manager but with all the stuff most people want built-in (top bar, notifications, screenshots, screen sharing etc).
You cant customize it as much as a real tiling window manager but if all you want is for your windows to tile, its awesome.
Not OP, but I have to keep one Windows PC around. My favorite mod for my favorite 20 year old 4x game will not run on Linux, even though the game itself will.
The rest of my PCs are running either Mint or Xubuntu.
Use Windows 11 IoT Enterprise LTSC, problem solved.
Or, you know, that other thing.
just use that one thing that works right now
He said in response to an article about how they are perpetually reducing the amount of things that work right now
I doubt they'll risk alienating their enterprise costumers, but sure, they could make IoT account-only.
In that case just switch to Linux already.
I installed windows 11 a dozen time at work (never at home) and I just click on "domain login", it just creates a local account and then after the install I have to manually join the domain. No Microsoft account enforcement at all.
It's regular Windows 11, not Enterprise, we are a small company.
But I'm wondering, this bypass is too easy, is it because it sees that the DNS server is also an active directory server, so it allows that, or the trick is that you tell him you want to join a domain?
Or maybe it's a domain enrollment bug because we're using samba 4 under Debian as active directory server and not Windows server/entra id/whatever they call it this month?
I just click on “domain login”It’s regular Windows 11, not Enterprise
You need to have 11 Pro or better to domain join a computer.
Your computer would also need to be joined to your domain to allow the login, so there is definitely some config going on that is not available to the typical home user.
It's not our mentality, it's their strategy.
Wars breed new strategies.
Sometimes it's free trade as a carrot and embargo as a stick, like with, well, one can try to nail it to Napoleonic wars, but as old as life. Sometimes it's mass production and standardization and ergonomics and scientific industrial design, one can try to nail these to WWII, but also as old as life. And sometimes it's controlled escalation as a way to reach your goals without triggering nuclear response, which one can nail to the Cold War.
American strategy of the Cold War is being used against world markets, ladies and gentlemen. Together with the previous two strategies mentioned.
The Soviet one was the opposite, to try to make even the smallest transgression cause firmly the same response, so that controlled escalation wouldn't work, but unfortunately one is founded in human psychology (plus game theory) and the other in rational knowledge (just game theory), the latter always loses. It was called scientific-technical revolution and meant literally its name - instead of gradual escalation, which favors the stronger side, you should create technical means to punch a fatal wound, nothing gradual.
So - the subscriptions themselves matter very little, they are just slowly transitioning everything big to dependence upon remote components available over the Internet.
It's funny, actually, so much gradual work, and in the end it'll be just wasted time - even making computers is not magic. State of the art processes could as well be that for most of humanity, but for many purposes Pentium MMX is a good enough computer, and such are not magic.
And especially making computer software of the kind that's being "metropolized" like this is not magic. Most of it is complex simply because of legacy, backwards compatibility and as a barrier for competitors making alternative implementations.
I've never been more appreciative than I am now of the decades of effort that have gone into building this free and open-source operating system.
Imagine if we were here in 2025, with all the incumbent operating systems going to shit, but in a world where Linux didn't exist and there was no alternative that wasn't owned by a tech giant.
I don't even want to imagine.
like this
palordrolap likes this.
The alternative alternative existed before Linux and still exists today: BSD
In a world without Linus Torvalds, all those people who have devoted time and effort into Linux might well have found themselves working / hobbying in the BSD ecosystems instead.
I think it's almost certain that Linux's niche would have been taken by it. It worked for Apple, after all.
Or, who knows, maybe GNU Hurd might have become viable.
I find this alternate timeline incredibly likely. I had a friend in college who was all about SCO Unix back before they went evil, even when Slackware was the go-to distro. We would have a lot more BSD forks out here now, although NextStep (and maybe even OSX) would probably still emerge as one of the better commercial ones.
As an aside: what I find amusing is that Homebrew is basically BSD Ports, served from a git repo. In 2025, it's a completely insane way to ship OS software to a single platform, but it does work.
Sure, if it wasn't Linux then another project may have got the love and attention.
I'm not glad it was Linux specifically, just glad there is a credible FOSS alternative of some kind, and in our universe that's Linux.
You might think there's no such world where we wouldn't have had some credible alternative, and as reasonable as that is - because freedom and independence are things people intrinsically want - I'm sure if you flap the butterfly wings enough times there'd be a universe where we all just collectively decided that commercial operating systems were the answer.
Glad I don't live there.
Yes, competition is good.
It is just a problem when the competition is big tech and can ignore everybody else as they get even more money from somewhere else like Azure.
Don't forget to donate to your favorite distro (and other open source projects) to help them keep the lights on.
Gotta do our part to fight the massive mega corps from devouring every aspect of our lives.
Woahwoahwoah, let's not be unrealistic here.
But honestly I'm happy for the final push to Linux. I've been telling myself to make the change for a few years now but what's happening with AI training and side-loading / complete loss of privacy / general horrible vibes in the closed-source tech-sector..... Linux it is. I'm even ready for the learning curve. I grew up on dos, I'm sure I can find my way around it.
Lol it's been great getting off of Windows over the last few months.
I thought I would miss it, but Proton in Steam has been amazing on Ubuntu, with some exceptions (Stupid EA crap from skate. 2025).
Dual booting for now is OK, but gaming is pretty garbage anyway, so I will probably abandon Windows entirely soon. Definitely my last version of it. Feel so liberated having hobbies off computer anyway, and now using my computers with Ubuntu is actually enjoyable again instead of driving an expensive spy machine.
😀
Is this what they mean when they say "stream of consciousness"?
edit: Fix ironic typo.
Using a Microsoft cloud account to log into my local computer means Microsoft owns credentials to a device in my house, and if they get hacked (which they do, all the fucking time), my device is less secure because of it and my data is less secure because of it.
There's absolutely no need for my copy of Windows to require me to login using a cloud-based account.
You can use all manner of apps to disable the telemetry and privacy nonsense that people have issues with Windows about (and I similarly find Microsoft's privacy-last approach to be tedious), but if your computer requires you to use a cloud account to log in, then your computer is susceptible to that cloud account being hijacked or hacked and Microsoft has given absolutely no good reason for this to be the case.
Logging in to a Microsoft account doesn't provide any real benefit to the user at all, the best you can say is that you're not prompted to log in again if you run the Microsoft Store or the Xbox app, and that's not a compelling benefit.
O que é uma revolução?
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.youtube.com
Mark with a Z
in reply to gloating46 • • •gloating46
in reply to Mark with a Z • • •Yes. Should I delete this post?
I was experimenting with lemmy's API and Markdown rendering, and I wish to keep this post for a while.
Mark with a Z
in reply to gloating46 • • •gloating46
in reply to gloating46 • • •gloating46
in reply to gloating46 • • •gloating46
in reply to gloating46 • • •gloating46
in reply to gloating46 • • •X
in reply to gloating46 • • •