Как установить xz файл linux
Перейти к содержимому

Как установить xz файл linux

  • автор:

Sorry, you have been blocked

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

What can I do to resolve this?

You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

Cloudflare Ray ID: 7d99d95159a322f5 • Your IP: Click to reveal 88.135.219.175 • Performance & security by Cloudflare

как установить файл .tar.xz в Ubuntu

Я новичок в Linux. Как правило, я устанавливаю программное обеспечение через Интернет, но я думаю, что не стоит постоянно зависеть от Интернета. Затем я скачал файл vlc .tar.xz. потом искал в интернете как установить .tar.xz. Но не удалось установить. Команда, которую я написал, и результат получен ниже.

4 ответа 4

Это плохая практика, если вы не знаете, как установить программное обеспечение таким образом, и не доверяете источнику файла.

Это расширит содержимое файла в папку. Тогда команды из папки:

Это скомпилирует исходный код VLC, а затем установит его в вашу систему. Поскольку вы устанавливаете от имени пользователя root, именно поэтому вы должны знать, что источник файла заслуживает доверия.

Для компиляции vlc вам понадобятся как минимум следующие библиотеки:

  • libdvbpsi (обязательно),
  • mpeg2dec (обязательно),
  • libdvdcss, если вы хотите читать зашифрованные DVD,
  • libdvdplay, если вы хотите иметь навигацию по меню DVD,
  • a52dec, если вы хотите иметь возможность декодировать звуковой формат AC3 (то есть A52), часто используемый на DVD,
  • ffmpeg, libmad, faad2, если вы хотите читать файлы MPEG 4 / DivX,
  • libogg & libvorbis, если вы хотите прочитать файлы Ogg Vorbis.

Возможно, вам также понадобится установить пакет build-essential, чтобы получить компилятор и связанные с ним команды.

Установка .tar.xz

Распакуй в какой-нибудт каталог и оттуда запускай. Это же просто пожатый архив.

Важней, что там обычно и инструкция внутри.

там только два файла

из терминала в том каталоге куда ты распаковал, например.

потом пускаешь телегу и все.

Тогда, очевидно, оба исполнчемые файлы и остается только запустить их. Можешь проверить тип файла командой file, если исполняемый динамический, то посмотреть связанные с ним so можешь командой ldd.

how to install .tar.xz file in ubuntu

i am new in Linux. Generally i install software by internet, but i think it is not a good approach to depend on internet all the times. Then i downloaded a vlc .tar.xz file. then searched Internet how to install .tar.xz. But unable to install. The command i written and result got given below..

Black Swan's user avatar

5 Answers 5

This is not good practice unless you know the implications of installing software this way, and trust the source of the file.

This will expand the contents of the file to a folder. Then the commands are, from the folder:

This will compile the VLC source code, and then install it into your system. Because you are installing as root, this is why you must know that the source of the file is trustworthy.

To compile vlc, you need at least the following libraries installed:

  • libdvbpsi (compulsory) ,
  • mpeg2dec (compulsory) ,
  • libdvdcss if you want to be able to read encrypted DVDs ,
  • libdvdplay if you want to have DVD menu navigation ,
  • a52dec if you want to be able to decode the AC3 (i.e. A52) sound format often used in DVDs ,
  • ffmpeg, libmad, faad2 if you want to read MPEG 4 / DivX files ,
  • libogg & libvorbis if you want to read Ogg Vorbis files .

You will probably also need to install the build-essential package to get a compiler and associated commands.

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *