Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
61 views

Viewing binary files in terminal mangles display - any option other than closing window?

I don't always accidentally more a binary file, but when I do, I manage to output weird characters that (apparently) change the character set used by the terminal and make it difficult to read or ...
7
votes
2answers
378 views

Why can't we understand the content of a binary file after compiled?

As far I know, every program consists of a pack of processor instructions with some specific data variables(float, int, char...) to work on the processor registers. So, the first thing that I ...
2
votes
1answer
88 views

Getting position of track and sector in 'dd'-created floppy image

I got some floppy images (original DOS 6.22 und FreeDOS 1.44 MB boot disks) created using the *nix ddcommand that work fine when used in a virtual environment. Now I want to understand the structure ...
0
votes
0answers
41 views

How to foce Coda not to load big binary file?

My Coda always try to load *.ipa file. Usually big binary file. I want to make it not to load any of big binary file. What should I do?
2
votes
1answer
59 views

making a runnable file from a binary file

I have downloaded some programs from PortableLinuxApps.com such as Xnoise, and Chromium, and have them saved on a USB with the intention of their being part of a Swiss-Army-USB holiday gift for my ...
0
votes
2answers
87 views

Building distributable binaries in Unix

My intention is to generate distributable binaries - I am doing a ./configure - make - make install in my build machine, and I archived the content of the install directory (the one I gave a prefix to ...
4
votes
1answer
386 views

permission for the `www-data` user to execute a binary file

How can I give permission for the www-data user of Ubuntu machine to execute a command installed in /usr/local/bin ?
0
votes
2answers
109 views

Why does Mercurial think my source files are binary?

I've been working on a programming project in Notepad, so far. Today, I opened my source files in an IDE to debug one thing, and the IDE converted saved my files as binary (or so Mercurial reports, ...
0
votes
1answer
54 views

VMWare ESX storage more likely to cause file corruption than installing directly on hard disk?

On a ESX+Windows server, I help administrate, there is an accounting program using binary file storage, rather than a SQL-db with well-tested ACID properties. The binary files often have data ...
1
vote
2answers
388 views

What exactly is a binary file? Is a JPEG file (.jpeg) a binary file?

Sorry if this question seems simplistic or overly broad. I would like to clarify what a binary file is. I know that a binary file is a binary encoded file -- is a file format like JPEG classified as ...
1
vote
1answer
644 views

Merge 3 ISO file segments into 1 complete ISO file

I need to merge 3 ISO files from Dell website and they state the following: Download all ISO file segments into an empty subdirectory on your local hard drive. After you have downloaded all ...
0
votes
1answer
487 views

Saving a binary file with HyperTerminal

I have an embedded platform that is connected to my Windows PC via the serial connection. The embedded application sends 532 bytes through the connection. Using HyperTerminal, I am able to see the ...
0
votes
1answer
116 views

How to efficiently update a copy of a large binary file

I have a large file (~20 GB, VirtualBox VM of Windows XP) that I would like to clone to a second computer and then keep synchronized, 1-way, from the primary computer. Is there a generic way of ...
0
votes
1answer
526 views

How to version large binary files?

I run Windows XP inside a virtual machine for some tasks. I attempted to use git to version the image for virtual box; however, it is about 6GB after all the service packs. I only have 6GB of ram ...
2
votes
3answers
808 views

How to compare mp3, flac audio data in a file, ignoring header data (ID3 tag) etc.?

I've backed up some audio files up in 2 places and added ID3 tags into one backup but not the other, since time has passed my own memory has faded on whether the backups are actually the same, but now ...
0
votes
1answer
251 views

Powershell overruling Perl binmode?

I have a Perl script which creates a binary file while scanning a very large text file. It outputs to STDOUT which I redirect in the commandline to a file. To optimize it I'm making changes then ...
0
votes
2answers
214 views

Binary diff file

I have installed an unofficial patch to an application I am using, which essentially uses unix's patch command to apply a binary diff file to a directory. It appears to me it modifies the object files ...
0
votes
2answers
254 views

Program to compare binary files

I'm looking for a freeware program that compares two binary files with each other, and can do the following things: Give a percentage of similarity Hash the files (give a few basic, as well as fuzzy ...
3
votes
5answers
6k views

How do I compare binary files in Linux?

I need to compare two binary files and get output in form for every different byte. So if file1.bin is 00 90 00 11 in binary form and file2.bin is 00 91 00 10 I want to get something ...