전체 글 78

[OpenWrt] iptime 펌웨어 복구하기

iptime A6004NS-M ipTime 펌웨어 복구 wifi 설정이 안잡혀서 iptime 펌웨어로 다시 복구하기로 결정 0. iptime 기종의 맞는 펌웨어 다운로드 www.iptime.com http://www.iptime.com www.iptime.com Luci의 관리자 메뉴에서 펌웨어 복구 진행 1. System > Backup / Flash / Firmware 메뉴 선택 Flash new firmware image 클릭 후 이미지 업로드 2. Force upgrade 버튼 클릭 후 Continue 경고나와서 벽돌될까봐 식겁 기다림... 원복 완료.

[Raspberry Pico] 라즈베리파이 피코 프로젝트 빌드 및 세팅

Raspberry Pico 프로젝트 빌드 및 Pico 윈도우로 세팅하는 법 1. pico-setup-windows 을 다운받는다. 아래 설치되는 부가항목들은 없으면 알아서 다운로드 https://github.com/ndabas/pico-setup-windows/releases Releases · ndabas/pico-setup-windows Quickly get started with Raspberry Pi Pico/RP2040 on Windows - ndabas/pico-setup-windows github.com 2. pico-sdk 를 설치한다. 1번 실행 후 설치한 폴더 안에서 pico-setup.cmd 실행 3. pico-sdk를 설치한 폴더에서 cmake 파일 복사한다. {설치경로}\pico-..

[Raspberry Pi] USB드라이버 마운트 경로 변경 시

라즈베리파이에 USB 연결 시 기본 /media/pi/[UUID 이름] 경로로 인식이 되는 상황 발생 USB드라이버는 바뀌는 상황에 0000-0000 로 지정된 폴더명을 바꾸고 싶을때 처음에 드라이버 인식됬는지 확인하는 명령어 1) df -h 2) sudo blkid 3) sudo fdisk -l 기존에 UUID로 자동 마운트 되어서 안될 경우 /dev/sda 부분을 언마운트 시켜야함 // 참조사이트 1) sudo umount /dev/sda1 sudo mount -t exfat -o uid=1000,gid=1000 /dev/sda1 /media/pi/USB\ 드라이브/ 이슈주의) 1. /etc/fstab 잘못수정했다가 부팅 시 못읽어들이면서 에러문만 커널에 뜨면서 부팅안되는 상황 발생 => 해결 못해서..

[Python] 라즈베리파이에서 파이썬 사용 오류 (정리 중)

라즈베리파이에 기본 설치되는 tkinter 모듈이 없을 때 ImportError: No module named tkinter Python2.7 import Tkinter as tk #대문자 T로 바꿔줘야함 Python3 import tkinter as tk Python2.7 사용 시 SyntaxError: Non-ASCII character '\xea' in file main_tk.py on line 44, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details 상단에 주석 작성 # -*- coding: utf-8 -*-

[Error]The git repository has too many active changes, only a subset of Git features will be enabled.

깃 코파일럿 사용 중 작동안될 때 The git repository has too many active changes, only a subset of Git features will be enabled. Git 저장소에 활성 변경 사항이 너무 많으므로 Git 기능의 하위 집합만 사용하는 이슈 발생 그러면서 코파일럿 작동안함 해결한 방법 git config --global core.autocrlf false 입력 X git clean -d -n git clean -f -d

알뜰살뜰 정보 2023.01.25

[서버] VPN 서버 세팅 및 클라이언트 세팅

참고 사이트 https://enesto7.wordpress.com/2016/07/05/softether-linux-vpn-server/ SoftEther를 활용한 리눅스 VPN 서버 구축 2018년 최신 글 구글 클라우드를 이용한 VPN 서버 구축 ( 첫 1년 무료) 들어가기 전에 SoftEther VPN은 일본의 츠쿠바 대학에서 개발한 VPN 툴로 매우 강력한 VPN 툴이다. 이 프로그램을 이용하면 SoftEther enesto7.wordpress.com VPN 서버 및 클라이언트 다운로드 사이트 http://www.softether-download.com/en.aspx?product=softether SoftEther Download Center Select Software SoftEther VPN ..

카테고리 없음 2022.10.04

(ERROR) PING은 되는데 SSH 접속은 안될때

Ping은 나가는데 SSH 접속은 안될때 No route to host : 서버가 존재하지 않을때, Netfilter(iptables, ipchains)로 막혀있을 때 Connection refused : 서비스가 활성화되지 않았을 때, 서비스 포트가 다를때 Connection closed by remote host : 연결이 차단되었을때 참고 : https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=jabusunin&logNo=20012727405 위의 상황과 전혀 다른 상황 발생 장비에서 LAN 등은 들어오나 인터넷은 안되는 상황으로 보임 확인해보니 핑은 나가고 SSH는 접속되지 않는다. SSH 응답코드가 없는 상황 : OS 쪽에 문..

알뜰살뜰 정보 2022.08.11

[Raspberry Pi] 라즈베리파이에서 파이썬 삭제하기

리눅스에서 파이썬 삭제하기 [주의 ] 기존 라즈베리파이 쓰고 있는 3.7버전 삭제 할 경우 python-samba 등 일부 패키지 작동하지 않음으로 특정 버전만 지울것 sudo apt autoremove python3 sudo apt autoremove python 즉 python3으로 지우지말고 버전을 입력해서 지울것 pi@raspberry:~ $ python -V Python 3.8.1 pi@raspberry:~ $ python3 -V -bash: python3: command not found pi@raspberry:~ $ sudo apt autoremove python Reading package lists... Done Building dependency tree Reading state inf..

[실행에러] apt-get update 에러

구름 IDE에서 apt-get update 안되는 상황에 조치상황 root@goorm:/workspace# sudo apt-get update 받기:1 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64 InRelease [1,581 B] 무시:2 https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu2004/x86_64 InRelease 기존:3 https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu2004/x86_64 Release 오류:1 https://dev..