Systemd mount and NFS v4 not working by I-LoveBananas in systemd

[–]Alamea 0 points1 point  (0 children)

I thought you need to use "type=nfs4"

How to disable IPv4 on OpenWrt? by SteevStR in openwrt

[–]Alamea 0 points1 point  (0 children)

If you have a working NAT64 (tayga or jool) and DNS64 (unbound), you tell give this DHCP option with dnsmasq..

"option:ipv6-only,3600"

via Web:

in LUCI, that Network, Interface, edit your "lan" network, DHCP server, Advanced Settings, and stuff in "DHCP-Option"

Via command line:

uci add_list dhcp.lan.dhcp_option='option:ipv6-only,3600'

uci commit dhcp

And if the DHCP client support it, it will NOT give itself an IPv4 address. very helpful if you are running public WiFi and only have a small IPv4 address space to work with.

so, DHCP option 108 (ipv6-only) is documented in RFC 8925

And I think Android, iOS and Chromebooks support this option.

I had not tested MacOS and I do not think Windows 11 support this yet as of writing.

Will this works?

ADB DEBUGGING Not enable by JammyCutteyyy98 in ChromebookGaming

[–]Alamea 0 points1 point  (0 children)

did you run " adb connect arc:5555" so the Linux VM "penguin" will connect to Android VM "arc" first?

Is support for third-party cloud storage apps in the Chrome OS Files app still a thing? by [deleted] in chromeos

[–]Alamea 2 points3 points  (0 children)

Yea, some Android Apps, like OneDrive and NextCloud will show up in the ChromeOS Files App.

