현상 : Backspace가 안됨. Backspace 누르면 그냥 space처럼됨.. OTL

해결 : 터미널 환경변수를 확인 및 수정

1
2
echo $TERM
export TERM=cygwin
cs

ansi, dtterm, nsterm, rxvt, vt52, vt100, vt102, xterm, xterm-16color, xterm-256color 이 있는데, 아무거나 해도 되는듯하다. 

code highlighter 몬쓰겟다 왜 안되니..ㅠ

 

'Linux' 카테고리의 다른 글

파일 확장자  (0) 2020.03.06
gcc-linaro-6.5.0-2018.12-x86_64_arm-linux-gnueabihf.tar.xz  (0) 2019.06.10
우분투 run 확장자 실행하기  (0) 2019.05.16

Device tree source (DTS) The device tree source is a text file which describes hardware resources of a computer system in a human-readable form, with certain hierarchical structure (a tree). The default location for DTS files in the FreeBSD source repository is sys/boot/fdt/dts directory.

DTS 구문은 C와 비슷하게, 중괄호로 그룹을 짓고 각 행의 끝에 세미콜론을 사용합니다. DTS에서는 중괄호 뒤에 세미콜론이 필요함에 유의하세요. C의 함수보다도 구조체를 떠올리면 됩니다. 컴파일된 바이너리 형식은 납작한 디바이스 트리(FDT) 혹은 디바이스 트리 블롭(DTB)이라고 하며, .dtb 파일에 저장됩니다.

Reference :  https://wikidocs.net/3205

Device tree blob (DTB) The textual device tree description (DTS file) is first converted (compiled) into a binary object (the device tree blob) i.e. the DTB, which is handed over to the final consumer (typically kernel) for parsing and processing of its contents.

Device tree compiler (DTC) A utility program executed on the host, which transforms (compiles) a textual description of a device tree (DTS) into a binary object

(DTB). Device tree bindings While the device tree textual description and the binary object are media to convey the hardware configuration information, an actual meaning and interpretation of the contents are defined by the device tree bindings. They are certain conventions describing definitions (encoding) of particular nodes in a device tree and their properties, allowed values, ranges and so on. Such reference conventions were provided by the legacy Open Firmware bindings, further supplemented by the ePAPR specification.

'Linux' 카테고리의 다른 글

Terminal에서 Backspace가 안될때?!  (0) 2021.03.29
파일 확장자  (0) 2020.03.06
우분투 run 확장자 실행하기  (0) 2019.05.16

막상 파일을 다운받고 설치할려면 실행이 안된다.. ㅠ

쉘스크립트를 가장한 설치파일들이란다. 

나중에야 알았지만 권한이 없어서 실행이 안된다고 하더라 

1. 설치권한을준다 -> 설치

Ex) 파일명이  "install.run" 이라면..

$ chmod a+x install.run

$ ./install.run

 

 


ㄹㄹSH 확장자 실행법

744라고 권한 줄수도 있다던데,

chmod +x 파일이름.sh   #가 쓰기 권한추기로 실행이 가능하다

sh 파일이름.sh 

이거나

./파일이름.sh 

로 실행이 된단다 

 

'Linux' 카테고리의 다른 글

Terminal에서 Backspace가 안될때?!  (0) 2021.03.29
파일 확장자  (0) 2020.03.06
gcc-linaro-6.5.0-2018.12-x86_64_arm-linux-gnueabihf.tar.xz  (0) 2019.06.10

+ Recent posts