1033
Microsoft really wants Local accounts gone after it erases its guide on how to create them
(www.xda-developers.com)
This is a most excellent place for technology news and articles.
Anyone who wants to switch to Linux we welcome you with open arms. Ask as many questions as you need. There are no stupid questions just bad answers. (You probably know the type)
If you can't switch, that's ok. Alot of us know what it's like, especially us gamers, Nvidia card owners, and recovering adobe-holics. Life is tougher but a whole lot more rewarding. I moved from windows/Macos and I wouldn't give it up for anything.
I need a PC that runs with no monitor and gets interfaced with through remote desktop only. I just installed Linux on that machine. It currently must have a keyboard and monitor because if it gets rebooted, it comes to the login screen. The login screen cannot be brought up via remote desktop (RDP through Remmina). I also have so far been unable to find a way to force it to automatically sign in "passwordless" like it used to do with Windows.
This box runs Plex as well as whatever game server I want to run for friends and I at the moment. (Currently Minecraft, which is having trouble since th switchover with server lag, but that is far less important than being able to reboot the screenless server box and have it work with no further input )
I think the first thing is actually recommend is enabling a daemon that launches Plex at boot without login.
sudo systemctl enable plexmediaserver
For something like a Minecraft server I'd recommend reading up on the setup process. (It's a fair bit to summarize)If the application doesn't come with a systemd service I'd recommend making a cron. They're scary looking but actually pretty easy to use, I use it for automating maintenance on my server.
It may feel counter intuitive but Linux servers don't really need a desktop to manage them so most the tools don't really come with graphical apps. If you want an interface to check on things I'd recommend installing and using cockpit web based graphical interface.
If you want to do it proper on a systemd system make a systemd.service it's not as easy to learn but you get extra tools to manage it.
I've heard there's a lot of work that has been done in kde and gnome to get rdp (remote desktop protocol) with remote login.
I hope this helps! If not, almost everything can be done through the terminal and ssh(secure shell) makes that process really easy. I installed and setup my Linux laptop and my server that way.
If you just want to transfer files there is sshfs(secure shell file system) and the ability to go to your file browser and type in an sftp(secure file transfer protocol) address. In kde dolphin for example you select network and type in the bar sftp://(IP address or hostname)@(user):(working directory). Make sure you have sshfs installed on both machines and sshd enabled on at least the system you want to access.