Как распаковать bz2 linux

Резюме файла 2

Эти файлы 2 можно просматривать с помощью два существующего (-их) прикладных (-ого) программных (-ого) средств (-а), как правило, IBM Embedded ViaVoice, разработанного IBM. Оно связано с два основным (-и) типом (-ами) файла (-ов), но часто встречается в формате IBM Embedded ViaVoice Voice Type Languages Scripts Data File Format.
Хотя, как правило, файлы 2 относятся к Data Files, они также иногда могут относиться кAudio Files.

Файлы с расширением 2 были идентифицированы на настольных компьютерах (и некоторых мобильных устройствах). Они полностью или частично поддерживаются Windows и PlayStation.

Рейтинг популярности расширения файла 2 составляет «Низкий», что означает, что эти файлы, как правило, не встречаются в большинстве файловых хранилищ пользователя.

Устранение неполадок при открытии файлов BZ2

Общие проблемы с открытием файлов BZ2

7-Zip не установлен

Дважды щелкнув по файлу BZ2 вы можете увидеть системное диалоговое окно, в котором сообщается «Не удается открыть этот тип файла». В этом случае обычно это связано с тем, что на вашем компьютере не установлено 7-Zip для %%os%%. Так как ваша операционная система не знает, что делать с этим файлом, вы не сможете открыть его дважды щелкнув на него.

Совет: Если вам извстна другая программа, которая может открыть файл BZ2, вы можете попробовать открыть данный файл, выбрав это приложение из списка возможных программ.

Установлена неправильная версия 7-Zip

В некоторых случаях у вас может быть более новая (или более старая) версия файла Bzip2 Compressed File, не поддерживаемая установленной версией приложения. При отсутствии правильной версии ПО 7-Zip (или любой из других программ, перечисленных выше), может потребоваться загрузить другую версию ПО или одного из других прикладных программных средств, перечисленных выше. Такая проблема чаще всего возникает при работе в более старой версии прикладного программного средства с файлом, созданным в более новой версии, который старая версия не может распознать.

Совет: Иногда вы можете получить общее представление о версии файла BZ2, щелкнув правой кнопкой мыши на файл, а затем выбрав «Свойства» (Windows) или «Получить информацию» (Mac OSX).

Резюме: В любом случае, большинство проблем, возникающих во время открытия файлов BZ2, связаны с отсутствием на вашем компьютере установленного правильного прикладного программного средства.

Даже если на вашем компьютере уже установлено 7-Zip или другое программное обеспечение, связанное с BZ2, вы все равно можете столкнуться с проблемами во время открытия файлов Bzip2 Compressed File. Если проблемы открытия файлов BZ2 до сих пор не устранены, возможно, причина кроется в других проблемах, не позволяющих открыть эти файлы. Такие проблемы включают (представлены в порядке от наиболее до наименее распространенных):

Preparing Your System

You’ll need to install a package called build-essential for creating the package from source and checkinstall to add it to your package manager for easy removal. This can be done quickly via the console, simply open up Terminal (Applications, Accessories, Terminal) and type:

sudo apt-get install build-essential checkinstall

Allow time for these to download and install, and once done you may also want to install version management software for upgrades, though you can always do this later. In any case, these three will do the trick:

sudo apt-get install subversion git-core mercurial

Next you’ll want a common directory to use when building these packages. You can technically put this anywhere, as long as it is writeable. The official Ubuntu documentation recommends

/usr/local/src

so we’ll stick with that:

sudo chown $USER /usr/local/src

Then make sure it’s writeable:

sudo chmod u+rwx /usr/local/src

Finally we’ll also install apt-file, which is used to resolve any dependency issues you encounter:

sudo apt-get install apt-file

You’ll probably get a pop-up telling you need to update apt-file, if not run the following command and let it finish:

sudo apt-file update

Once you’ve done this, you’ll never need to do it again as your system will be prepared for any tarballs you throw at it.

Типы файлов BZ

Ассоциация основного файла BZ

.BZ

Формат файла: .bz
Тип файла: Bzip Compressed File

Файл BZ представляет собой архив, который был сжат с использованием сжатия BZIP. Это большая часть времени, генерируемое на Unix операционных систем, с помощью утилиты BZIP.

Создатель: Smith Micro Software
Категория файла: Сжатые файлы
Ключ реестра: HKEY_CLASSES_ROOT\.bz

Программные обеспечения, открывающие Bzip Compressed File:

7-Zip, разработчик — Igor Pavlov

Совместимый с:

Windows
Android
Linux

WinRAR, разработчик — Eugene Roshal

Совместимый с:

Windows
Mac
Android
Linux

Apple Archive Utility, разработчик — Apple

Совместимый с:

Mac

Smith Micro StuffIt Deluxe, разработчик — Smith Micro Software

Совместимый с:

Windows
Mac
iOS
Android

The Unarchiver, разработчик — Dag Agren, Circlesoft

Совместимый с:

Mac

bzip2, разработчик — Julian Seward

Совместимый с:

Mac
Linux

Step 3: Step 3: Resolving Dependencies.

One nice thing about modern Linux distributions is they take care of dependencies for the user. That is to say, if you want to install a program, the apt program will make sure it installs all needed libraries and other dependent programs so installing a program is never more difficult than just specifying what you need and it does the rest. Unfortunately with tarballs this is not the case, and you’ll have to do it manually. It’s this stage that trips up even some fairly experienced users who often give up in frustration for not being able to figure out what they need to get.
    You probably want to read about the possibilities and limitations of auto-apt first, which will attempt to take care of dependency issues automatically. The following instructions are for fulfilling dependencies manually:
To prepare, install the package apt-file, and then run sudo apt-file update. This will download a list of all the available packages and all of the files those packages contain, which as you might expect can be a very large list. It will not provide any feedback while it loads, so just wait.
The apt-file program has some interesting functions, the two most useful are apt-file search which searches for a particular file name, and apt-file list which lists all the files in a given package. (Two explanations: 1 2)
To check the dependencies of your program, change into the directory you created in step two (cd /usr/local/src). Extracting the tarball or downloading from cvs/subversion will have made a sub-directory under /usr/local/src that contains the source code. This newly-created directory will contain a file called «configure», which is a script to make sure that the program can be compiled on your computer. To run it, run the command ./configure This command will check to see if you’ve got all the programs needed to install the program — in most cases you will not, and it will error out with a message about needing a program.
    If you run ./configure without any options, you will use the default settings for the program. Most programs have a range of settings that you can enable or disable, if you are interested in this check the README and INSTALL files found in the directory after decompressing the tar file. You can check the developer documentation and in many cases ./configure —help will list some of the key configurations you can do. A very common options is to use ./configure —prefix=/usr which will install your application into /usr instead of /usr/local as my instructions do.
If this happens, the last line of output will be something like
configure: error: Library requirements (gobbletygook) not met, blah blah blah stuff we don’t care about
But right above that it will list a filename that it cannot find (often a filename ending in «.pc», for instance). What you need to do then is to run
apt-file search missingfilename.pc
which will tell you which Ubuntu package the missing file is in. You can then simply install the package using
sudo apt-get install requiredpackage
Then try running ./configure again, and see if it works. If you get to a bunch of text that finishes with config.status: creating Makefile followed by no obvious error messages, you’re ready for the next steps.

Эффективность

В соответствии с традициями UNIX, единовременно может выполнять только одну операцию: либо сжатие, либо распаковку и только для одного файла. При сжатии добавляет к имени файла расширение «». Для упаковки нескольких файлов их сперва архивируют в один файл утилитой , а затем сжимают при помощи . Такие архивы обычно имеют расширение «».

сжимает большинство файлов эффективнее, но медленнее, чем более традиционные утилиты или . В этом отношении он похож на другие современные алгоритмы сжатия.

выполняет сжатие данных с существенной нагрузкой на CPU (что обусловлено его математическим аппаратом). применяют, если нет ограничений на время сжатия и на нагрузку на CPU, например, для разовой упаковки большого объёма данных.

В некоторых случаях уступает по эффективности сжатия архиваторам (метод сжатия LZMA) и . Согласно данным автора программы от 2005 года, метод сжатия уступает по эффективности сжатия на 10‑15 % наилучшим методам, известным на тот момент (PPM), но при этом в 2 раза быстрее при сжатии и в 6 раз быстрее при распаковке.

Step 4: Step 4: Build and Install.

If you got this far, you’ve done the hardest part already. Now all you need to do is run the command
make
which does the actual building (compiling) of the program.
If it’s a large program or if you’ve got a very slow computer, go and get a cup of coffee or something. If you have a multi-core processor you can also set the variable CONCURRENCY_LEVEL to the number of processors/cores you have to speed things up a little.
When its done, install the program. You probably want to use
sudo checkinstall
which puts the program in the package manager for clean, easy removal later. This replaces the old sudo make install command. See the complete documentation at CheckInstall.
Note: If checkinstall fails you may need to run the command like
sudo checkinstall —fstrans=0
Which should allow the install to complete successfully. Bugs: 78455 & 599163
Then the final stage of the installation will run. It shouldn’t take long. When finished, if you used checkinstall, the program will appear in Synaptic Package Manager. If you used sudo make install, your application will be installed to /usr/local/bin and you should be able to run it from there without problems.
If this all seems way too hard for you, don’t fret. You’re using Ubuntu after all, and it has all of the programs that you actually need to get your work done already packaged for you. If there isn’t a package out there, the odds are that you really don’t need the program and within a few months someone will have packaged it for you. The only programs you actually need to build and compile like this are programs that are new and perhaps not yet stable or ready for your desktop. If you think this procedure is too hard, well maybe you ought to reconsider why you want to do this and just wait a few months for the next stable release. But it can be a good learning experience for you.
If your desired package is quite important and you think it deserves to be in Ubuntu properly, perhaps contact the Masters of the Universe and see if they can do the hard work for you — if they package something, anyone can install it without having to go through this procedure. But if you can get through all this, you’re well on your way to becoming an expert Linux user — you’d be surprised how easy all this seems after you’ve done it just a few times. Good luck!
Easy meaning «easier than tearing your hair out and then screaming about how much Linux sucks while running around the room». Not actually easy.

Устранение неполадок при открытии файлов 2

Общие проблемы с открытием файлов 2

IBM Embedded ViaVoice не установлен

Дважды щелкнув по файлу 2 вы можете увидеть системное диалоговое окно, в котором сообщается «Не удается открыть этот тип файла». В этом случае обычно это связано с тем, что на вашем компьютере не установлено IBM Embedded ViaVoice для %%os%%. Так как ваша операционная система не знает, что делать с этим файлом, вы не сможете открыть его дважды щелкнув на него.

Совет: Если вам извстна другая программа, которая может открыть файл 2, вы можете попробовать открыть данный файл, выбрав это приложение из списка возможных программ.

Установлена неправильная версия IBM Embedded ViaVoice

В некоторых случаях у вас может быть более новая (или более старая) версия файла IBM Embedded ViaVoice Voice Type Languages Scripts Data File Format, не поддерживаемая установленной версией приложения. При отсутствии правильной версии ПО IBM Embedded ViaVoice (или любой из других программ, перечисленных выше), может потребоваться загрузить другую версию ПО или одного из других прикладных программных средств, перечисленных выше. Такая проблема чаще всего возникает при работе в более старой версии прикладного программного средства с файлом, созданным в более новой версии, который старая версия не может распознать.

Совет: Иногда вы можете получить общее представление о версии файла 2, щелкнув правой кнопкой мыши на файл, а затем выбрав «Свойства» (Windows) или «Получить информацию» (Mac OSX).

Резюме: В любом случае, большинство проблем, возникающих во время открытия файлов 2, связаны с отсутствием на вашем компьютере установленного правильного прикладного программного средства.

Даже если на вашем компьютере уже установлено IBM Embedded ViaVoice или другое программное обеспечение, связанное с 2, вы все равно можете столкнуться с проблемами во время открытия файлов IBM Embedded ViaVoice Voice Type Languages Scripts Data File Format. Если проблемы открытия файлов 2 до сих пор не устранены, возможно, причина кроется в других проблемах, не позволяющих открыть эти файлы. Такие проблемы включают (представлены в порядке от наиболее до наименее распространенных):

Extract & Configure

Assuming you’ve already downloaded a mysterious .TAR.GZ file you’re first going to need to move it to your designated build folder (I used

/usr/local/src

). You can do this with your normal file browser, and once done, open up a new Terminal.

Change to the build folder by typing:

cd /usr/local/src

Next extract the archive. For .TAR.GZ files type:

tar -xzvf <filename>.tar.gz

And for .TAR.BZ2 files type:

tar -xjvf <filename>.tar.bz2

If all went well you’ll see a long list of extracted files, like in the screenshot above. Don’t close the Terminal yet, we’re not done.

It is at this point I urge you to navigate to the folder your archive just created (with your usual file browser) and open either README or INSTALL should the files exist. If your particular software requires a different method to the one I’m about to go into then this file will hold the key. You can save yourself a lot of hassle by doing this.

You may also be able to choose different install options depending on the software, and the INSTALL or README will stipulate what these are. The files may have no extension, but are plain text and should open in Gedit or any text editor you choose.

As a general rule, the following commands will install your software with the default installation method.

Your tarball will have been extracted to a folder with the same name as the file, so change to this folder with the cd command you used earlier, like so:

cd /usr/local/src/<extracted folder>

Replace <extracted folder> with the name of the folder the archive created. Next you’ll need to configure the source files by typing:

./configure

Note: If your software does not have a configure file, you might want to try skipping straight to the Build & Install section of this article, though consult your INSTALL or README documentation first.

If you receive an error message related to autoconf, then you’ll need to install it by typing:

sudo apt-get install autoconf

Then run

./configure

again.

This command will verify whether you have all the installed packages required to use your software. You can use apt-file which you installed earlier to fill in the blanks.

If you do receive an error (something like

configure: error: Library requirements ... not met

) have a look for the file not found above the error message, then using apt-file search by typing:

apt-file search <filename>.<extension>

This will tell you which package the file you require is in, so you can download it using:

sudo apt-get install <package>

This won’t necessarily always happen, but it is very useful if you don’t have the required dependencies.

When you’re satisfied you’ve got the packages (if you needed any) run the

./configure

command again.

If all went well you’ll see

config.status: creating Makefile

— congratulations, you’re very nearly there! Lots of people give up before they get to this point, but you’re better than that.

Tarballs Of Steel

A .TAR.GZ/BZ2 file is a compressed tarball (the uncompressed extension being .TAR) which contains the raw source code for your chosen application. Installation requires these files to be compiled, processed and linked in a way that Ubuntu can then execute the program.

The tarball format was standardised in 1988 (and again in 2001) and continues to be widely used on both Linux and Windows for the distribution of software. Originally tarballs were designed to facilitate the backup of data onto tape devices, not that you’ll be doing that.

If you’ve not used the Linux command line before there’s no need to worry, the commands are straight-forward and cohesive.

Для чего нужен файловый формат .DBO?

Основной ассоциацией для расширения файлового имени .dbo является тип файлов «База данных Booknizer» (DBO). DBO использует формат базы данных SQLite и служит родным форматом для Booknizer — коммерческого каталогизатора книг («библиотекаря») от Booknizer.com для платформы PC/Windows. Booknizer позволяет эффективно управлять книжной библиотекой с подключением богатого набора метаданных (биографии авторов, рецензии, обложки и проч.), надежно хранить ее и вести перекрестный поиск.

Файл Booknizer (.dbo) представляет собой несжатую и незашифрованную базу данных SQLite. Тип файлов DBO автоматически ассоциируется с Booknizer, а файлы .dbo по умолчанию хранятся в каталоге «..\My Documents\Booknizer». После установки Booknizer создает и открывает демонстрационную базу данных («tes*.dbo«) с некоторыми заранее внесенными данными. Можно создать несколько баз данных DBO, включая их резервные копии.

DBO-файл служит для консолидации всех данных библиотеки (включая метаданные, кроме изображений) в одном месте и может быть защищен паролем. Изображения (напр., обложки книг) хранятся отдельно в подкаталоге «..\Booknizer\Covers».

Расширение .dbo может также использоваться применительно к DB/TextWorks — профессиональному решению для интеграции и объединения баз данных от InMagic, Inc. В среде DB/TextWorks файл .dbo представляет собой каталог баз данных, размещенный на главном сервере и используемый сервером для отслеживания подключений и доступа к базам данных.

В области трехмерной графики расширение .dbo означает «Объект DarkBASIC» (DarkBASIC Object) и ассоциируется с типом и форматом файлов DBO. DarkBASIC — это специализированный язык программирования на базе BASIC, а также среда выполнения, разработанные The Game Creators, Ltd. для программирования двух- и трехмерных графических сцен на платформе визуализации Microsoft DirectX/Direct3D. Файл .dbo содержит определение трехмерной модели объекта в родном формате DarkBASIC.

В значении «Владелец базы данных» (Database Owner) расширение .dbo также используется в отношении Microsoft SQL Server и связанного с ним ПО. Расширение .dbo временно присваивается файлам баз данных SQL (.mdf) для указания на то, что такие файлы создаются и/или находятся в режиме доступа владельцем (Database Owner).

Step 1: Step 1: Prep Your System for Building Packages

By default, Ubuntu does not come with the tools required. You need to install the package build-essential for making the package and checkinstall for putting it into your package manager. These can be found on the install CD or in the repositories, searching in Synaptic Package Manager or the command-line apt-get:
sudo apt-get install build-essential checkinstall
And since you may want to get code from some projects with no released version, you should install appropriate version management software.
sudo apt-get install cvs subversion git-core mercurial
You should then build a common directory for yourself where you’ll be building these packages. We recommend creating /usr/local/src, but really you can put it anywhere you want. Make sure this directory is writable by your primary user account, by running
sudo chown $USER /usr/local/src
and, just to be safe
sudo chmod u+rwx /usr/local/src
After you’ve done this, you’re set up to start getting the programs you need.

Build & Install

Into the same Terminal window type:

make

Sit back, grab a coffee and breathe for a second. Depending on the size of your install this can take a while.

Now you can install the program with the following command:

sudo checkinstall

Follow the on-screen prompts, add a description for your software and hit Enter on this screen:

If everything went well you’ll see Installation Successful. Pat yourself on the back. You’ve done well.

Your software should now be installed to

/usr/local/bin

and you’ll be able to run it from there without any problems.

Did you make it all the way through? Isn’t it easier just waiting for a package or getting it from the repositories? Maybe you found it… easy? Let us know in the comments.

How to Create a Checklist in Microsoft Excel

A checklist is a good way to keep track of tasks. Here’s how to make a checklist in Excel, one simple step at a time.

About The Author

Tim is a freelance writer who lives in Melbourne, Australia. You can follow him on .

More About Tim Brookes

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

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

Adblock
detector