Changes between Version 11 and Version 12 of troubleshooting
- Timestamp:
- Feb 18, 2019, 2:08:06 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
troubleshooting
v11 v12 10 10 * [wiki:toolchain/install Install toolchains] 11 11 12 == problem executing a tool ==12 == Problem executing a tool == 13 13 14 14 If you receive a message like ''No such file or directory'' when executing FlairGCS, try recompiling all like described [wiki:compile_all here]. … … 16 16 It can be a problem of a toolchain installed in a different location from the one who compiled the tools. 17 17 18 == graphical problem with the simulator ==18 == Graphical problem with the simulator == 19 19 20 20 * verify if your graphic drivers are well installed for the toolchain, see [wiki:toolchain/install here]. … … 22 22 * if problem is still present, make [https://devel.hds.utc.fr/software/flair/newticket a new ticket] describing your problem and the output message of the simulator. 23 23 24 == problem when updating the repositories ==24 == Problem when updating the repositories == 25 25 26 26 If you have changed something on the versioned files and if these changes are not committed, you will have a conflict when updating these files (with ''svn up command''). This can occur when you recompiled [wiki:compile_all all stuffs]. … … 29 29 Another solution is to [wiki:compile_all compile all] again after the update. 30 30 31 == LibGL error with Ubuntu 16.04 and Intel Graphics == 31 32 33 == Dualshock 3 controller acting as a mouse == 34 35 On recent kernel (>=4.13), ds3 is seen as a mouse, which is disturbing. You can launch this command to disable it: 36 {{{ 37 /usr/bin/xinput set-prop 'Sony PLAYSTATION(R)3 Controller' 'Device Enabled' 0 38 }}} 39 40 Note that this is integrated in flair script to launch ds3 controller. 41 42 == Deprecated == 43 44 Here is some troubleshootings which are deprecated in the current Flair version. 45 46 They can be useful if you are not working on the last version, or to give some hints on unresolved problem. 47 48 === LibGL error with Ubuntu 16.04 and Intel Graphics === 32 49 33 50 When you try to launch the flair simulator, you have a LibGL error and the GUI doesn't appear while your using the Intel graphic drivers ? The problem is linked to a wrong place where to find some libs. So, you have to copy them : … … 36 53 Relauch Flair, all should work. 37 54 38 == Simulator no longer working ==55 === Simulator no longer working === 39 56 40 57 If simulator was working and now it does not, maybe there is a problem with graphic driver which were updated on your system. … … 63 80 64 81 __NOTE__: you can also reinstall the toolchain in order to set the good path. 65 66 == Dualshock 3 controller acting as a mouse ==67 68 On recent kernel (>=4.13), ds3 is seen as a mouse, which is disturbing. You can launch this command to disable it:69 {{{70 /usr/bin/xinput set-prop 'Sony PLAYSTATION(R)3 Controller' 'Device Enabled' 071 }}}72 73 Note that this is integrated in flair script to launch ds3 controller.