Linux2021. 2. 26. 15:41

gnome-terminal --disable-factory

로 실행하면 원격지의 gnome-terminal을 로컬에서 실행하게 되긴한데 뜨는데 엄청 오래 걸린다.

[링크 : https://askubuntu.com/questions/1050614/]

 

-Y를 쓰라는데... 이거까진 해보기 힘드네 ㅠㅠ

[링크 : https://stackoverflow.com/questions/48055368/]

   [링크 : https://ko.ojit.com/so/python/1588153]

'Linux' 카테고리의 다른 글

dm cache  (0) 2021.04.24
watch 복수개 명령어 실행하기  (0) 2021.03.08
'xterm': unknown terminal type.  (0) 2021.02.25
tar with pigz  (0) 2021.02.23
grep regexp match list  (0) 2021.02.22
Posted by 구차니
Linux2021. 2. 25. 12:12

$ clear
'xterm': unknown terminal type.

 

갑자기 clear가 안되서 찾아보니 여러가지가 나오는데 

export TERM=xterm은 나에게는 효과가 없었고 vt100으로 해주니 효과가 있었다.

근데 이거 하면 clear가 안된다?! 도대체 어떻게 해야하지 ㅠㅠ

export TERM=vt100

[링크 : https://bluebam.tistory.com/entry/STB에서-top이-안먹힐때]

 

$ env | grep TERM
TERM=xterm

'Linux' 카테고리의 다른 글

watch 복수개 명령어 실행하기  (0) 2021.03.08
원격실행된 python/opencv 키 입력  (0) 2021.02.26
tar with pigz  (0) 2021.02.23
grep regexp match list  (0) 2021.02.22
리눅스 스마트 카드 api  (0) 2021.02.02
Posted by 구차니
Linux2021. 2. 23. 19:12

man 뒤져보니 -I 옵션에 압축 프로그램으로 사용할 명령어를 넣어주는게 있네

       -I, --use-compress-program=COMMAND
              Filter data through COMMAND.  It must accept the -d option,  for
              decompression.  The argument can contain command line options.

 

tar -I pigz -xf /mnt/sd/current/backup/bigbackup_web.tar.gz -C /tmp

[링크 : https://stackoverflow.com/questions/36917882/how-to-use-pigz-with-tar]

'Linux' 카테고리의 다른 글

원격실행된 python/opencv 키 입력  (0) 2021.02.26
'xterm': unknown terminal type.  (0) 2021.02.25
grep regexp match list  (0) 2021.02.22
리눅스 스마트 카드 api  (0) 2021.02.02
linux smart card  (0) 2021.02.02
Posted by 구차니
Linux2021. 2. 22. 19:46

grep 을 쓰면 파일명 등의 자질구레한(?) 정보가 나오는데

그런거 빼고 순수하게 매칭되는 부분만 추출해 낼 때 쓰는 옵션

 

grep  -Op "regexp"

[링크 : https://unix.stackexchange.com/questions/13466/can-grep-output-only-specified-groupings-that-match]

'Linux' 카테고리의 다른 글

'xterm': unknown terminal type.  (0) 2021.02.25
tar with pigz  (0) 2021.02.23
리눅스 스마트 카드 api  (0) 2021.02.02
linux smart card  (0) 2021.02.02
linux shared memory 확인 및 삭제  (0) 2021.01.22
Posted by 구차니
Linux2021. 2. 2. 14:16

윈도우에서는 winscard.h 와 dll을 통해서 지원이 가능한데

리눅스에서는 개인이 만든 라이브러리가 있는 듯?

pcscd 버전을 지원을 위해 적으라는 것을 봐서는

독립적으로 작동하진 않고 pcscd 데몬을 통해 통신을 하도록 구현 된 것으로 보인다.

[링크 : https://pcsclite.apdu.fr/]

'Linux' 카테고리의 다른 글

tar with pigz  (0) 2021.02.23
grep regexp match list  (0) 2021.02.22
linux smart card  (0) 2021.02.02
linux shared memory 확인 및 삭제  (0) 2021.01.22
linux 프레임 버퍼에 이미지, 동영상 재생하기  (0) 2021.01.21
Posted by 구차니
Linux2021. 2. 2. 12:35

2760p 노트북에 Smartcard 리더가 있으니 시도!

 

$ sudo apt-get install pcsc-tools pcscd

[링크 : https://wiki.archlinux.org/index.php/Smartcards]

 

pcscd 데몬이 없어서 생기는 문제

$ sudo pcsc_scan
SCardEstablishContext: Service not available.

 

카드 안 꼽고 실행하면 아래처럼 리더 종류만 나오고

$ pcsc_scan
Using reader plug'n play mechanism
Scanning present readers...
0: Alcor Micro AU9560 00 00
 
Tue Feb  2 12:41:04 2021
 Reader 0: Alcor Micro AU9560 00 00
  Event number: 1
  Card state: Card removed, 

 

카드 꽂으면 아래와 같이 카드의 ATR(먼지 모름!) 을 읽어서 어떤 카드인지 추측을 한다.

-n 옵션을 주면 어떤 카드인지 추측을 안하고 값만 출력 함.

$ pcsc_scan -n
Using reader plug'n play mechanism
Scanning present readers...
0: Alcor Micro AU9560 00 00
 
Tue Feb  2 12:42:17 2021
 Reader 0: Alcor Micro AU9560 00 00
  Event number: 2
  Card state: Card inserted, 
  ATR: 00 00 00 00 00 00 00 00 00 00 00 00

 

'Linux' 카테고리의 다른 글

grep regexp match list  (0) 2021.02.22
리눅스 스마트 카드 api  (0) 2021.02.02
linux shared memory 확인 및 삭제  (0) 2021.01.22
linux 프레임 버퍼에 이미지, 동영상 재생하기  (0) 2021.01.21
sit1 인터페이스  (0) 2021.01.20
Posted by 구차니
Linux2021. 1. 22. 15:36

ipcs 로 확인하고

ipcrm 으로 삭제한다.

$ ipcs -m

------ Shared Memory Segments --------
key        shmid      owner      perms      bytes      nattch     status
0x000f1206 0          minimonk   666        4          0

$ ipcrm shm 0
resource(s) deleted

$ ipcs -m

------ Shared Memory Segments --------
key        shmid      owner      perms      bytes      nattch     status

[링크 : https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/5/html/tuning_and_optimizing_red_hat_enterprise_linux_for_oracle_9i_and_10g_databases/sect-oracle_9i_and_10g_tuning_guide-setting_shared_memory-removing_shared_memory]

'Linux' 카테고리의 다른 글

리눅스 스마트 카드 api  (0) 2021.02.02
linux smart card  (0) 2021.02.02
linux 프레임 버퍼에 이미지, 동영상 재생하기  (0) 2021.01.21
sit1 인터페이스  (0) 2021.01.20
특정 버전의 파일로 링크걸어서 빌드하기  (0) 2021.01.12
Posted by 구차니
Linux2021. 1. 21. 10:31

라즈베리 파이 3에서 테스트 했는데

아쉽게도(?) 재생이후 프로그램 종료하면 사라지는 것과

저 망할(?) 커서가 계속 깜박이는게 걸리네 -_-

 

전체화면 동영상 재생

mplayer -fs -vo fbdev test.mp4 

[링크 : https://askubuntu.com/questions/46871/how-can-i-play-videos-in-a-framebuffer]

 

이미지 출력

fim  -a --quiet file.jpg

[링크 : https://ostechnix.com/how-to-display-images-in-the-terminal/]

 

fb 커서 깜박이는 것 없애기/켜기

# echo 0 > /sys/class/graphics/fbcon/cursor_blink
# echo 1 > /sys/class/graphics/fbcon/cursor_blink

커서 없애기

# echo -e -n '\033[?25l' > /dev/tty0 

[링크 : https://community.nxp.com/t5/i-MX-Processors/Remove-Cursor-pointer/m-p/159574]

 

 

+

[링크 : http://www.armadeus.org/wiki/index.php?title=Framebuffer]

'Linux' 카테고리의 다른 글

linux smart card  (0) 2021.02.02
linux shared memory 확인 및 삭제  (0) 2021.01.22
sit1 인터페이스  (0) 2021.01.20
특정 버전의 파일로 링크걸어서 빌드하기  (0) 2021.01.12
libc static build 하기  (0) 2021.01.12
Posted by 구차니
Linux2021. 1. 20. 14:52

용도가 멀까나..

 

SIT stands for Simple Internet Transition. The main purpose is to interconnect isolated IPv6 networks, located in global IPv4 internet.

[링크 : https://developers.redhat.com/blog/2019/05/17/an-introduction-to-linux-virtual-interfaces-tunnels/#sit]

Posted by 구차니
Linux2021. 1. 12. 16:19

-l 옵션에서 상세하게 적으면 되긴한데...

libc 처럼 so.0 숫자는 같은데 내부 버전이 다를 경우는 어떻게 해야하려나?

반대로.. 붙이려는 원하는 so가 존재한다면 그 파일도 있어야 빌드가 가능하다는 건가?

Instead of using "-lcurl" use "-l:libcurl.so.3" And ofcourse also use "-L _installed_path_"

[링크 : https://stackoverflow.com/questions/828053/how-do-you-link-to-a-specific-version-of-a-shared-library-in-gcc]

[링크 : https://www.xspdf.com/resolution/20065096.html]

'Linux' 카테고리의 다른 글

linux 프레임 버퍼에 이미지, 동영상 재생하기  (0) 2021.01.21
sit1 인터페이스  (0) 2021.01.20
libc static build 하기  (0) 2021.01.12
segmentation fault, bus error  (0) 2021.01.08
linux ip 와 gateway 설정  (0) 2021.01.08
Posted by 구차니