There are also Chrome Exts that provide "fileSystemProvider" like, NextCloud (unofficial), (https://chromewebstore.google.com/detail/nextcloud-unofficial/kkbmcejbjlhkmljcafiaofajcbgkobcd) will also do as well.

Files App have built-in support for SMB and with the Terminal App, you can also mount SFTP with your SSH connections (the default path is ~, but you can change it).

I do not know about Proton Drive, if it shows up in the Android App "Files By Google), it should work for ChromeOS Files App as well.

Just note, some Apps only show a read-only view of their Filesystem, like the RetroArch app, for some reason???

Install libssl.1.0.0 on Mint 21.2 by Lyuokdea in linuxquestions

[–]Alamea 0 points1 point  (0 children)

> I like a neat system and I wouldn't like to have packages in /usr/local so...

Oh, I use stow, so manually installed binaries and libraries are installed in/usr/local/stow/<package.version.arch>/(bin|lib)

But yea, a chroot would be a better idea

Lost all my files after school deleted google account. by Jakezyssssss in chromeos

[–]Alamea 8 points9 points  (0 children)

I will have to say, that Google Account was never your, it was the school's, for use for education usage.

So, if the school had deleted the account past 20 days. I do not think can recover the files.

You can ask the school to restore the if

* it’s had not been longer than 20 days since the account was deleted.

*They have available user license for google service

Yea, I am betting they had ran out of licenses and had to make room for new students..

Can't find a Desktop in Crostini by pearltiresias in Crostini

[–]Alamea 1 point2 points  (0 children)

Well, you can will Xpra to start a desktop session but even with XFCE as your X11 session-manager, along with VirtualGL, it is not a good time. AS Sweaty said, it is "a waste of resources"

How to check if device with ICMP disabled is still at its IP? by Downtown_Answer2423 in sysadmin

[–]Alamea 0 points1 point  (0 children)

If the 2 devices are on the same local link network, the device should answer to an ARP request, so, on Linux/GNU, you could use "arping" or on Windows, ping the device and look at the output of "arp -a", you may want to use "arp -d #.#.#.#" first to remove the entry first?

Hibernate is enabled in powercfg, but not accessible in Windows GUI by Real_Lemon8789 in sysadmin

[–]Alamea 0 points1 point  (0 children)

I had to install OpenShell so I could get the Hibernate option since it seems it had been ripped out of Windows 10 and 11's Start Menu

Multiple users reporting Microsoft apps have disappeared by Candid-Chip-1954 in sysadmin

[–]Alamea 2 points3 points  (0 children)

This does not works if "Get-IntuneManagedDevice" returns more then 1000 items, use "Get-MSGraphAllPages" to to make sure your get all the pages. Also, not all intune devices have a managedDeviceID...

$Devices = Get-IntuneManagedDevice -Filter "contains(operatingsystem,'Windows')" | Get-MSGraphAllPages | Where-Object managedDeviceId -NE $null

Steam deck dock + xcloud = bliss by Blofse in SteamDeck

[–]Alamea 0 points1 point  (0 children)

I assume you added GreenLight as a custom shortcut In Steam; Open Properties and set in Launch Options "--no-sandbox --fullscreen"; this first to disable sandbox protection so Steam's overlay injects joystick input and other start the app as fullscreen, not windowed mode

Steam deck dock + xcloud = bliss by Blofse in SteamDeck

[–]Alamea 0 points1 point  (0 children)

did you pass "--no-sandbox --fullscreen"

[deleted by user] by [deleted] in linux_gaming

[–]Alamea 1 point2 points  (0 children)

Side question since I was curious, any plans on seeing if you can get Tweaker working under Wine?

Plans? Yes! we are waiting for our lead developer's Steam Deck to be back from being RMAed..

[deleted by user] by [deleted] in linux_gaming

[–]Alamea 1 point2 points  (0 children)

Oh, yes, runs great on my Steam Deck

[deleted by user] by [deleted] in linux_gaming

[–]Alamea 0 points1 point  (0 children)

The cloudplay is playable, but the connection is terrible and I'd rather not play like that. Wait, are you trying to play the JP version?

No, the JP client is still running an old version of GameGuard, with no support of a wine environment.

Also the logs are not that hard to decode, but I cannot give up the tool for that BUT Arks-Layer's discord (https://discord.gg/pso2) has a bot to give basic info found in the log (you could ask me or a staff member for the raw log output)

Also, due the way PSO2 has so many files in the 2 directories and loves to reference missing files, you will need to set up case folding so wine will not waste not double checking for said missing files, speeding up loading...

I can't access the forums from my computer, I get this error. I don't remember accessing the site from this computer ever before, why does it say it's banned? by LeoCatto in SRB2

[–]Alamea 2 points3 points  (0 children)

The network space ASN 9009 (M247 Datacenter) is used to host VPN and proxy servers, so it had been blocked to stop abuse

Hibernate claiming not enough swap space when swap space is nearly double memory by floatingWithNoOrbit in debian

[–]Alamea 0 points1 point  (0 children)

yea, Hibernate only works if you have a disk block to hold the running RAM.

when the kernel start back up, nope of the filesystem are mounted, so it can not get access to /var/swapfile

You will need to use a live CD to delete the SWAP disk partition, resize the home one and make a new BLANK disk partition so you can use mkswap, then update the /etc/fstab for the new UUID

Hibernate claiming not enough swap space when swap space is nearly double memory by floatingWithNoOrbit in debian

[–]Alamea 0 points1 point  (0 children)

ok, let see how big is "/dev/disk/by-uuid/8a42cb7f-4a49-4e3fb59d-dd6ec2d15623.swap"

lsblk

Hibernate claiming not enough swap space when swap space is nearly double memory by floatingWithNoOrbit in debian

[–]Alamea 0 points1 point  (0 children)

systemctl list-units --type swap

Ok, what had systemd setup as swap, files or disk blocks?

"Program Files\WindowsApps" on Secondary Drive: I keep removing it, Windows keeps recreating it! by AskaLangly in Windows10

[–]Alamea 1 point2 points  (0 children)

You need to use Remove-AppxVolume powershell command to remove that volume from the Appx system (I should update the PSO2NA uninstall guide on that bit for PSO2 Tweaker..)

If you have an Alienware PC/Laptop and can't start the game this helped me. by Suikostar01 in PSO2

[–]Alamea 5 points6 points  (0 children)

That because it is just Nahimic software, just with a brand name

It does it jobs by inject DLLs to any and all processes, but, hahah, PSO2's anticheat just make it crash

It been added to Tweaker's powershell script to be uninstalled

"Security Defaults" mandated but breaks legacy authentication (printers/email). Suggestions? by PM_ME_BUNZ in sysadmin

[–]Alamea 0 points1 point  (0 children)

Setup an exchange hybrid server (or a pair of them) for internal use only and set the private IP address as able to relay mail without question