LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-25-2008, 10:55 AM   #1
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Rep: Reputation: 15
Exactly where are chat files(Frost Wire/folder usr/)stored on my ....


...PC?
I know they are somewhere locally..I have found the folder, usr/lib/Frostwire.Exactly how do i access it to find the chat files?
Thanks...ps: Googled and cant find anything?
 
Old 01-25-2008, 11:05 AM   #2
elliott678
Member
 
Registered: Mar 2005
Location: North Carolina
Distribution: Arch
Posts: 977

Rep: Reputation: 74
I'd look for a .frostwire/ folder in your home directory, the "." makes it hidden, so you would need to enable showing of hidden folders in your file manager. I don't use Frostwire, so I don't know if it even stores them.
 
Old 01-25-2008, 11:33 AM   #3
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by elliott678 View Post
I'd look for a .frostwire/ folder in your home directory, the "." makes it hidden, so you would need to enable showing of hidden folders in your file manager. I don't use Frostwire, so I don't know if it even stores them.
Thanks.By opening Thunar File manager and then hitting ctrl-H this automatically shows hidden files..Now how do i find the folder with the chat files??
 
Old 01-25-2008, 01:20 PM   #4
elliott678
Member
 
Registered: Mar 2005
Location: North Carolina
Distribution: Arch
Posts: 977

Rep: Reputation: 74
Like I said, if it does store them, it would be in a folder something like .frostwire/ in the home directory. It couldn't really store them anywhere else except the home folder, it doesn't have permission.

Last edited by elliott678; 01-25-2008 at 01:21 PM.
 
Old 01-25-2008, 02:08 PM   #5
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by elliott678 View Post
Like I said, if it does store them, it would be in a folder something like .frostwire/ in the home directory. It couldn't really store them anywhere else except the home folder, it doesn't have permission.
What steps do i take to view the files?
Is there anyone out here who knows the exact steps A TO B on how to retirieve the chat files?
Thanks
 
Old 01-25-2008, 02:11 PM   #6
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by DAVE666 View Post
What steps do i take to view the files?
Is there anyone out here who knows the exact steps A TO B on how to retirieve the chat files?
Thanks
,
I have located the folder,actually located it yesterday and have been attempting to find the chat files,however there are many folders sub folders etc and i just can't find which one..I likely will, if i keep at it,however i don't have a huge time line to do this..Can anyone help?
 
Old 01-26-2008, 07:04 AM   #7
budword
Member
 
Registered: Apr 2003
Location: Wisconsin
Distribution: Switched to regualr Ubuntu, because I don't like KDE4, at all. Looks like vista on crack.....
Posts: 675

Rep: Reputation: 31
I've looked aound a bit in .frostwire, and I don't think frostwire logs your chats at all. In frostwire's options, there is no option on where to save logged chats, or even to log chats or to disable chat logging. I don't believe it's a feature of frostwire at all at the moment...

David
 
Old 01-26-2008, 07:07 AM   #8
bigrigdriver
LQ Addict
 
Registered: Jul 2002
Location: East Centra Illinois, USA
Distribution: Debian stable
Posts: 5,908

Rep: Reputation: 356Reputation: 356Reputation: 356Reputation: 356
su to root

find /home -type f | grep <username> ,where 'username' is the chat name of the person you're interested it watching.

find /home -type f | grep <some word> , where 'someword' is a word you would expect to show up in the chat.
 
Old 01-26-2008, 07:27 PM   #9
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by bigrigdriver View Post
su to root

find /home -type f | grep <username> ,where 'username' is the chat name of the person you're interested it watching.

find /home -type f | grep <some word> , where 'someword' is a word you would expect to show up in the chat.
If i am correct,typing in the above will point out any typed in words in xbuntu? I am a little confused? I gather Frost wire doesn't save the info but i recall in XP(i hate saying that)i could go into the files and view recent info...such as chats but that was MSN ..so i am just confused as i know that anything that comes across a PC is saved somewhere?,especially typed in conversations etc..However just where would those chat files be??
Thanks for your help
 
Old 01-26-2008, 07:34 PM   #10
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by bigrigdriver View Post
su to root

find /home -type f | grep <username> ,where 'username' is the chat name of the person you're interested it watching.

find /home -type f | grep <some word> , where 'someword' is a word you would expect to show up in the chat.
I have only used the command terminal a few times,you will have to excuse me but what do i type in exactly once i open the terminal?
Thanks
 
Old 01-26-2008, 08:10 PM   #11
budword
Member
 
Registered: Apr 2003
Location: Wisconsin
Distribution: Switched to regualr Ubuntu, because I don't like KDE4, at all. Looks like vista on crack.....
Posts: 675

Rep: Reputation: 31
Just cut and past everything from "find" until you hit the > symbol. Don't actually type <some word>, replace everything between < > including the < > with whatever word or username you are looking for. If your conversation included the word "pirates" or the user named "bunny" you would type in exactly this....

find /home -type f | grep bunny

or

find /home -type f | grep pirates

I would add the -i option, which just tells grep to ignore case when searching for those words.....like this....

find /home -type f | grep -i pirates

Good luck...

David

Last edited by budword; 01-26-2008 at 08:12 PM.
 
Old 01-26-2008, 10:07 PM   #12
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by budword View Post
Just cut and past everything from "find" until you hit the > symbol. Don't actually type <some word>, replace everything between < > including the < > with whatever word or username you are looking for. If your conversation included the word "pirates" or the user named "bunny" you would type in exactly this....

find /home -type f | grep bunny

or

find /home -type f | grep pirates

I would add the -i option, which just tells grep to ignore case when searching for those words.....like this....

find /home -type f | grep -i pirates

Good luck...

David
I am sorry bro but i am even more confused now lol
I am a total Linux virgin,i've been brain washed by MS Windows and am slowly seeing the light.....So all of what i am learning is new.
Ok so open the Terminal.and type in find /home -type f | grep....after grep type key words i am searching for? correct?
..Ultimately i am attempting to find info in chats(Frost Wire),i really do not know what was said in the chats,so won't i be just fishing by going this terminal root?
Thanks for the tips.
ANY LINUX SECURITY SPECIALIST OR DATA RECOVERY PEOPLE OUT HERE! PLEASE HELP.
 
Old 01-26-2008, 10:23 PM   #13
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by DAVE666 View Post
I am sorry bro but i am even more confused now lol
I am a total Linux virgin,i've been brain washed by MS Windows and am slowly seeing the light.....So all of what i am learning is new.
Ok so open the Terminal.and type in find /home -type f | grep....after grep type key words i am searching for? correct?
..Ultimately i am attempting to find info in chats(Frost Wire),i really do not know what was said in the chats,so won't i be just fishing by going this terminal root?
Thanks for the tips.
ANY LINUX SECURITY SPECIALIST OR DATA RECOVERY PEOPLE OUT HERE! PLEASE HELP.
I typed in what you said and got this-paths must precede expression??
Am i not typing in right,spaces etc,is it all typed in as above no spaces?
 
Old 01-26-2008, 10:37 PM   #14
budword
Member
 
Registered: Apr 2003
Location: Wisconsin
Distribution: Switched to regualr Ubuntu, because I don't like KDE4, at all. Looks like vista on crack.....
Posts: 675

Rep: Reputation: 31
Right. Find just searches for files with the words you are searching for in the file name. I would bet money that the chat you are hoping to find was never logged at all. You can't find what isn't there. There are instant messengers that will log your chat for you, if you set them up to log the chat. I don't think frostwire logs your chat at all. You can't find what isn't there. The find command in the terminal is just some people here trying a long shot just to help you out. Even if you type everything in perfectly, I don't think there is anything there to find. That find command isn't formatted correctly anyway, I don't think. We didn't tell find what to look for, is what it's complaining about. In any event, even if we get the syntax right, it won't work, as frostwire doesn't log your chats. I could be wrong about that, but I'm pretty sure I'm not.

Best of luck though....

David
 
Old 01-26-2008, 10:41 PM   #15
DAVE666
Member
 
Registered: Jan 2008
Posts: 145

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by budword View Post
Right. Find just searches for files with the words you are searching for in the file name. I would bet money that the chat you are hoping to find was never logged at all. You can't find what isn't there. There are instant messengers that will log your chat for you, if you set them up to log the chat. I don't think frostwire logs your chat at all. You can't find what isn't there. The find command in the terminal is just some people here trying a long shot just to help you out. Even if you type everything in perfectly, I don't think there is anything there to find. That find command isn't formatted correctly anyway, I don't think. We didn't tell find what to look for, is what it's complaining about. In any event, even if we get the syntax right, it won't work, as frostwire doesn't log your chats. I could be wrong about that, but I'm pretty sure I'm not.

Best of luck though....

David
Thanks a million
Would you know of a Key logger for xbuntu..One which is easy to install and operate.
Thanks alot!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to stay safe when opening files from Lime Wire.. DAVE666 Linux - Newbie 3 01-21-2008 08:28 AM
/usr folder STARHARVEST Slackware 2 01-11-2008 07:04 AM
making files available in /usr/local/bin and /usr/sbin reakinator Linux - Newbie 1 10-14-2006 05:09 PM
Browser Bookmarks and Stored Emails - What Folder are they in? rrrssssss Mandriva 3 01-03-2006 05:17 PM
Where are programs files and configuration files stored? nutshell Linux - General 2 03-09-2002 10:24 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:01 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration