- 19 Posts
- 38 Comments
shadowintheday2@lemmy.worldOPto Linux@lemmy.ml•Using RDP from Linux to Windows via Android and VPNEnglish1·11 months agohow could I set up NAT like this ? thanks
shadowintheday2@lemmy.worldOPto Linux@lemmy.ml•Using RDP from Linux to Windows via Android and VPNEnglish2·11 months agoip r
default via 192.168.15.1 dev enp3s0 proto dhcp src 192.168.15.32 metric 100 192.168.15.0/24 dev enp3s0 proto kernel scope link src 192.168.15.32 metric 100 192.168.38.0/24 via 192.168.15.21 dev enp3s0
shadowintheday2@lemmy.worldOPto KDE@lemmy.kde.social•How to get rid of this paint in KDE/Kwin ?English4·11 months agotyvm
shadowintheday2@lemmy.worldOPto KDE@lemmy.kde.social•AMD + Wayland - sometimes Firefox gets on top of all other windows, specially XWayland, and only killing kwin_wayland_r fixes itEnglish3·1 year agoAnother section of the log when this happened:
Aug 15 18:00:48 arch kwin_wayland[3328]: This plugin does not support raise() Aug 15 18:00:48 arch kwin_wayland[3328]: kwin_scene_opengl: 0x2: GL_INVALID_OPERATION in glDrawBuffers(unsupported buffer GL_BACK_LEFT) Aug 15 18:00:48 arch kwin_wayland[3328]: kwin_scene_opengl: 0x2: GL_INVALID_OPERATION in glDrawBuffers(unsupported buffer GL_BACK_LEFT) Aug 15 18:00:48 arch kwin_wayland[3328]: kwin_scene_opengl: 0x2: GL_INVALID_OPERATION in glDrawBuffers(unsupported buffer GL_BACK_LEFT) Aug 15 18:00:48 arch kwin_wayland[3328]: kwin_scene_opengl: 0x2: GL_INVALID_VALUE in glTexStorage2D(width, height or depth < 1) Aug 15 18:00:48 arch kwin_wayland[3328]: kwin_scene_opengl: Invalid framebuffer status: "GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT" Aug 15 18:00:48 arch kwin_wayland[3328]: kwin_scene_opengl: 0x2: GL_INVALID_OPERATION in glBindFramebuffer(non-gen name) Aug 15 18:00:48 arch kwin_wayland[3328]: kwin_scene_opengl: 0x2: GL_INVALID_FRAMEBUFFER_OPERATION in glClear(incomplete framebuffer)
shadowintheday2@lemmy.worldOPto Arch Linux@lemmy.ml•Any way to force pacman to prefer IPV6?English61·1 year agoautistic fixation with IPV6
shadowintheday2@lemmy.worldOPto Arch Linux@lemmy.ml•Any way to force pacman to prefer IPV6?English1·1 year agotyvm
seems to be working, even with some 404s returned
/var/lib/pacman/sync/multilib.db.part 100%[===================================================================================================================>] 137.53K --.-KB/s in 0.007s
2024-08-14 11:06:10 (19.4 MB/s) - ‘/var/lib/pacman/sync/multilib.db.part’ saved [140827/140827]
–2024-08-14 11:06:10-- https://mirror.osbeck.com/archlinux/multilib/os/x86_64/multilib.db.sig Loaded CA certificate ‘/etc/ssl/certs/ca-certificates.crt’ Resolving mirror.osbeck.com (mirror.osbeck.com)… 2606:4700:20::6819:5e05, 2606:4700:20::ac43:6136, 2606:4700:20::6819:5f05 Connecting to mirror.osbeck.com (mirror.osbeck.com)|2606:4700:20::6819:5e05|:443… connected. HTTP request sent, awaiting response… 404 not found 2024-08-14 11:06:10 ERROR 404: not found.
shadowintheday2@lemmy.worldto Privacy@lemmy.ml•addressing misconceptions about the recent TunnelVision vulnerabilityEnglish3·1 year agoSure, someone helped me setting up a script to share the wl socket between namespaces so I can run GUI programs in isolated namespaces, and if you look at this post you can check the namespaced-openvpn; also check vole’s answer if you want to run GUI programs
shadowintheday2@lemmy.worldto Privacy@lemmy.ml•addressing misconceptions about the recent TunnelVision vulnerabilityEnglish5·1 year agoThank you for summarizing it up
I’ve been using network namespaces in Linux where each one also use a different user; this way you can have multiple profiles of apps separated not only by permissions but also by the VPN connection that is the only route out
So you can have a connection that will supply your favorite iso sharer, a VPN connection to work, all unaware of each ot
I still haven’t figured how to make GUI media applications work on them though
It seems that a namespace only has access to process that originates inside itself
systemctl --user list-units Failed to connect to bus: No medium found
as we can see, the same user doesn’t have access to other processes so we would need to duplicate every process above the namespace until we could acess the media
would duplicate of everything - pulsewire, dbus, etc - even work ?
shadowintheday2@lemmy.worldto Linux@lemmy.ml•Noob Question Thread: Ask Any Questions About Linux!English8·1 year agoyou install program A, it needs and installs libpotato then later you install program B that depends on libfries, and libfries depends on libpotato, however since you already have libpotato installed, only program B and libfries are installed The intelligence behind this is called a package manager
In windows when you install something, it usually installs itself as a standalone thing and complains/reaks when dependencies are not met - e.g having to install Visual C++ 2005-202x for games, JRE for java programs etc
instead of making you install everything that you need to run something complex, the package manager does this for you and keep tracks of where files are
and each package manager/distribution has an idea of where some files be stored
shadowintheday2@lemmy.worldto Linux@lemmy.ml•Noob Question Thread: Ask Any Questions About Linux!English6·1 year agoYou can freely manipulate NTFS in Linux. Just make sure your distribution has, after kernel >=5.15, enabled it, otherwise you may need to install the ntfs-eg driver. Other than that, Ach Wiki has info that may help you on any distro:
https://wiki.archlinux.org/title/NTFS
I have done something similar to what you want to do, just needed the ntfs-3g driver installed and “Disks” (gnome disks) application would mount/read/write the disks as usual
shadowintheday2@lemmy.worldto Linux@lemmy.ml•Noob Question Thread: Ask Any Questions About Linux!English5·1 year agoYou can configure this behavior for CLI, and by proxy could run GUI programs that require elevation through the CLI:
https://wiki.archlinux.org/title/Sudo#Using_visudo
Defaults passwd_timeout=0(avoids long running process/updates to timeout waiting for sudo password)
Defaults timestamp_type=global (This makes password typing and it’s expiry valid for ALL terminals, so you don’t need to type sudo’s password for everything you open after)
Defaults timestamp_timeout=10(change to any amount of minutes you wish)
The last one may be the difference between having to type the password every 5 minutes versus 1-2 times a day. Make sure you take security implications into account.
shadowintheday2@lemmy.worldto Linux@lemmy.ml•Noob Question Thread: Ask Any Questions About Linux!English3·1 year agoTimeshift, make sure to “include hidden files” to recover any configuration for desktop environments
After a few mess ups, you may find yourself not needing to backup everything, only the file(s) that messed up, and that’s still a good thing to have Timeshift for
Mind sharing whhich situations would a timecard be useful ? Probably something that requires enhanced time precision, I just can’t figure it out
These updates land on testing quickly, however due to the several packages updated at once, they all need to be tested by volunteers, and only when all of them are signed it’s pushed out of testing
That’d be over 1TB with zram on
For those who use Wayland and autostart, don’t forget to edit
/etc/sddm.conf.d/kde_settings.conf
from KDE5: Session=plasmawayland
to Plasma6: Session=plasma
to confirm the exact name, check what is available under
/usr/share/wayland-sessions/
if you’re stuck, try
pacman -Q | grep -i kde
andpacman -Q | grep -i plasma
and remove everything related, then fresh install plasma-meta or plasma group and it should work
For those who use Wayland, don’t forget to edit
/etc/sddm.conf.d/kde_settings.conf
from KDE5: Session=plasmawayland
to Plasma6: Session=plasma
to confirm the exact name, check what is available under
/usr/share/wayland-sessions/
if you’re stuck, try
pacman -Q | grep -i kde
andpacman -Q | grep -i plasma
and remove everything related + remove orphans , then fresh install plasma-meta or plasma group and it should work
so it seems that without any config, the traffic passes from wlan1 to wlan0’s network flawlessly; but traffic from wlan0 network stops at the Android device, even with
iptables -P FORWARD ACCEPT
, so I’m clueless on what to do next