일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- darknet_ros
- roslib
- ROS
- 촉각센서
- roslaunch
- turtlebot3
- linetracing
- ax200
- G++
- webots
- amcl
- RGB-D
- 부분공간
- Gazebo
- gcc
- CuDNN
- CUDA
- YoLO
- opencv
- Kinetic
- sources.list
- turtlebot
- rqt
- FreeCAD
- error
- Installation
- Linux
- ubuntu
- autorace
- 전이학습
- Today
- Total
목록전체 글 (408)
기술 성공, 실패 기록소
https://github.com/ros-simulation/gazebo_ros_pkgs/issues/751 gzserver not dying after killing the simulation · Issue #751 · ros-simulation/gazebo_ros_pkgs Hello everyone, I have noticed that ever since updating to Gazebo 9.1, when I start Gazebo with roslaunch and then kill the simulation, gzserver does not die (and gzclient sometimes also lingers). ... github.com 가제보 서버 죽이기
https://devkingdom.tistory.com/195 [Shell] 기본적인 쉘 프로그래밍 - eval, export, printf eval 문자열을 명령문으로 인식하고 실행하는 명령어 export 외부변수로 선언을 위한 키워드다. 선언된 변수는 다른 프로그램에서도 사용할 수 있게된다. 스크립트를 두개 짜자. 하나는 지역변수 devkingdom.tistory.com 문자열을 명령문으로 인식하고 실행.
https://blog.gaerae.com/2015/01/bash-hello-world.html Bash 입문자를 위한 핵심 요약 정리 (Shell Script) blog.gaerae.com
https://pythonq.com/so/bash/761 bash - sh와 bash의 차이점 - IT 툴 넷 출처 bash shell unix sh 쉘 프로그램을 작성할 때 종종 /bin/sh와 /bin/bash를 사용합니다. 나는 보통 bash를 사용하지만 그 차이점이 무엇인지 모른다. bash와 sh의 주요 차이점은 무엇입니까? bash와 sh로 프 pythonq.com bash 가 sh 에서 갈라져나옴.
https://gomguard.tistory.com/74 Tip. cd 를 실행시켰을 때 바로 ls 가 실행되게 하기 cd 와 ls 를 합치는 방법 리눅스 환경에서 cd 로 이동을 하다보면 ls 로 바로 확인하는 일들이 많습니다. 처음에는 alias 를 통해 해결해보려 했지만 cd 의 특성상 alias 로는 디렉토리를 받지 못한다는 gomguard.tistory.com cd() { builtin cd "$@" && ls && pwd; } {} 가장자리쪽에 띄워쓰기 해줘야함. cd {변수} 할때 {변수}를 $@이가 받는다.
https://sosobaba.tistory.com/279 리눅스 환경변수 등록하기(환경변수 영구 등록) 안녕하세요 마블랑입니다. 이번 포스팅은 터미널 창에서 리눅스 Ubuntu(우분투)의 환경변수를 등록하는 방법에 대해서 소개하겠습니다. 먼저 현재 리눅스에 등록된 전체 환경변수를 보려면 터미 sosobaba.tistory.com
https://blog.gaerae.com/2015/10/what-is-the-preferred-bash-shebang.html Uinx/Linux: Shebang과 env에 대한 설명 (#!/usr/bin/env) blog.gaerae.com
http://chomman.github.io/blog/linux/binshm-bad-interpreter-no-such-file-or-directory-%EC%98%A4%EB%A5%98-%EB%B0%9C%EC%83%9D-%EC%8B%9C/ /bin/sh^M: bad interpreter: No such file or directory 오류 발생 시 linux 에서 스크립트 실행할 때 /bin/sh^M: bad interpreter: No such file or directory 와 같은 에러 메시지가 나타날 때가 있다. chomman.github.io
https://bongjacy.tistory.com/entry/%EB%B0%B1%EA%B7%B8%EB%9D%BC%EC%9A%B4%EB%93%9C%EC%97%90%EC%84%9C-%ED%8C%8C%EC%9D%B4%EC%8D%AC-%EC%8B%A4%ED%96%89%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95 백그라운드에서 파이썬 실행하는 방법 안녕하세요 봉자씨입니다 파이썬으로 개발을 하다 보면 백그라운드에서 프로그램을 지속적으로 돌여야 하는 경우가 생깁니다. 그럼 파이썬으로 개발한 프로그램을 즉, .py를 어떻게 하면 백그 bongjacy.tistory.com