You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Note:** Unlike the `.deb` and `.rpm` packages, the tar.gz installation requires manual setup of the PC/SC daemon. If you see "No readers found", ensure `pcscd` is running (`systemctl status pcscd`).
102
102
103
+
**Atomic Linux Distributions (Fedora Silverblue, Kinoite, etc.) with Distrobox:**
104
+
105
+
For immutable/atomic distributions, you can run NFC Agent inside a distrobox container while applying kernel fixes on the host OS:
106
+
107
+
1.**On the host OS** - Apply the kernel module blacklist (required for ACR122U and similar readers):
108
+
```bash
109
+
# Create blacklist file on the host
110
+
echo -e "blacklist pn533_usb\nblacklist pn533\nblacklist nfc"| sudo tee /etc/modprobe.d/blacklist-pn533.conf
# Enter your distrobox container (e.g., Fedora-based)
122
+
distrobox enter fedora
123
+
124
+
# Install the RPM package
125
+
sudo dnf install ./NFC-Agent-*.rpm
126
+
```
127
+
128
+
3.**Run from distrobox** - Start NFC Agent from within the container:
129
+
```bash
130
+
distrobox enter fedora
131
+
nfc-agent
132
+
```
133
+
134
+
> **Note:** The kernel module blacklist must be applied on the host OS because the kernel is shared between the host and containers. The pcscd service also runs on the host and is accessible from within distrobox.
0 commit comments