Editor to open binary files?
I have a binary file called qkey
- when I try to open it with gedit, I get an error telling me that the file is in an unknown format.
Is this due to possible encryption? (it is a game stats file after all...)
Or is it simply that gedit can't open binary files?
encryption gedit binary
add a comment |
I have a binary file called qkey
- when I try to open it with gedit, I get an error telling me that the file is in an unknown format.
Is this due to possible encryption? (it is a game stats file after all...)
Or is it simply that gedit can't open binary files?
encryption gedit binary
add a comment |
I have a binary file called qkey
- when I try to open it with gedit, I get an error telling me that the file is in an unknown format.
Is this due to possible encryption? (it is a game stats file after all...)
Or is it simply that gedit can't open binary files?
encryption gedit binary
I have a binary file called qkey
- when I try to open it with gedit, I get an error telling me that the file is in an unknown format.
Is this due to possible encryption? (it is a game stats file after all...)
Or is it simply that gedit can't open binary files?
encryption gedit binary
encryption gedit binary
asked Oct 20 '15 at 8:54
TellMeWhyTellMeWhy
7,8711766115
7,8711766115
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
I've tried a number of different applications to open binary files. The one that I've used and enjoyed the most is called bless
and it is really easy to install. Simply open the terminal by pressing CTRL+ALT+T and type sudo apt-get install bless
and press ENTER. Note: You will have to enter your password, when you enter your password there will be no indicator on the screen, no asterisks, and the cursor will not move. This is normal behavior. After entering your password press ENTER again and follow any additional instructions given.
As a hex editor, bless
has lots of features and is actually surprisingly light. This should open your game file and allow you to edit it. I can't actually help with anything beyond that as I am not a gamer. However, it's in the repo and is easy enough to install without taking up much room or being overly complex.
You can read more and learn more about bless
by clicking here.
1
I'm a 2000 rep user - I know how to use the terminal... LoL ;)
– TellMeWhy
Oct 20 '15 at 9:37
5
I'd assumed you knew but I was writing for posterity in case others came along behind you. I am working on making my answers more complete and, hopefully, able to last the ages (or at least a while). Sorry if it seemed like a slight - it was just for completeness.
– KGIII
Oct 20 '15 at 9:39
add a comment |
You can use hexdump
to open a binary file.
hexdump -C qkey | more
or use vim with the tips
add a comment |
Sublime Text seems to be more reliable than gedit in both supported file types and handling large buffers more easily.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f687620%2feditor-to-open-binary-files%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I've tried a number of different applications to open binary files. The one that I've used and enjoyed the most is called bless
and it is really easy to install. Simply open the terminal by pressing CTRL+ALT+T and type sudo apt-get install bless
and press ENTER. Note: You will have to enter your password, when you enter your password there will be no indicator on the screen, no asterisks, and the cursor will not move. This is normal behavior. After entering your password press ENTER again and follow any additional instructions given.
As a hex editor, bless
has lots of features and is actually surprisingly light. This should open your game file and allow you to edit it. I can't actually help with anything beyond that as I am not a gamer. However, it's in the repo and is easy enough to install without taking up much room or being overly complex.
You can read more and learn more about bless
by clicking here.
1
I'm a 2000 rep user - I know how to use the terminal... LoL ;)
– TellMeWhy
Oct 20 '15 at 9:37
5
I'd assumed you knew but I was writing for posterity in case others came along behind you. I am working on making my answers more complete and, hopefully, able to last the ages (or at least a while). Sorry if it seemed like a slight - it was just for completeness.
– KGIII
Oct 20 '15 at 9:39
add a comment |
I've tried a number of different applications to open binary files. The one that I've used and enjoyed the most is called bless
and it is really easy to install. Simply open the terminal by pressing CTRL+ALT+T and type sudo apt-get install bless
and press ENTER. Note: You will have to enter your password, when you enter your password there will be no indicator on the screen, no asterisks, and the cursor will not move. This is normal behavior. After entering your password press ENTER again and follow any additional instructions given.
As a hex editor, bless
has lots of features and is actually surprisingly light. This should open your game file and allow you to edit it. I can't actually help with anything beyond that as I am not a gamer. However, it's in the repo and is easy enough to install without taking up much room or being overly complex.
You can read more and learn more about bless
by clicking here.
1
I'm a 2000 rep user - I know how to use the terminal... LoL ;)
– TellMeWhy
Oct 20 '15 at 9:37
5
I'd assumed you knew but I was writing for posterity in case others came along behind you. I am working on making my answers more complete and, hopefully, able to last the ages (or at least a while). Sorry if it seemed like a slight - it was just for completeness.
– KGIII
Oct 20 '15 at 9:39
add a comment |
I've tried a number of different applications to open binary files. The one that I've used and enjoyed the most is called bless
and it is really easy to install. Simply open the terminal by pressing CTRL+ALT+T and type sudo apt-get install bless
and press ENTER. Note: You will have to enter your password, when you enter your password there will be no indicator on the screen, no asterisks, and the cursor will not move. This is normal behavior. After entering your password press ENTER again and follow any additional instructions given.
As a hex editor, bless
has lots of features and is actually surprisingly light. This should open your game file and allow you to edit it. I can't actually help with anything beyond that as I am not a gamer. However, it's in the repo and is easy enough to install without taking up much room or being overly complex.
You can read more and learn more about bless
by clicking here.
I've tried a number of different applications to open binary files. The one that I've used and enjoyed the most is called bless
and it is really easy to install. Simply open the terminal by pressing CTRL+ALT+T and type sudo apt-get install bless
and press ENTER. Note: You will have to enter your password, when you enter your password there will be no indicator on the screen, no asterisks, and the cursor will not move. This is normal behavior. After entering your password press ENTER again and follow any additional instructions given.
As a hex editor, bless
has lots of features and is actually surprisingly light. This should open your game file and allow you to edit it. I can't actually help with anything beyond that as I am not a gamer. However, it's in the repo and is easy enough to install without taking up much room or being overly complex.
You can read more and learn more about bless
by clicking here.
answered Oct 20 '15 at 9:34
KGIIIKGIII
1,2511817
1,2511817
1
I'm a 2000 rep user - I know how to use the terminal... LoL ;)
– TellMeWhy
Oct 20 '15 at 9:37
5
I'd assumed you knew but I was writing for posterity in case others came along behind you. I am working on making my answers more complete and, hopefully, able to last the ages (or at least a while). Sorry if it seemed like a slight - it was just for completeness.
– KGIII
Oct 20 '15 at 9:39
add a comment |
1
I'm a 2000 rep user - I know how to use the terminal... LoL ;)
– TellMeWhy
Oct 20 '15 at 9:37
5
I'd assumed you knew but I was writing for posterity in case others came along behind you. I am working on making my answers more complete and, hopefully, able to last the ages (or at least a while). Sorry if it seemed like a slight - it was just for completeness.
– KGIII
Oct 20 '15 at 9:39
1
1
I'm a 2000 rep user - I know how to use the terminal... LoL ;)
– TellMeWhy
Oct 20 '15 at 9:37
I'm a 2000 rep user - I know how to use the terminal... LoL ;)
– TellMeWhy
Oct 20 '15 at 9:37
5
5
I'd assumed you knew but I was writing for posterity in case others came along behind you. I am working on making my answers more complete and, hopefully, able to last the ages (or at least a while). Sorry if it seemed like a slight - it was just for completeness.
– KGIII
Oct 20 '15 at 9:39
I'd assumed you knew but I was writing for posterity in case others came along behind you. I am working on making my answers more complete and, hopefully, able to last the ages (or at least a while). Sorry if it seemed like a slight - it was just for completeness.
– KGIII
Oct 20 '15 at 9:39
add a comment |
You can use hexdump
to open a binary file.
hexdump -C qkey | more
or use vim with the tips
add a comment |
You can use hexdump
to open a binary file.
hexdump -C qkey | more
or use vim with the tips
add a comment |
You can use hexdump
to open a binary file.
hexdump -C qkey | more
or use vim with the tips
You can use hexdump
to open a binary file.
hexdump -C qkey | more
or use vim with the tips
answered Oct 20 '15 at 9:03
FredFred
513
513
add a comment |
add a comment |
Sublime Text seems to be more reliable than gedit in both supported file types and handling large buffers more easily.
add a comment |
Sublime Text seems to be more reliable than gedit in both supported file types and handling large buffers more easily.
add a comment |
Sublime Text seems to be more reliable than gedit in both supported file types and handling large buffers more easily.
Sublime Text seems to be more reliable than gedit in both supported file types and handling large buffers more easily.
answered Jan 25 at 23:44
jackw11111jackw11111
41617
41617
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f687620%2feditor-to-open-binary-files%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown