본문 바로가기

전체 글258

ps 와 ps -ef https://manpages.ubuntu.com/manpages/trusty/en/man1/ps.1posix.html Ubuntu Manpage: ps - report process status Powered by the Ubuntu Manpage Repository, file bugs in Launchpad © 2019 Canonical Ltd. Ubuntu and Canonical are registered trademarks of Canonical Ltd. manpages.ubuntu.com option 설명 The ps utility shall conform to the Base Definitions volume of IEEE Std 1003.1-2001, Section 12.2, Utility.. 2022. 5. 23.
멀티브릿지 설정방법 멀티브릿지 잡기 192.168.217.1 무선랜 관리 -> 무선확장설정 -> 다른 와이파이 잡을 수 있는거 잡아서 적용 ex) 이렇게 되면 공유기 IP 가 123.123.123.x 이여도 멀티브릿지로 잡은 wifi ip 192.168.17.x 를 통해서 접근할 수 있다. 기기 : 1. wifi , 2.인터넷이 안되는 공유기와 연결된 ubuntu , 3.일반노트북 멀티브릿지로 공유기(2)가 wifi(1)에 연결되므로 인터넷 됨 일반노트북(3)은 공유기(2)에 wifi로 접속하고 나서 ssh 로 접근하면 공유기(2)와 멀티브릿지된 wifi(1)를 쓸 수 있게됨. 멀티브릿지를 쓰지 않고 그냥 공유기(2)에 wifi로 접속하고 ssh로 접근하면 인터넷 안됨용 2022. 5. 22.
wsl2(ubuntu20.04)에 mariadb 설치 및 실행방법 / + 특정DB에 권한주는 방법 https://yooloo.tistory.com/52 Ubuntu 20.04에 MariaDB 설치하기 윈도우10 WSL 에 설치된 Ubuntu 20.04 에 MariaDB 설치하기 [ 설치환경 ] Microsoft Windows 10 Pro(10.0.19041 N/A 빌드 19041) WSL 2(Ubuntu 20.04 LTS) 설치순서 wsl에 접속 mariadb-server 목록 조회 : 설치할.. yooloo.tistory.com sudo apt install mariadb-server sudo systemctl start mysql 이거로 mysql 을 킬 수 가 있는데 wsl2 에서는 systemctl 명령어가 안먹는듯 systemctl 기능을 쓸 수 있게 하는 방법은 있는데 이거하면 다른데서 버.. 2022. 5. 22.
from_import_as 설명 https://hezzong.tistory.com/entry/python-from-import-as-%EC%82%AC%EC%9A%A9%EB%B2%95 [python] from, import, as 사용법 파이썬에서는 print와 같은 기본 내장 함수(built-in function)를 제공합니다. 하지만 더 많은 기능을 이용하기 위해서 다른 사람들이 미리 만들어 놓은 모듈과 패키지를 이용할 수 있습니다. 들어가기 hezzong.tistory.com 파이썬에서는 print와 같은 기본 내장 함수(built-in function)를 제공합니다. 하지만 더 많은 기능을 이용하기 위해서 다른 사람들이 미리 만들어 놓은 모듈과 패키지를 이용할 수 있습니다. 들어가기 앞서 모듈, 패키지, 라이브러리의 차이점에 대해.. 2022. 5. 18.
python3.8 , 3.9 venv + rospkg 환경설정 및 설치 in ubuntu + venv 위치경로 바꾸려면 참고 https://docs.python.org/ko/3/tutorial/venv.html 12. 가상 환경 및 패키지 — Python 3.10.4 문서 12.3. pip로 패키지 관리하기 You can install, upgrade, and remove packages using a program called pip. By default pip will install packages from the Python Package Index, . You can browse the Python Package Index by going to it in docs.python.org https://dojang.io/mod/page/view.php?id=2470 venv lib 다운 sudo apt install p.. 2022. 5. 17.
python2.7 venv in ubuntu https://stackoverflow.com/questions/33181071/why-is-python-saying-i-have-no-module-named-venv Why is python saying I have "no module named venv"? I installed virtual env with sudo pip install virtualenv but when I run python -m venv flask I'm still getting this: /usr/bin/python: No module named venv Versions, if that's relevant: pip 1.5.6 ... stackoverflow.com ubuntu 20.04 에 pip2 다운받기 https://li.. 2022. 5. 17.