Changes between Version 41 and Version 42 of en/ProgrammingRobotsCourse/PepperApi
- Timestamp:
- Oct 30, 2024, 11:03:17 AM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
en/ProgrammingRobotsCourse/PepperApi
v41 v42 235 235 ssh <xlogin>@aurora.fi.muni.cz 236 236 }}} 237 * make a ssh key (again replace `<xlogin>` with your login ):238 {{{ 239 ssh-keygen -m PEM -t ecdsa -N '' -f ~/.ssh/pepper_ <xlogin>237 * make a ssh key (again replace `<xlogin>` with your login, we may use `$LOGNAME` here): 238 {{{ 239 ssh-keygen -m PEM -t ecdsa -N '' -f ~/.ssh/pepper_$LOGNAME 240 240 }}} 241 241 * copy your '''public''' key to the course directory: 242 242 {{{ 243 cp ~/.ssh/pepper_ <xlogin>.pub /nlp/projekty/pepper/course/keys/244 }}} 245 * add host `karel` to your `$HOME/.ssh/config` :243 cp ~/.ssh/pepper_$LOGNAME.pub /nlp/projekty/pepper/course/keys/ 244 }}} 245 * add host `karel` to your `$HOME/.ssh/config` (replace `<xlogin>` manually): 246 246 {{{ 247 247 Host karel … … 304 304 cp -r /nlp/projekty/pepper/course/template $HOME/pepper/ 305 305 }}} 306 * rename the `template` to `template_<xlogin>` (replace `<xlogin>` with your login ) or something else:307 {{{ 308 mv $HOME/pepper/template $HOME/pepper/template_ <xlogin>309 cd $HOME/pepper/template_ <xlogin>306 * rename the `template` to `template_<xlogin>` (replace `<xlogin>` with your login, e.g. with `$LOGNAME`) or something else: 307 {{{ 308 mv $HOME/pepper/template $HOME/pepper/template_$LOGNAME 309 cd $HOME/pepper/template_$LOGNAME 310 310 }}} 311 311 * go through all files, rename the application where necessary 312 {{{ 313 mv template.pml template_$LOGNAME.pml 314 mv dlg_template/dlg_template_czc.top dlg_template/dlg_template_$LOGNAME_czc.top 315 mv dlg_template/dlg_template.dlg dlg_template/dlg_template_$LOGNAME.dlg 316 mv dlg_template/dlg_template_enu.top dlg_template/dlg_template_$LOGNAME_enu.top 317 mv dlg_template dlg_template_$LOGNAME 318 }}} 319 edit `manifest.xml`, `template_$LOGNAME.pml` and files in `dlg_template_$LOGNAME/` and fix the names where necessary 312 320 * build the PKG package (the version number will be increased): 313 321 {{{ 314 cd $HOME/pepper/template_ <xlogin>322 cd $HOME/pepper/template_$LOGNAME 315 323 make pkg 316 324 }}} 317 325 * and install it 318 326 {{{ 319 cd $HOME/pepper/template_ <xlogin>327 cd $HOME/pepper/template_$LOGNAME 320 328 make install 321 329 }}} … … 330 338 {{{ 331 339 cp -r /nlp/projekty/pepper/course/template-service $HOME/pepper/ 332 mv $HOME/pepper/template-service $HOME/pepper/template-service_ <xlogin>333 cd $HOME/pepper/template-service_ <xlogin>340 mv $HOME/pepper/template-service $HOME/pepper/template-service_$LOGNAME 341 cd $HOME/pepper/template-service_$LOGNAME 334 342 }}} 335 343 * go through all files, rename the application where necessary