Study & Project ✏️ 109

[Solved]dpkg-deb: error: archive 'test.deb' uses unknown compression for member 'control.tar.zst', giving up. Error analysis and resolution

error: archive 'test.deb' uses unknown compression for member 'control.tar.zst', giving up Create or download a deb file There must have been an error like this when installing using dpkg Let's analyze the error and find a solution 1. Error analysis dpkg-deb: error: archive 'test.deb' uses unknown compression for member 'control.tar.zst', giving up The error is that it is a compression member wh..

[Solved]dpkg-deb: error: archive 'test.deb' uses unknown compression for member 'control.tar.zst', giving up 에러 분석 및 해결 방법

error: archive 'test.deb' uses unknown compression for member 'control.tar.zst', giving up deb 파일을 만들거나 다운받아서 dpkg를 이용해서 설치할 때 이런 오류가 뜬 적이 있을 것이다 해당 오류에 관해 분석해 보고 해결 방법을 알아보자 1. 에러 분석 dpkg-deb: error: archive 'test.deb' uses unknown compression for member 'control.tar.zst', giving up 오류는 control.tar.zst에 대해서 모르는 압축 멤버라고 하는 것이다. 그렇다면 왜 control.tar.zst를 모른다고 하는 것일까??? 바로 Debian 12 버전 이하는 zst를 이하는 ..

[Error electron-forge] You may need to re-bundle the app using Electron Packager's "executableName" option.

First, I'll tell you about my work environment and start. Desktop: Window10 Arch: AMD WSL: Linux Ubuntu (Arch: AMD) Compile Target: Linux (Arch: arm64) Briefly, you are trying to run a cross-compile from a Windows environment to Linux (arm64). If the error You may need to re-bundle the app using Electron Packager's "executableName" option. appears, it's probably a situation where you're trying t..

[electron-forge Error] You may need to re-bundle the app using Electron Packager's "executableName" option.

우선 제 작업 환경을 알려주고 시작하겠습니다. Desktop: Window10 Arch: AMD WSL: Linux Ubuntu (Arch: AMD) Target Compile: Linux (Arch: arm64) 간략하게 설명하자면 윈도우 환경에서 Linux(arm64)로 크로스컴파일을 진행하려고 하는 상황입니다. You may need to re-bundle the app using Electron Packager's "executableName" option. 라는 오류가 나왔다면 아마 크로스컴파일을 시도하는 상황일 경우일텐데 이제부터 자세히 알아보자 1. 문제 이유 electron-forge의 공식 페이지에서 설명하는 컴파일 방법은 총 두 가지다. https://www.electronforge.i..

[AWS nvm 설치] AWS, Linux, Linux2, CentOS에서 NVM 설치하기

AWS 및 CentOS에서 nvm을 설치하는 법을 알아보기 전에 왜 설치해야 하는지 알아보자. 왜 NVM을 사용해야할까? 1. nvm은 node version manager의 약자다. 2. nvm에서 여러 버전의 node.js를 설치하고 관리할 수 있으며, 각각 별도의 글로벌 모듈을 설치할 수 있다. 3. nvm을 이용해서 각 버전에 따른 테스트를 빠르게 진행할 수 있다. 다음과 같은 이유로 nvm을 설치해서 사용해야 할 메리트가 굉장히 큰데, AWS나 Linux운영체제에서는 apt-get으로 nvm을 설치할 아카이브가 없다. 그래서 nvm을 설치하는 법을 설명하겠다. 1. nvm설치 AWS에서 Linux를 쓰거나 Ubuntu를 쓰면 sudo apt-get install wget AWS에서 Linux2를..

[Error]fakeroot, while creating message channels: Function not implemented 해결 방법

electron에서 fakeroot를 이용한 컴파일링 도중에 해당 오류가 나왔다. fakeroot, while creating message channels: Function not implemented fakeroot: error while starting the `faked' daemon. 해당 오류본은 캡처가 안되어 있지만 이해점...ㅎㅎ 처음엔 해당 오류가 permission과 관련된 오류인 줄 알고 root계정, chown을 통해서 실행권한을 주려고 애썼는데 해결되지 않았다. 그러던 도중... Function not implemented를 보고 해당 문구를 구글링 해보다가 다음 해결책을 찾았다. 이 멋진 형님의 말씀대로라면 우리의 빌드가 될 파일 시스템에다가 fakeroot-tcp를 복사해 주라..

[Electron] Electron cross compile to Linux on Windows (feat. electron-forge, WSL) 윈도우에서 리눅스로 일렉트론 크로스컴파일 하는 방법

정말 애정하고 있고, 미래에도 가치 있게 쓰일 라이브러리? 스택? 인 electron을 다시 손보게 됐다. 기존에 만들었던 프로그램의 업데이트 및 업그레이드를 위해서 electron 문서를 다시 정독해 보면서 Windows -> Linux로 크로스 컴파일링을 시도하는 삽질과 스토리를 써 내려가겠다. https://www.electronjs.org/docs/latest/ Introduction | Electron Welcome to the Electron documentation! If this is your first time developing an Electron app, read through this Getting Started section to get familiar with the basic..