Установщик приложений linux kali

Install deb package on Kali Linux [4 Methods]

There are two ways you can use to install software on your Kali Linux system. You can use the Terminal method, where you will use the apt package manager or other distribution-independent package platforms like Snap, AppImage, and FlatPak. The other way is downloading the installer file (usually the .deb file) and installing it on your system.

Installing Deb files on Debian-based distributions like Ubuntu and Debian distribution can be easy since these operating systems come with the software centre. The software centre is a utility where users can find, download and install software graphically. When you have a .deb file, you will right-click on the file and select the option «install with software centre. «Unfortunately, Kali Linux doesn’t have the software centre installed by default, and you will have to install the .deb file using the Terminal. Luckily, it’s not hard as you would think.

This post will give you a detailed guide to installing .deb files on Kali Linux. Let’s dive in.

Method-1: Install DEB package with DPKG

DPKG is a command-line tool used to install, build, remove and manage Debian packages on Linux systems. It comes with various options, which you can view by running the command:

To install a package with dpkg, launch the Terminal and use the cd command to navigate to the file’s location and install it with the syntax below.

In our case, we will install the VSCode.deb file. VSCode is a powerful IDE developed by Microsoft and includes support for different languages like Python, Java, C++, JavaScript, and more

cd Downloads sudo dpkg -i vscode.deb sudo apt install -f

Install deb package on Kali Linux [4 Methods]

Sample Output:

You will notice that we have an additional command sudo apt install -f .

That’s because when you use dpkg to install a package on Linux, it will check your system for all the dependencies required to install and run the software. If even a single dependency is not satisfied (which is the case most of the time), the package is left in an «unconfigured» state and considered broken.

Читайте также:  Форматировать загрузочную флешку линукс

The apt install -f command tries to install any of the missing dependencies. When you read the apt man page, you will see the -f parameter stands for —fix-broken .

-f, --fix-broken Fix; attempt to correct a system with broken dependencies in place.

Method-2: Install DEB package With DPKG

Alternatively, you can avoid any dependency errors by first checking for the dependencies required by the package and install them first; You can do so by executing the command below.

That will list all the dependencies required to install the vscode.deb file. You can now install these dependencies using the apt command shown below:

sudo apt-get install [dependency] name

After installing all the required dependencies, proceed to install the deb file with the command below.

Method-3: Install DEB Files With APT Package Manager

Other than DPKG, you can also use the apt command to install deb files on your Kali Linux system. However, this method works in every unique way and requires one to have an active internet connection. That’s because apt first makes a list of all the required dependencies and installs them from the repository. When done, it calls the dpkg utility and uses it to install the file. Therefore, the apt method uses dpkg under the hood.

To install a package with apt, launch the Terminal and use the cd command to the file’s directory and use the syntax below to install the file.

cd Downloads sudo apt install ./vscode.deb

Install deb package on Kali Linux [4 Methods]

Sample Output:

Method-4: Install DEB Files With GDEBI

GDEBI is a command-line utility that enables you to install deb files smoothly by proper handling of dependencies. We say «smooth installation» because dpkg can be pretty aggressive at times when installing specific packages.

For example, when I tried installing the skype deb file with dpkg, it attempted to remove 96 packages, including system libraries necessary for running other tools and software. GDEBI works similarly to the apt command. It will first install all the required dependencies before installing the deb package.

GDEBI does not come pre-installed in Kali Linux. To install it, use the command below:

sudo apt install gdebi-core

Install deb package on Kali Linux [4 Methods]

Sample Output:

Once done, proceed to install the deb package with the syntax below.

cd Downloads sudo gdebi vscode.deb

Install deb package on Kali Linux [4 Methods]

Sample Output:

Читайте также:  Linux менеджер пакетов apt

Conclusion

That’s it! I believe you now have three ways you can use to install a deb file on your Kali Linux system. If you have an active internet connection, I highly advise you to use the apt install ./ method or gdebi. However, if you don’t have internet access, use the dpkg -i command, which does not install any required libraries. But if you encounter any error, you will need to run apt install -f to install any missing dependencies, which requires internet access. Feel free to hit the comments below in case you come across any challenges.

Didn’t find what you were looking for? Perform a quick search across GoLinuxCloud

If my articles on GoLinuxCloud has helped you, kindly consider buying me a coffee as a token of appreciation.

Buy GoLinuxCloud a Coffee

For any other feedbacks or questions you can either use the comments section or contact me form.

Thank You for your support!!

3 thoughts on “Install deb package on Kali Linux [4 Methods]”

thankk u very much it helped for my online class.i am using kali linux. officialy they said cisco webex is not avalable for kali but you helped me thank youuuuuuu very muchhhhhhh. Reply

Источник

Как установить софт на Kali Linux

Мануал

Рядом с “этичными” инструментами взлома и тестирования на проникновения дистрибутива Linux должны быть необходимые утилиты и программное обеспечение, чтобы ОС могла стать настольной операционной системой.

Kali Linux стабилен, и он может загрузить требуемые драйверы автоматически, и у него также есть утилита Add/Remove Software для того, чтобы вы могли управлять своим программным обеспечением.

На нем уже установлены необходимые инструменты от просмотра документов до проигрывателя VLC, но некоторые инструменты, не установлены, и вы должны установить / сконфигурировать их сами.

Как установить Skype на Kali Linux

Для начала необходимо скачать необходимый deb пакет.

Для этого переходим по ссылке на официальный сайт к странице скачивания и выбираем Download Skype For Linux Deb.

Далее, переходим в консоль и выполняем установку пакета:

# dpkg -i /Dowloands/skypeforlinux-64.deb

Как установить Open Office на Kali Linux

Open Office – прекрасная альтернатива MS Office. Однако, установить его как скайп не получится.

Необходимо сделать изменения в apt репозиториях. Перейдем в редактирование файла sources.list:

# nano /etc/apt/sources.list  Установщик приложений linux kali

Добавим содержимое ниже и сохраним файл [ Ctrl+o затем Ctrl+x ]:

deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali-dev main contrib non-free deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali-dev main/debian-installer deb http://http.kali.org/kali kali main contrib non-free deb-src http://http.kali.org/kali kali main contrib non-free deb-src http://security.kali.org/kali-security kali/updates main contrib non-free

Теперь мы можем сделать обновление системы и установить оупен офис:

# apt-get update # apt-get install openoffice.org

Как установить Flash на Kali Linux

# apt-get install flashplugin-nonfree

Пожалуйста, не спамьте и никого не оскорбляйте. Это поле для комментариев, а не спамбокс. Рекламные ссылки не индексируются!

Читайте также:  Linux mount файловая система

  • Аудит ИБ (49)
  • Вакансии (12)
  • Закрытие уязвимостей (105)
  • Книги (27)
  • Мануал (2 306)
  • Медиа (66)
  • Мероприятия (39)
  • Мошенники (23)
  • Обзоры (820)
  • Обход запретов (34)
  • Опросы (3)
  • Скрипты (114)
  • Статьи (352)
  • Философия (114)
  • Юмор (18)

Anything in here will be replaced on browsers that support the canvas element

OpenVPN Community Edition (CE) – это проект виртуальной частной сети (VPN) с открытым исходным кодом. Он создает защищенные соединения через Интернет с помощью собственного протокола безопасности, использующего протокол SSL/TLS. Этот поддерживаемый сообществом проект OSS (Open Source Software), использующий лицензию GPL, поддерживается многими разработчиками и соавторами OpenVPN Inc. и расширенным сообществом OpenVPN. CE является бесплатным для […]

Что такое 404 Frame? Большинство инструментов для взлома веб-сайта находятся в 404 Frame. Итак, что же представляют собой команды? Вы можете отдавать команды, используя повседневный разговорный язык, поскольку разработчики не хотели выбирать очень сложную систему команд. Команды Команды “help” / “commands” показывают все команды и их назначение. Команда “set target” – это команда, которая должна […]

В этой заметке вы узнаете о блокировке IP-адресов в Nginx. Это позволяет контролировать доступ к серверу. Nginx является одним из лучших веб-сервисов на сегодняшний день. Скорость обработки запросов делает его очень популярным среди системных администраторов. Кроме того, он обладает завидной гибкостью, что позволяет использовать его во многих ситуациях. Наступает момент, когда необходимо ограничить доступ к […]

Знаете ли вы, что выполняется в ваших контейнерах? Проведите аудит своих образов, чтобы исключить пакеты, которые делают вас уязвимыми для эксплуатации Насколько хорошо вы знаете базовые образы контейнеров, в которых работают ваши службы и инструменты? Этот вопрос часто игнорируется, поскольку мы очень доверяем им. Однако для обеспечения безопасности рабочих нагрузок и базовой инфраструктуры необходимо ответить […]

Одной из важнейших задач администратора является обеспечение обновления системы и всех доступных пакетов до последних версий. Даже после добавления нод в кластер Kubernetes нам все равно необходимо управлять обновлениями. В большинстве случаев после получения обновлений (например, обновлений ядра, системного обслуживания или аппаратных изменений) необходимо перезагрузить хост, чтобы изменения были применены. Для Kubernetes это может быть […]

Источник

Оцените статью
Adblock
detector