Jump to content

Ubuntu:Konversi paket .rpm ke .deb: Difference between revisions

From Wiki
No edit summary
 
Line 20: Line 20:
==Source==
==Source==
* [https://nmap.org/book/inst-linux.html nmap.org]
* [https://nmap.org/book/inst-linux.html nmap.org]
[[Category:Linux]]
[[Category:Ubuntu]]
[[Category:Software]]
[[Category:Tutorial]]
[[Category:Debian]]

Latest revision as of 11:52, 31 January 2023

Langkah-langkah untuk mengonversi file RPM Nmap ke debformat Debian/Ubuntu untuk instalasi di Debian/Ubuntu

Software

sudo apt-get install alien

Ubah .rpm ke .deb masukan perintah berikut

sudo alien nama-packet.rpm

Install paket yang sudah dikonversi menjadi .deb dengan perintah berikut

sudo dpkg --install nama-packet.deb

Source