목록리눅스 (8)
Automotive Software

우분투상에서 크롬 업데이트 시 최신 버전이라 필요 없다는 메시지가 나오지만, 크롬상에서 계속 업데이트가 필요하다면, 크롬 리스트 파일 확인 /etc/apt/sources.list.d/google-chrome.list 에서 맨 아래 줄의 주석을 지워서 아래와 같이 변경 ### THIS FILE IS AUTOMATICALLY CONFIGURED ### # You may comment out this entry, but any other modifications may be lost. deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main 업데이트 재시도 sudo apt update sudo apt-get --only-upgrade instal..

리눅스의 IP Aliasing 기능을 사용하여 다중 아이피 주소 할당가능 GUI 기반 : Settings --> Network ifconfig sudo ifconfig eth0:1 192.168.1.1 netmask 255.255.255.0 up sudo ifconfig eth0:2 192.168.1.2 netmask 255.255.255.0 up ip sudo ip addr add 192.168.1.1/24 dev eth0 sudo ip addr add 192.168.1.2/24 dev eth0 모든 아이피 주소 확인 ip addr : 시스템상의 모든 인터페이스에 대한 리스트 출력 ip addr list dev eth0 : 특정 인터페이스 (예, eth0)에 대한 리스트 출력 아이피 주소 영구 저장 최..
인터페이스가 좀더 심플하면 좋겠지만 그런데로 쓸만함 https://www.maartenbaert.be/simplescreenrecorder/ Main page - SimpleScreenRecorder - Maarten Baert's website Last modified: Mon, 9 Nov 2020 Refresh Main page What is SimpleScreenRecorder? SimpleScreenRecorder is a Linux program that I've created to record programs and games. There were already a few programs that could do this, but I wasn't 100% happy with any of www..
yktoo.com/en/software/sound-switcher-indicator/ Sound Switcher Indicator This app shows an icon in the indicator area or the system tray (whatever is available in your desktop environment). yktoo.com

실제 빌드를 해서 사용해도 되고 컴파일된 이미지를 다운받아 사용하면 됨 git clone git://g.blicky.net/ncdu.git/. linux@linux:~/Downloads$ ./ncdu / //최상위 폴더 NCurses Disk Usage ≡ menu ~ Ncdu ~ Info Manual Changelog Screenshots Issues Projects home Yoran Heling projects@yorhel.nl home - git - @ayo = donate = paypal = pgp = only used for releases key - mit 7446 0D32 B808 10EB A9AF A2E9 6239 4C69 8C27 39FA NCurses Disk Usage Ncdu de..

라즈베리파이에 우분투(또는 mate)를 설치하여 사용하는 경우 아래와 같이 우선 자바 설치 후 파이썬 개발도구인 PyCharm을 사용할 수 있다. 1. 자바(JDK) 설치 // 업데이트 apt-get update && apt-get upgrade // 설치 apt-get install default-jdk // 설치된 자바 버전 확인 java -version 2. PyCharm 설치 // 1. 스냅을 통한 설치도 지원하지만 아키텍쳐 지원 에러가 발생 sudo snap install pycharm-community --classic // 2. 아래 사이트에서 파일을 다운받아 직접 실행 tar -xzf pycharm-community-2020.3.3.tar.gz cd pycharm-community-2020..