Still works once you can get it to connect, though. The catch is that connecting can take several tries. Probably better to use remmina unless there’s a bug in freerdp that’s causing problems for your use case (rdesktop is, I believe, the only Linux rdp client that uses its own protocol implementation instead of the freerdp library).
- 0 Posts
- 6 Comments
- nyan@sh.itjust.workstoLinux@lemmy.ml•Can I remote desktop into a Windows 11 system from Linux without using a full blown installation on a VM?1·2 days ago
I like Aqualung. Works well enough for what I do. Has the slightly unusual feature of accepting LADSPA plugins. I don’t do much tag editing, but the basic functions are there.
- nyan@sh.itjust.workstoLinux@lemmy.ml•Trying out Gentoo shortly. Any advice for a smooth(er) sailing?2·8 days ago
I guess at the very least I’ll single out my graphic drivers (Intel)?
You shouldn’t need to concern yourself about this until you’re looking to install X or wayland (at which time you’ll want to put
VIDEO_CARDS="intel i915"or similar in make.conf—read the wiki to see which drivers match your specific chipset; my example stanza is for a Kaby Lake system). The basic drivers should autoload unless you compiled a custom kernel and left them out by mistake.
- nyan@sh.itjust.workstoLinux@lemmy.ml•Trying out Gentoo shortly. Any advice for a smooth(er) sailing?3·9 days ago
Any advice from people that already use Gentoo? Especially things that they wish they knew before trying for the first time?
This is more things-about-bootloaders I wished I’d known/remembered when installing more recent systems, but:
- If you want to use GPT partitions on a system with legacy BIOS boot, remember that you will need an additional unformatted small partition at the beginning of the disk (this tidbit of information used to be in the handbook, but has been removed)
- If you’re trying to install GRUB on a UEFI system, and it looks like everything should work but the system fails to boot, read the troubleshooting section of the GRUB page in the wiki for information on how to handle defective UEFI implementations.
- Do not try to enable Secure Boot if this is your first rodeo. Get the rest working first.
How much time and effort should I put into fine tuning the global USE flags if my initial goal is to get a system up and running?
Not much, unless there’s something you really want to exclude (
-systemd, for instance). Most of the time the default USE flags will give you a workable, feature-rich system (and allow you to use more binary packages).What you need to pay attention to is your choice of profile, which sets your default USE flags. Profiles in the
desktopseries enable a lot of USE flags. For the most basic command-line system, you’re better off pickingdefault/linux/amd64/23.0(ordefault/linux/amd64/23.0/split-usrif you want the old FHS setup where/binand/usr/binetc. are different directories—if you don’t care about this, stick with the default and ignoresplit-usr). Avoidno-multilib,hardened, and anything marked “(exp)” or “(dev)” unless you have some specific reason for wanting that profile.With systemd, I enable --nowed that which I wanted to “autostart” (iptables and sshd, for instance). Is there an equally intuitive counterpart with OpenRC?
I think you want the
rc-updatecommand, specificallyrc-update add [service] default(assuming you want the default runlevel, which you nearly always do). There’s a man page.
- nyan@sh.itjust.workstoLinux@lemmy.ml•Copy Fail (CVE-2026-31431) is a trivially exploitable logic bug in Linux, reachable on all major distros released in the last 9 years. A small, portable python script gets root on all platforms.1·2 months ago
Exactly. It’s Yet Another Privilege Escalation Vulnerability. Unless you’re dealing with a multiuser machine, the attacker first needs to use some other vuln to get into an unprivileged account. Without that additional vulnerability, this exploit is useless.
Most of its functionality is just reimplementing things that already existed, with an incompatible interface.