search for: hexedit

Displaying 20 results from an estimated 119 matches for "hexedit".

2010 Sep 20
2
[PATCH 0/2] Implement upload-offset, download-offset APIs, and hexedit guestfish command
This two-part patch implements the 'hexedit' command described here: http://rwmj.wordpress.com/2010/09/18/new-feature-guestfish-hexedit/#content The first part implements two new APIs for partial writing and reading of files. These are modelled after guestfs_upload and guestfs_download but allow you to specify an offset and (for downl...
2020 Jul 12
2
hex editor for huge files
On 7/10/20 4:10 PM, Simon Matter via CentOS wrote: > Thanks for the tool, I've created RPMs of it: > > http://www.invoca.ch/pub/packages/hexpeek/ The package generates a symlink /usr/bin/hexedit to /usr/bin/hexpeek, but this is in conflict with the package hexedit which is in base of Centos 7. Mogens -- Mogens Kjaer, mk at lemo.dk http://www.lemo.dk
2020 Jul 13
2
hex editor for huge files
> On 2020-07-12 05:57, Mogens Kjaer wrote: >> On 7/10/20 4:10 PM, Simon Matter via CentOS wrote: >>> Thanks for the tool, I've created RPMs of it: >>> >>> http://www.invoca.ch/pub/packages/hexpeek/ >> >> The package generates a symlink /usr/bin/hexedit to /usr/bin/hexpeek, >> but this is in conflict with the package hexedit which is in base of >> Centos 7. >> >> Mogens > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA512 > > Indeed, this oversight made it into the beta release. It has already > been > remo...
2016 Mar 07
0
Re: [PATCH v2] Use less stack.
...c void > +static int > glob_issue (char *cmd, size_t argc, > char ***globs, size_t *posn, size_t *count, > int *r) > { > size_t i; > - char *argv[argc+1]; > + CLEANUP_FREE char **argv; Missing "= NULL" here. > diff --git a/fish/hexedit.c b/fish/hexedit.c > index 9f051aa..b8c0a91 100644 > --- a/fish/hexedit.c > +++ b/fish/hexedit.c > @@ -100,7 +100,8 @@ run_hexedit (const char *cmd, size_t argc, char *argv[]) > const char *editor; > int r; > struct stat oldstat, newstat; > - char buf[BUFSIZ]; >...
2015 Jun 09
1
rpmforge vs epel
On 06/09/2015 03:42 PM, m.roth at 5-cent.us wrote: > What do you > need in rpmforge that isn't available from base, rpmfusion, or epel? Do you happen to know of somewhere other than rpmforge where I can find hexedit and gqview for el6 ? Epel has them for el5, but not el6. Fortunately, installing them from rpmforge didn't drag along any dependencies. -- Bob Nichols "NOSPAM" is really part of my email address. Do NOT delete it.
2005 Jul 29
3
Reg. page_sequence_number in the ogg header.
Hi, I was looking at some of the vorbis-ogg music files using hexedit. I am a bit confused about this filed "page_sequence_number" that appears in the header for ogg. From RFC3533 the definition of this field is: "page_sequence_number: a 4 Byte field containing the sequence number of the page so the decoder can identify page loss. This...
2012 Dec 11
4
Syslinux 5 Path Option.
...968 (bytes) 0x00000013 (RELENT) 8 (bytes) 0x00000016 (TEXTREL) 0x0 0x6ffffffa (RELCOUNT) 70 0x00000000 (NULL) 0x0 So where does one modify this new PATH setting? The ../../com32 path is in plan text using hexedit to look at, and could be manually modified, but that wouldn't appear to be the best way to modify it, and would probable be an unwanted hack. Is the version 5.00 actually released released, or is it just released for developers to play with. +----------------------------------------------...
2020 Jul 12
0
hex editor for huge files
On 2020-07-12 05:57, Mogens Kjaer wrote: > On 7/10/20 4:10 PM, Simon Matter via CentOS wrote: >> Thanks for the tool, I've created RPMs of it: >> >> http://www.invoca.ch/pub/packages/hexpeek/ > > The package generates a symlink /usr/bin/hexedit to /usr/bin/hexpeek, > but this is in conflict with the package hexedit which is in base of > Centos 7. > > Mogens -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Indeed, this oversight made it into the beta release. It has already been removed from the current version and will not a...
2020 Jul 13
0
hex editor for huge files
...7, Mogens Kjaer wrote: >>> On 7/10/20 4:10 PM, Simon Matter via CentOS wrote: >>>> Thanks for the tool, I've created RPMs of it: >>>> >>>> http://www.invoca.ch/pub/packages/hexpeek/ >>> >>> The package generates a symlink /usr/bin/hexedit to /usr/bin/hexpeek, >>> but this is in conflict with the package hexedit which is in base of >>> Centos 7. >>> >>> Mogens >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA512 >> >> Indeed, this oversight made it into the beta release....
2002 Dec 18
1
wtmp repair - painless
...|7|:0 |20487|136.46.1.64 | I do not have any idea whether this unknown IP address may be a successful hacker attack or not. Or is the corruption the fault of the ext3 filesystem? Despite that I`d like to know if there is any way of painless repair of wtmp (like wtmpfix on AIX, True64). Hexedit shows me a bit garbage (?), but my tries to repair the file have not been successful until now. thanks for any help -- . ___ | | Irmund Thum | |
2011 Nov 10
1
TRIM discard testing
...ilar to what is described on various websites. The test file was the output of "seq 100000 999999" which is about 6MB in size. Instead of looking up the file offset with hdparm (as suggested for ext4, but not working with btrfs), I searched for one of these numbers in /dev/sda2 with "hexedit". After I found it deleted the file, did "sync" and even waited for two minutes (someone suggested sleep 120...), then opened hexedit on /dev/sda2 again, and jumped to the offset to see if the data was still there which it was. hdparm -I says the drive supports TRIM and does "De...
2020 Jul 07
3
hex editor for huge files
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 hexpeek: a hex editor for huge files Occasionally I need to work with huge binary files. Over the years I've tried many different tools and never found one that was exactly what I wanted. In my experience most hex editors either (1) do not work well with 4GB+ files or (2) require the user to learn a curses interface and are not scriptable. So
2016 Mar 07
2
[PATCH v2] Use less stack.
...++++-- df/parallel.c | 8 ++++++-- erlang/erl-guestfs-proto.c | 18 ++++++++++++------ examples/mount-local.c | 7 ++++++- fish/events.c | 8 +++++++- fish/fish.c | 10 ++++++++-- fish/glob.c | 33 ++++++++++++++++++++++++-------- fish/hexedit.c | 19 +++++++++++++------ generator/erlang.ml | 11 ++++++++--- generator/java.ml | 12 ++++++++++-- m4/guestfs_c.m4 | 10 +++++++--- make-fs/make-fs.c | 10 ++++++++-- p2v/conversion.c | 8 +++++++- src/appliance.c | 47 ++++++...
2015 Nov 22
2
Re: installation error
Thank you, The apt was set to look in the wheezy instead of the jessie one. > On 22 Nov 2015, at 13:30, Richard W.M. Jones <rjones@redhat.com> wrote: > > On Sat, Nov 21, 2015 at 05:12:19AM +0200, Keresztes Péter-Zoltán wrote: >> Hello, >> >> I am trying to install libguestfs on a proxmox (debian jessie with some custom packages) and when I run make at a certain
2017 Feb 15
2
Re: high memory guest issues - virsh start and QEMU_JOB_WAIT_TIME
On Wed, Feb 15, 2017 at 10:27:46AM +0100, Michal Privoznik wrote: > On 02/15/2017 03:43 AM, Blair Bethwaite wrote: > > On 15 February 2017 at 00:57, Daniel P. Berrange <berrange@redhat.com> wrote: > >> What is the actual error you're getting during startup. > > > > # virsh -d0 start instance-0000037c > > start: domain(optdata): instance-0000037c >
2004 Sep 10
0
[Flac-users] New to the list
...you are familiar with UTF-8 you should be able to > >tell if the problem is in the actual tagging like so: > > > >1. create flac file > >2. add a vorbis comment like 'test=zzz<funnychar>zzz' making > > sure <funnychar> is not ASCII > >3. use hexedit to edit the flac file. search for zzz and see > > what <funnychar> turned out to be; is it a '#' or the true > > UTF-8 code for <funnychar>? > > > >Josh __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Perfo...
2009 Mar 08
2
Couple DLL problems
First: what is possible search path for builtin libraries (.dll.so) besides system-wide ?/usr/lib/wine?? Adding it to LD_LIBRARY_PATH didn't help? (I'm using debian version from winehq repository right now) Second: Is it possible to use wrapper of ?d3d8?? (morrowind graphics enhancer's). E.g. use native d3d8.dll which would wrap around builtin d3d8 of wine?
2002 Apr 20
1
Can I do this ?
...did: First I created a bootable cd with the windows images and used the El-Torito standard based file from Bart called diskem1x.bin from his site www.nu2.nu. Bart has a tool called BBIE, now when I use this util I can extract the bootsector from a bootable CD, let's say windows 2000. I then HexEdit this file to point to a different directory other than the I386 one to let's say WSRV. Let's say I call this new file wsrvboot.bin. When I use the diskem1x.bin I can boot this wsrvboot.bin file with the simple command of "run wsrvboot.bin" and off it goes. Bart now has something...
2001 Apr 19
0
renaming files from w2k on samba 2.2.0
...n any folder would show some ugly "Folder Settings" folder and "desktop.ini" files, which I do not want. Furthermore you have to change the settings of every simgle folder by hand... To my confusion the problem does not occur when you try to rename local files. I even tried to hexedit the \winnt\system32\webvw.dll and the stabdard settings in \winnt\web, but it was no use. Is there a solution for this problem? I've been trying to solve it since 6 hours now, but nothing worked! I even do not know how a real nt server would behave in this case... I'm looking forward to...
2012 Nov 30
1
Tcpflow capture
...ller wrote: >>> >>>>> doveadm fetch text -u amiller at amfes.com mailbox-guid a47e4e264aa1c94cc35100003bc41c5f uid 12891 >>>>> >>>> The result of that, when adding a "> test", generates a 11 byte file. >>>> >>>> Hexedit shows me that as: >>>> 74 65 78 74 3A 0A 1F 8B 08 0C 0A >>>> >>>> Otherwise a simple 'less' give me: >>>> text: >>>> ^_<8B>^H^L >>>> >>>> Does this tell you anything? >>> First of all it tel...