user_naa

joined 6 months ago
[–] user_naa@lemmy.world 2 points 5 hours ago* (last edited 5 hours ago) (1 children)

Try Pixel Tablet based on Pixel 7 chipset. All pixel device have easily unlockable bootloader with ability to use AVB on custom ROMs and 7 years of support. You can install GrapheneOS on it which is the best ROM in terms of security & privacy and have all features that LineageOS has (+ sandboxed Google Play). It also support USI 2.0 styluses.

6
Debootstrap issue (lemmy.world)
submitted 5 hours ago* (last edited 5 hours ago) by user_naa@lemmy.world to c/linux@lemmy.ml
 

I am trying to create debian chroot with debootstrap, but I get this error:

$ fakeroot debootstrap --arch=arm64 --variant=minbase stable .
I: Checking Release signature
I: Valid Release signature (key id 4D64FEC119C2029067D6E791F8D2585B8783D481)
I: Retrieving Packages 
I: Validating Packages 
E: Couldn't download http://deb.debian.org/debian/dists/stable/main/binary-arm64/Packages

The problem is that there is only http://deb.debian.org/debian/dists/stable/main/binary-arm64/Packages.xz or .gz files in repository. How do I fix this? Debootstrap is from Fedora 41 repo.

[–] user_naa@lemmy.world 1 points 1 week ago (2 children)

Does nouveau support RTX?

[–] user_naa@lemmy.world 5 points 1 week ago (2 children)

I often hear how prprietary drivers breaks and have a lot of issues. But AMD card usally work very stable

106
AMD vs Nvidia (lemmy.world)
submitted 1 week ago* (last edited 1 week ago) by user_naa@lemmy.world to c/linux@lemmy.ml
 

I am going to buy a new graphics card and can't choose between Nvidia and AMD. I know that Nvidia has bad reputation in Linux community but how really it works? And I heard recently their drivers got better. What can you recommend?

P. S. I don't want any proprietary drivers (so I am talking about Nouveau or any other FOSS Nvidia driver if it exists)

 

Hello! I recently tried NextDNS and noticed that is detects my current DNS resolved on the go. I just opened its website and it immediately showed my current resolver: When I tried changing private DNS to Cloudflatein settings it instantly showed my new resolver. But how exactly it works? Does the browser send used DNS server to website? Or it is done somehow via JavaScript? And also: So every website can know what I am using now? Can it be used for fingerprinting?

[–] user_naa@lemmy.world 1 points 3 weeks ago* (last edited 3 weeks ago)

ADB and Android Studio works perfectly with any other Android phone, so I think it is likely not PC issue. Small files and apps can also be pushhed/installed

[–] user_naa@lemmy.world 1 points 3 weeks ago (2 children)

Fedora 41 with latest adb from repos

[–] user_naa@lemmy.world 1 points 3 weeks ago (1 children)

I can't do it until I formatted data. After it file can be downloaded from net, but adb still fails.

[–] user_naa@lemmy.world 1 points 3 weeks ago (4 children)

Yes, didn't help

[–] user_naa@lemmy.world 1 points 3 weeks ago (2 children)

Yes, but it crashes with "connection reset" if app is big enough.

[–] user_naa@lemmy.world 1 points 3 weeks ago* (last edited 3 weeks ago) (3 children)

Yes, I can even shell into it or pull/push small files

[–] user_naa@lemmy.world 1 points 3 weeks ago (4 children)

It will be very inconvenient to transfer app via KDE Connect on every Android Studio build

[–] user_naa@lemmy.world 2 points 3 weeks ago

I edited post to explain why I need ADB

[–] user_naa@lemmy.world 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

It works, but my Wi-Fi is very slow

21
submitted 3 weeks ago* (last edited 3 weeks ago) by user_naa@lemmy.world to c/android@lemmy.world
 

Hello! I recently faced an issue trying to upload big file to Android tablet. It doesn't detect with MTP so I tried to push it via ADB. But I get this error:

$ adb push myfile /sdcard
adb: error: 65544-byte write failed: Success

How can I fix it? Why is this happening? Storage space is enough:

EDIT: I want to use it for app devlopment, so I need ADB or quick MTP for app installing.

 

Hello everyone! I know that Linux GUI advanced in last few years but we still lack some good system configuration tools for advanced users or sysadmins. What utilities you miss on Linux? And is there any normal third party alternatives?

79
Silent killer (infosec.exchange)
234
Packaging for a cat (thecanadian.social)
 

Hello! I am on Fedora 40 KDE Edition (Wayland). I have monitor with two supported refresh rates (60, 50 Hz). How can I set custom refresh rate? I know, on Windows you can use CRU.

 

Hello! Halt on Linux is disabled for average user by default. It will try to request sudo/root password and if fails returns:

sasha@fedora:~$ systemctl halt
Call to Halt failed: Access denied

How can I make same behavior for poweroff action? I know it is possible somehow via PolicyKit rulle

 

Hello! I have a very old PC with intel i915 graphics, which doesn't correctly display KDE and shows a lot of bugs. I know it is possible to switch to software acceleration in X server. On NVdia I can pass nouveau.noaccel=1 to kernel. So how can I disable hardware acceleration here? Maybe this is possible via Xorg config?

 

Hello! I need to create a VM and passthrought some host USB port to it. Sadly libvirt doesn't support QEMU built-in feature to use -hostport argument (which was added 10 years ago...). I tried to add custom arguments to domain (qemu:commandline) but this didn't work. When I just run qemu-system-x86_64 -device host-usb,hostbus=X,hostport=Y -usb everything works well. It seems like libvirt restricts some QEMU actions. How can I fix this? OS: Debian 12

 

I installed WireGuard on my host and set this configuration /etc/wireguard/wg0.conf:

[Interface]
Address = 10.0.0.1/24
ListenPort = 51820
PrivateKey = [REDACTED]
PostUp = iptables -A FORWARD -i %i -j ACCEPT; iptables -t nat -A POSTROUTING -o ens3 -j MASQUERADE
PostDown = iptables -D FORWARD -i %i -j ACCEPT; iptables -t nat -D POSTROUTING -o ens3 -j MASQUERADE


[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.2/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.3/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.4/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.5/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.6/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.7/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.8/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.9/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.10/32

[Peer]
PublicKey = [REDACTED]
PresharedKey = [REDACTED]
AllowedIPs = 10.0.0.11/32

Nmap scan when wg0 is down:

Starting Nmap 7.93 ( https://nmap.org ) at 2024-08-16 03:26 CDT
Host is up (0.050s latency).
Not shown: 998 closed tcp ports (conn-refused)
PORT    STATE    SERVICE
22/tcp  open     ssh
179/tcp filtered bgp

Nmap done: 1 IP address (1 host up) scanned in 1.93 seconds

Nmap scan when wg0 is up:

Starting Nmap 7.93 ( https://nmap.org ) at 2024-08-16 03:27 CDT
All 1000 scanned ports are in ignored states.
Not shown: 1000 filtered tcp ports (no-response)

Nmap done: 1 IP address (1 host up) scanned in 201.43 seconds

I also cannot connect to host via ssh. How to fix this issue?

Upd. Fixed my changing server WireGuard IP to 10.0.1.1. 10.0.0.1 was already taken

view more: next ›