1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 12:35:22 +02:00
tldr/pages/linux/alien.md

22 lines
723 B
Markdown
Raw Normal View History

2021-10-19 15:41:02 -05:00
# alien
> Convert different installation packages to other formats.
> See also: `debtap`, for `.deb` conversion on Arch Linux.
2021-10-19 15:41:02 -05:00
> More information: <https://manned.org/alien>.
- Convert a specific installation file to Debian format (`.deb` extension):
`sudo alien {{[-d|--to-deb]}} {{path/to/file}}`
2021-10-19 15:41:02 -05:00
- Convert a specific installation file to Red Hat format (`.rpm` extension):
`sudo alien {{[-r|--to-rpm]}} {{path/to/file}}`
2021-10-19 15:41:02 -05:00
- Convert a specific installation file to a Slackware installation file (`.tgz` extension):
`sudo alien {{[-t|--to-tgz]}} {{path/to/file}}`
2021-10-19 15:41:02 -05:00
- Convert a specific installation file to Debian format and install on the system:
`sudo alien {{[-d|--to-deb]}} {{[-i|--install]}} {{path/to/file}}`