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 구차니
Linux2021. 1. 12. 16:14

원하는 것만 static하게 하는 법을 좀 더 찾아 봐야겠네

LDFLAGS = -static

[링크 : https://stackoverflow.com/questions/2856438/how-can-i-link-to-a-specific-glibc-version]

 

+

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

'Linux' 카테고리의 다른 글

sit1 인터페이스  (0) 2021.01.20
특정 버전의 파일로 링크걸어서 빌드하기  (0) 2021.01.12
segmentation fault, bus error  (0) 2021.01.08
linux ip 와 gateway 설정  (0) 2021.01.08
udev  (0) 2021.01.05
Posted by 구차니
Linux2021. 1. 8. 15:58

segmentation fault는 주소 영역은 존재하는데 접근해서는 안되는 주소를 간거라고 한다면

bus error는 물리적 주소조차도 존재하지 않는 영역을 갈경우 발생하는건가?

 

A Bus Errors triggers a process-level exception,notifying an  operating system(OS) that a process is trying to access memory that the CPU cannot physically address which in UNIX translates into a “SIGBUS” signal, which if not caught, will terminate the current process.

[링크 : https://learntechway.com/difference-between-segmentation-fault-and-bus-error/]

'Linux' 카테고리의 다른 글

특정 버전의 파일로 링크걸어서 빌드하기  (0) 2021.01.12
libc static build 하기  (0) 2021.01.12
linux ip 와 gateway 설정  (0) 2021.01.08
udev  (0) 2021.01.05
uio - userspace io  (0) 2021.01.05
Posted by 구차니
Linux2021. 1. 8. 12:25

잘 외워두고 써야겠군 

ifconfig eth0 192.168.1.123 netmask 255.255.255.0 up
route add default gw 192.168.1.1

[링크 : https://southlife.tistory.com/82]

'Linux' 카테고리의 다른 글

libc static build 하기  (0) 2021.01.12
segmentation fault, bus error  (0) 2021.01.08
udev  (0) 2021.01.05
uio - userspace io  (0) 2021.01.05
파일이 존재하는데 실행하려고 하면 없다고 에러 뜰 경우  (0) 2020.12.16
Posted by 구차니
Linux2021. 1. 5. 19:54

udev는 장치관리자 / 자동 마운트지

user space driver 와는 연관이 없는 것 같은데....

user space driver 에 대한 마운트를 진행하기도 하니 그거랑 연관이 있다고 해야하나 말아야 하나..

 

[링크 : http://wiki.archlinux.org/index.php/Udev]

[링크 : http://lascrea.tistory.com/89]

 

'Linux' 카테고리의 다른 글

segmentation fault, bus error  (0) 2021.01.08
linux ip 와 gateway 설정  (0) 2021.01.08
uio - userspace io  (0) 2021.01.05
파일이 존재하는데 실행하려고 하면 없다고 에러 뜰 경우  (0) 2020.12.16
ifconfig wan  (0) 2020.12.11
Posted by 구차니
Linux2021. 1. 5. 19:43

user space driver를 보다가 점점 이상한데로 헤매는 느낌..

rtl-sdr에서 왜 자꾸 이상한데로 새는건가.. ㅠㅠ

 

[링크 : http://lethean.github.io/2006/12/19/uio-linux-userspace-kernel-driver/]

[링크 : http://www.kernel.org/doc/html/v4.14/driver-api/uio-howto.html]

 

'Linux' 카테고리의 다른 글

linux ip 와 gateway 설정  (0) 2021.01.08
udev  (0) 2021.01.05
파일이 존재하는데 실행하려고 하면 없다고 에러 뜰 경우  (0) 2020.12.16
ifconfig wan  (0) 2020.12.11
dsa distributed switch architecture  (0) 2020.12.11
Posted by 구차니
Linux/openSUSE2021. 1. 5. 10:05

네트워크 설정은 특색이라고 해야하나

redhat이나 debian 계열과는 또 확연히 다르다.

 

[링크 : https://continuetochallenge.tistory.com/40]

'Linux > openSUSE' 카테고리의 다른 글

openSUSE ssh 활성화 하기  (0) 2021.01.04
openSUSE 패키지 관리자 zypper  (0) 2021.01.04
Posted by 구차니