일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 3.0
- 아틀라시안
- postgres
- JS
- Atlassian
- Windows
- script
- 하모니카
- 설치
- DB
- java
- Linux
- javascript
- 윈도우
- 자바스크립트
- install
- 파이썬
- ubuntu
- 스크립트
- 데이터베이스
- 우분투
- hamonikr
- node
- 설정
- DATABASE
- PostgreSQL
- 노드
- python
- 리눅스
- 자바
- Today
- Total
목록Package (3)
LukeHan 의 잡다한 기술 블로그
ubuntu@lukeHan:~$ sudo apt-get install vimReading package lists... DoneBuilding dependency tree... DoneReading state information... DoneE: Unable to locate package vim ubuntu 서버 환경 구성을 위해 vim 설치 시 위와 같이 에러가 발생하였다. sudo apt-get update 위와 같이 입력하여 프로그램 업데이트를 진행한다. ubuntu@lukeHan:/etc/apt$ sudo apt-get install vimReading package lists... DoneBuilding dependency tree... DoneReading state inform..
//package.json { "name": "application", "version": "1.0.0", "description": "Desktop Application!", "main": "main.js", "scripts": { "start": "electron .", "build": "electron-builder --windows nsis:ia32" }, "author": "GitHub", "license": "CC0-1.0", "devDependencies": { "electron": "^23.1.2" } } // main.js const { app } = require('electron'); console.log(app.getVersion()); console.log(app.getName()..
개요 해당 문서는 apt 저장소에 올릴 수 있는 deb 패키지 최소버전을 공유하기 위한 문서입니다. 데비안 소스 패키지 제작 소스 패키지는 아래와 같이 바이너리 패키지와는 다른 디렉토리 구조로 구성됩니다. 그림과 같이 최상위 디렉토리에 debian 디렉토리가 있고 그 안에 배포에 필요한 설정 파일들이 존재하고, 실제 사용자에게 배포하고 싶은 프로그램은 최상위 디렉토리에 준비합니다. 각 파일의 설명은 다음과 같습니다. debian/source/format : 소스 패키지의 원하는 형식 (현재 하모니카 에서는 3.0 (native) 또는 3.0 (quilt) 를 사용) - https://www.debian.org/doc/manuals/maint-guide/dother.en.html#sourcef debian..