Open LiterallyNobodyAtAll opened 1 year ago
Hi,
you're right. Thank you. For some reason I messed that up and they were missing.
As far as I know they "should" run on any other Linux or Windows system, but I may be wrong. Please let me know if it works for you.
It works on Ubuntu 22.04 LTS, but I don't understand the results. I DO have Session Buddy installed and working, for many years. This is a new computer, new install, working for at least a month. Nothing wrong with SB. But sbh does not find a database.
me@mycomputer:~$ ./sbh search [INFO sbh::session_buddy::database] Searching /home/me/.config [INFO sbh] Search took 12.013347ms [INFO sbh] Databases found: 0
Also, sbh cannot be redirected to a file? This is all I know about redirection, and it didn't work. The txt file is created, but is zero length, and the text appears on the screen as before. me@mycomputer:~$ ./sbh search > sbh-search.result.txt [INFO sbh::session_buddy::database] Searching /home/me/.config [INFO sbh] Search took 11.960864ms [INFO sbh] Databases found: 0 me@mycomputer:~$ ls -la sbh* -rwxr-xr-x 1 me me 3137520 Apr 14 14:04 sbh -rw-rw-r-- 1 me me 0 Apr 14 14:11 sbh-search.result.txt me@mycomputer:~$
I don't know why a section of my text is showing with strike-through, it was not intentional.
Hi,
you're right. Thank you. For some reason I messed that up and they were missing.
- https://github.com/rxw1/sbh/releases/download/0.3.1/sbh-0.3.1-linux.tar.gz
- https://github.com/rxw1/sbh/releases/download/0.3.1/sbh-0.3.1-windows.zip
As far as I know they "should" run on any other Linux or Windows system, but I may be wrong. Please let me know if it works for you.
Hello @rxw1,
The provided binary for Windows at least appears to work in the sense that it runs, however most functions don't seem to work. The search function doesn't seem to work, not finding the database no matter what path I give manually. Anyway I found the correct file myself which was C:\Users\Username\AppData\Local\Chromium\User Data\Default\databases\chrome-extension_edacconmaakjimmfgnblocblbcdcpbko_0\1
however despite the validate command telling me [INFO sbh] Database valid
it will not run any operations(backup,dump,stats,etc) on the DB with the following error: [ERROR sbh] ColumnDecode { index: "\"generationDateTime\"", source: "invalid datetime: " }
@RickBobItati
Also, sbh cannot be redirected to a file? This is all I know about redirection, and it didn't work. The txt file is created, but is zero length, and the text appears on the screen as before. me@mycomputer:~$ ./sbh search > sbh-search.result.txt [INFO sbh::session_buddy::database] Searching /home/me/.config [INFO sbh] Search took 11.960864ms [INFO sbh] Databases found: 0 me@mycomputer:~$ ls -la sbh* -rwxr-xr-x 1 me me 3137520 Apr 14 14:04 sbh -rw-rw-r-- 1 me me 0 Apr 14 14:11 sbh-search.result.txt me@mycomputer:~$
Try command &> results.txt
or command > results.txt 2>&1
instead to redirect stderr also, which this may be outputting, I didn't check though as I'm not using Linux for my browser.
Hi, I saw your post on the google group and was looking forward to trying this, unfortunately I'm not much of a rust dev and don't know how to compile this myself and saw you mentioned precompiled binaries, however they don't appear to exist on the releases page. Am I looking in the wrong place?