| 31 | === Notes === |
| 32 | |
| 33 | If you get the following error: |
| 34 | {{{ |
| 35 | Loading ASAP... |
| 36 | ------------------------------------------------------------ |
| 37 | Traceback (most recent call last): |
| 38 | File "<string>", line 1, in ? |
| 39 | File "/usr/lib/python2.4/site-packages/asap/__init__.py", line 314, in ? |
| 40 | from asap._asap import Log as _asaplog |
| 41 | ImportError: /usr/lib/python2.4/site-packages/asap/_asap.so: cannot |
| 42 | restore segment prot after reloc: Permission denied |
| 43 | |
| 44 | }}} |
| 45 | |
| 46 | Fedora is using SElinux, which makes life hell for the user. Kinda like Windows Vista, protect the system by not allowing the user to use anything |
| 47 | |
| 48 | To recitfy teh problem as root or sudo execute |
| 49 | {{{ |
| 50 | chcon -t texrel_shlib_t /usr/lib/python2.4/site-packages/asap/_asap.so |
| 51 | }}} |
| 52 | |