Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/diloabininyeri/hello

Examples of how to create a linux debian package
https://github.com/diloabininyeri/hello

apt-get debian debian-packages linux

Last synced: 18 days ago
JSON representation

Examples of how to create a linux debian package

Awesome Lists containing this project

README

        

# Linux debian package

I wrote a sample Debian package structure to make it understandable in its simplest form.

### Download
```console
git clone https://github.com/diloabininyeri/hello.git

chmod 755 -R hello/ #change the permissions
```

### Build
```console
dpkg-deb --build hello
```
>You can install the created deb file with apt-get or double click.

### Test
Just type hello command in the terminal after the installation of the package
```console
hello
```