mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
suggestion how to fix: wrong permissions on runtime directory
This commit is contained in:
parent
24442510cf
commit
d9e860a8ae
1 changed files with 29 additions and 1 deletions
|
@ -27,7 +27,8 @@ Always use the latest repository commits from *master* branch. There are always
|
||||||
- [bzlib.h: No such file or directory](#bzlibh-no-such-file-or-directory)
|
- [bzlib.h: No such file or directory](#bzlibh-no-such-file-or-directory)
|
||||||
- [target attribute is not supported on this machine](#target-attribute-is-not-supported-on-this-machine)
|
- [target attribute is not supported on this machine](#target-attribute-is-not-supported-on-this-machine)
|
||||||
- [Qt Session management error](#qt-session-management-error)
|
- [Qt Session management error](#qt-session-management-error)
|
||||||
- [found architecture x86_64 required architecture arm64 error](#found-architecture-x86_64-required-architecture-arm64-error)
|
- [found architecture 'x86\_64' required architecture 'arm64' error](#found-architecture-x86_64-required-architecture-arm64-error)
|
||||||
|
- [wrong permissions on runtime directory /run/user/1000](#wrong-permissions-on-runtime-directory-runuser1000)
|
||||||
|
|
||||||
## `pm3` or `pm3-flash*` doesn't see my Proxmark
|
## `pm3` or `pm3-flash*` doesn't see my Proxmark
|
||||||
|
|
||||||
|
@ -333,3 +334,30 @@ Then run this again
|
||||||
```
|
```
|
||||||
make clean && make -j
|
make clean && make -j
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## wrong permissions on runtime directory /run/user/1000
|
||||||
|
|
||||||
|
If you get the message
|
||||||
|
|
||||||
|
```
|
||||||
|
QStandardPaths: wrong permissions on runtime directory /run/user/1000, 0770 instead of 0700
|
||||||
|
```
|
||||||
|
|
||||||
|
when running
|
||||||
|
|
||||||
|
```
|
||||||
|
tools/pm3_tests.sh --long
|
||||||
|
```
|
||||||
|
|
||||||
|
Solution:
|
||||||
|
|
||||||
|
Try set the XDG_RUNTIME_DIR environment variable.
|
||||||
|
ref: https://stackoverflow.com/questions/60458596/standardpaths-wrong-ownership-on-runtime-directory-run-user-1000-1000-instead
|
||||||
|
|
||||||
|
```
|
||||||
|
export XDG_RUNTIME_DIR=/run/user/1000
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
export XDG_RUNTIME_DIR=/var/run/user/1000
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue