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
Copy file name to clipboardExpand all lines: README.md
+57Lines changed: 57 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,63 @@ sudo emerge iptvnator-bin
108
108
109
109
<ahref="https://github.com/sponsors/4gray"target="_blank"><imgsrc="https://cdn.buymeacoffee.com/buttons/default-green.png"alt="Buy Me A Coffee"width="185"></a>
110
110
111
+
## Troubleshooting
112
+
113
+
### macOS: "App is damaged and can't be opened"
114
+
115
+
Due to Apple's Gatekeeper security and code signing requirements, you may need to remove the quarantine flag from the downloaded application:
116
+
117
+
```bash
118
+
xattr -c /Applications/IPTVnator.app
119
+
```
120
+
121
+
Alternatively, if the app is located in a different directory:
122
+
123
+
```bash
124
+
xattr -c ~/Downloads/IPTVnator.app
125
+
```
126
+
127
+
### Linux: chrome-sandbox Issues
128
+
129
+
If you encounter the following error when launching IPTVnator:
130
+
131
+
```
132
+
The SUID sandbox helper binary was found, but is not configured correctly.
133
+
Rather than run without sandboxing I'm aborting now.
134
+
You need to make sure that chrome-sandbox is owned by root and has mode 4755.
135
+
```
136
+
137
+
**Solution 1: Fix chrome-sandbox permissions (Recommended for .deb/.rpm installations)**
138
+
139
+
Navigate to the IPTVnator installation directory and run:
140
+
141
+
```bash
142
+
sudo chown root:root chrome-sandbox
143
+
sudo chmod 4755 chrome-sandbox
144
+
```
145
+
146
+
**Solution 2: Launch with --no-sandbox flag**
147
+
148
+
Edit the desktop launcher file to add the `--no-sandbox` flag:
0 commit comments