I have a huge (~2GB) file that I need to navigate around. I don't actually need to edit it, just jump around efficiently.
I tried vim but it choked.
Any recommendations for working with huge files on Linux?
Thanks
|
I have a huge (~2GB) file that I need to navigate around. I don't actually need to edit it, just jump around efficiently. I tried vim but it choked. Any recommendations for working with huge files on Linux? Thanks |
||||
|
Vim has a LargeFile plugin for larges files. It will basically configure vim to not use a swap file and undo levels when opening big files (like in Vim Tip 611). But I think I'd rather use |
|||
|
|
|
I had a 12GB file to edit today. The vim LargeFile plugin did not work for me. It still used up all my memory and then printed an error message :-(. I could not use hexedit for either, as it cannot insert anything, just overwrite. Here is an alternative approach: You split the file, edit the parts and then recombine it. You still need twice the disk space though.
|
||||
|
|
|
This has been a recurring question for many years. (The numbers keep changing, but the concept is the same: how do I view or edit files that are larger than memory?) Obviously A Freshmeat search on "large files" suggests that two editors would be particularly suited to your needs. One would be: lfhex ... a large file hex editor (which depends on Qt). That one, obviously, entails using a GUI. Another would seem to be suited to console use: hed ... and it claims to have a I'm sure I've seen other editors for Linux/UNIX that were able to page through files without loading their entirety into memory. However, I don't recall any of their names. I'm making this response a "wiki" entry to encourage others to add their links to such editors. (Yes, I am familiar with ways to work around the issue using |
||||
|
|
|
Since you don't need to actually edit the file: |
|||||||||||||
|
|
Midnight Commander has built in viewer that handle well large files. Not chocking. |
|||
|
|
|
It's already late but if you just want to navigate through the file without editing it, 'cat' can do the job too. % cat filename | less or alternatively simple: % less filename |
||||
|
|
|
emacs works very well with files into the 100's of megabytes, I've used it on log files without too much trouble. But generally when I have some kind of analysis task, I find writing a perl script a better choice. |
|||
|
|
|
Sublime Text works wonders for me. 2.5G file took a while to load, but I can scroll to my hearts content and jump around instantaneously. |
|||
|
|
|
I had the same problem, but it was a 300GB mysqldump and I wanted to get rid of the DROP and change CREATE TABLE to CREATE TABLE IF NOT EXISTS so didn't want to run two invocations of sed. I wrote this quick ruby script to dupe the file with those changes,
Invoked like ./mreplace.rb < foo.sql > foo_two.sql |
|||
|
|
|
Use Textpad.com on Wine, Textpad is the only editor that I know that can open very large (GB) files without freezing. Unfortunately it's only for Windows. |
|||
|
|
|
this is old but, use nano, vim or gvim |
|||||||
|
:set binaryfirst... – ephemient Oct 19 '09 at 23:44