1.basics

다음 번역 zguide Chapter 1 - Basics Fixing The World 프로그래밍의 물리요, 과학은: 사람들이 쉽게 이해하고 사용할 수 있는 빌딩블록을 만들고 함께 큰 문제를 해결하는 데에 있다. 우리는 연결되어 있는 세상에 살고 있고 현대의 소프트웨어는 세상을 안내한다. 하지만 데이터와 지식들은 클라우드와 개인 컴퓨터에 존재하고 인터넷은 ‘연결된’ 코드의 잠재성을 제안했지만 현실은 많은 흥미로운 문제들(건강/교육/경제/..)이 코드를 ‘연결’ 할 방법이 없기 때문에 많은 지식(brain) 을 연결하지 못해 해결되지 못한 채로 남아있다. IETF 표준들과같은 많은 노력으로 코드를 연결하기 위한 시도들이 행해졌다....

May 22, 2024 · nolleh

struggles to view OTT on UBUNTU X raspberry Pi 5 - A.K.A using Widevinecdm

라즈베리파이5 * Ubuntu 에서DRM 스트리밍서비스 (OTT) 를 이용하려고 여러 글들을 살펴봄. https://github.com/brave/brave-browser/issues/28903 https://support.brave.com/hc/en-us/articles/23881756488717-How-do-I-enable-Widevine-DRM-on-Linux https://forum.radxa.com/t/lets-get-widevine-working/15391 https://github.com/raspberrypi/Raspberry-Pi-OS-64bit/issues/248 음 다안된다. 구글에서 제공하는 widevinecdm 컴포넌트/라이브러리가 필요한 모양인데 대략 해석해보면 구글에서 공식적으로 지원하는 aacrch 용은 없는 모양이고 일부 오픈소스에서 chrome OS 용으로 제공하는 python 스크립트로 라이브러리를 좀 변조하는 형태로 시도한 내용들이 보이는데 vivaldi 브라우저에서 컴포턴트가 드디어 노출되는건 확인했지만 해당 라이브러리가 정상적으로 동작하지는 않는모양. 그냥 라즈베리파이에서는 공식 제공하는 라즈비안OS 를 사용하는 게 그냥 마음 편할듯. 다만 난 우분투를 계속 가지고 놀 작정이라 일단 OTT 는 그냥 포기해야하겠다....

February 25, 2024 · nolleh

5.securing the Boot Procss and Hardware Resources

Requiring Boot Loader Passwords You can secure the boot process with a secure epassword to prevent someone from bypassing the user authentication step. This can work in conjunction with password protection for the BIOS. Note that while using a bootloader passwrd laone will stop a user from editing the bootloader configuration during the boot process, it will not prevent a user from booting from and alterantive boot media such as optical disks or pen drives....

January 7, 2024 · nolleh

4.working With Passwords

How Passwords Are Stored The system verifies authenticity and identity using user credentials. Originally, encrypted passwords wer stored in the /etc/passwd file, which was readable by everyone. this mde it rather easy for passwords to be craked. On modern systems. passwords are actually stored in an encrypted format in a secondary file named etc/shadow Onyly those with root access can read or modify this file. Password Encrpytion Protecting passwords has became a curucial element of security....

January 7, 2024 · nolleh

3.sudo Process Isolation Limiting Hardware Access and Keeping Systems Current

The sudoers File /etc/sudoers contains a lot of documentation in it about how to customize. Most Linux distributions now prefer you add a file in the directory etc/sudoers.d with a name the same as user. this file contains the individual user’s sudo configuration, and one should leave the main configuration file untouched except for changeds that affect that affect all users. sudo commands and any failures are logged in …...

January 7, 2024 · nolleh