You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to my heavy use of config, the handiest command line command, I added its directory /CubeSatSim to $PATH permanently. I used nano to edit /home/pi/.profile:
set PATH so it includes CubeSatSim directory if it exists
if [ -d "$HOME/CubeSatSim" ] ; then
PATH="$HOME/CubeSatSim:$PATH"
fi
After saving the edit, you can test it by "dotting" it. Run . .profile and if there are no error messages, you can run config from your home directory or any directory. Whenever you boot up or reboot, .profile is executed so your path is set.
About config, for sure it allows you to set things up, but when there are problems, it can be very handy for diagnosing problems. If the question is: "is the cubesatsim running properly?", config will lay it all out for you.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Due to my heavy use of config, the handiest command line command, I added its directory /CubeSatSim to $PATH permanently. I used nano to edit /home/pi/.profile:
set PATH so it includes CubeSatSim directory if it exists
if [ -d "$HOME/CubeSatSim" ] ; then
PATH="$HOME/CubeSatSim:$PATH"
fi
After saving the edit, you can test it by "dotting" it. Run . .profile and if there are no error messages, you can run config from your home directory or any directory. Whenever you boot up or reboot, .profile is executed so your path is set.
About config, for sure it allows you to set things up, but when there are problems, it can be very handy for diagnosing problems. If the question is: "is the cubesatsim running properly?", config will lay it all out for you.
Beta Was this translation helpful? Give feedback.
All reactions