-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a chapter in iCubOS installation and configuration (#92)
- Loading branch information
1 parent
b599c65
commit de97669
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Introduction | ||
|
||
Once you configured the iCubOS there are other task to complete in order to prepare the robot to run your software. | ||
|
||
# Source Path | ||
|
||
On the latest versions of iCub (the ones with a COM-Express board) we store robot source code on the icub-head, instead of storing remotely on the icub-server and mounting via nfs. | ||
Usually, all required source code is stored in the following path | ||
``` | ||
/usr/local/src/robot | ||
``` | ||
|
||
You can create it with the following command | ||
``` | ||
sudo mkdir -p /usr/local/src/robot | ||
``` | ||
|
||
Then you must set the ownership of that folder to your default user (normally `icub`) as follows | ||
``` | ||
sudo chown icub:icub /usr/local/src/robot | ||
``` | ||
|
||
Now, you can save here robot source code, compile it and start playing with your iCub. | ||
|
||
Have fun! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters