Installation of the JRL-CARI Workspace can be done in a single workspace or a multiple workspaces. The second saves you times during compilation.
see here
see here
see here
see here
cannot connect with the UR10e robot:
- do you ping the robot (ping 192.168.10.1)
- can you login to the robot (ssh [email protected] pwd:easybot)
- do you open the firewall ports? sudo ufw allow 50001/tcp AND sudo ufw allow 50002/tcp
- clean all the deleted packages
catkin clean --orphans
- disable thread message in gdb:
nano ~/.gdbinit
set print thread-events off
- see commited but non pushed files
git difftool HEAD origin/HEAD
- see last pushed files
git difftool HEAD^ HEAD
- see unstaged files (the files that you don't add with git add -A)
git difftool
- you can put these line in ~/.bashrc to create a shortcut
alias gitdiff_commit='git difftool HEAD origin/HEAD'
alias gitdiff_lastpush='git difftool HEAD^ HEAD'
alias gitdiff_unstaged='git difftool'