LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-10-2009, 07:46 AM   #31
candebill
Member
 
Registered: Jun 2009
Posts: 61

Original Poster
Rep: Reputation: 15

Ok I know this is a stupid question as most of the ones I ask probably are to you guys, but in the file manager how am I suppose to find the casper-rw file? I went to terminal and typed in locate casper-rw, but nothing happened. I am assuming the reason this happened is because what I mentioned above. When I shut down my laptop that is booted from the MINT disc, no changes are saved. So I will probably have to do the entire process again from scratch. Before I did that I wanted to find out how I can look for the casper-rw file using the file manager. I am very, very new to Linux. As a matter of fact I hardly know anything about it so please forgive my novice questions.

I did look at the link you posted but that was pretty much "Greek" to me.

Thank you again in advance.

Last edited by candebill; 07-10-2009 at 07:48 AM. Reason: Forgot to add something
 
Old 07-10-2009, 07:57 AM   #32
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Maybe not what you wanna hear, but have you tried other distro's?

In my opinion any ubuntu is simply too big for a sub-16gb usb
the casper-rw will have to grow each time it updates or you add new apps, etc

there are easier alternatives that will autoconnect too
and some eye-candy, low-ram, with up-to-date repos too
( http://multidistro.com/tinycore-shots/tc-scrnshots.html )

that's my tinycore hack.
it's got opera, flash10, mtpaint(had gimp2), gtk2+, OSS stereo sound+ more and is about 70mb
I'm jammin the metallica as I write you

just a suggestion
 
Old 07-10-2009, 08:55 AM   #33
candebill
Member
 
Registered: Jun 2009
Posts: 61

Original Poster
Rep: Reputation: 15
Not yet, but that may be an option in the future. Right now I would like to just get this up and running. I use my work PC alot so I don't necessarily need my laptop for things other than budgeting my bills, looking for jobs, sending emails, etc. I don't plan on having this laptop forever. It's already about 5 years old. I've been trying to get this USB Mint thingy working for like 5 weeks now and it takes one week just to get to the next small step. These guys on here have been real patient with me and I appreciate that. I'm too close to give up to where I am now though, but if all else fails, then I guess I will just have a laptop with no internet service. I can function....I think. Thanks.
 
Old 07-12-2009, 11:31 AM   #34
candebill
Member
 
Registered: Jun 2009
Posts: 61

Original Poster
Rep: Reputation: 15
yes I am that computer illiterate

Can someone please tell me how to `search` for a file in linux? Maybe by typing it in...but where?
 
Old 07-12-2009, 11:32 AM   #35
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
open a terminal
become root
type
Code:
find / -name filename
 
Old 07-14-2009, 08:36 AM   #36
candebill
Member
 
Registered: Jun 2009
Posts: 61

Original Poster
Rep: Reputation: 15
When I type in: find / -name casper-rw it tells me about 50-60 times with different paths...persmission denied. What does this mean? Is it searching for the file on my USB at all?
 
Old 07-14-2009, 08:38 AM   #37
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
When I type in: find / -name casper-rw it tells me about 50-60 times with different paths...persmission denied. What does this mean? Is it searching for the file on my USB at all?
Because you search as user, not as root

To search the USB
find /path_to_mountpoint_usb -name casper-rw
 
Old 07-14-2009, 10:17 AM   #38
candebill
Member
 
Registered: Jun 2009
Posts: 61

Original Poster
Rep: Reputation: 15
I typed in exactly what you said and this is what I got:
find: `path_to_mountpoint_usb': No such file or directory
 
Old 07-14-2009, 10:28 AM   #39
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
find: `path_to_mountpoint_usb': No such file or directory
You need tp replace
Quote:
path_to_mountpoint_usb
with te path to where the usb is mounted.

While the USB is connected, type
Code:
mount
to find the mounting point

exempla
Quote:
/dev/sdc2 on /media/disk type vfat (rw,nosuid,nodev,uhelper=hal,shortname=lower,uid=1000)
The mount point is here /media/disk
 
Old 07-14-2009, 11:34 AM   #40
candebill
Member
 
Registered: Jun 2009
Posts: 61

Original Poster
Rep: Reputation: 15
Ok this is what I got:
/dev/sdb1 on /media/STORE N GO type vfat (rw,nosuid,nodev,uhelper=hal,shortname=mixed,uid=999,utf8,unmask=077,flush)

So from what you are saying I should type:

find /media/STORE N GO -name casper-rw

This is what I got:
No such file or directory.

I'm saying this ahead of time. Thank you for your patience.
 
Old 07-14-2009, 11:36 AM   #41
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
OK, try /media/STORE_N_GO
 
Old 07-14-2009, 12:18 PM   #42
candebill
Member
 
Registered: Jun 2009
Posts: 61

Original Poster
Rep: Reputation: 15
Same thing.
 
Old 07-14-2009, 12:35 PM   #43
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
find /media/STORE N GO -name casper-rw
Make sure you got the spelling right.
In a terminal, type
Code:
cd /media
Code:
ls
Then copy/paste the correct name
 
Old 07-14-2009, 12:52 PM   #44
candebill
Member
 
Registered: Jun 2009
Posts: 61

Original Poster
Rep: Reputation: 15
Yes the name was correct. STORE N GO.
I don't know what I did wrong.
 
Old 07-14-2009, 12:58 PM   #45
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
Yes the name was correct. STORE N GO.
no it is not
It should look like
Code:
STORE\ N\ GO/
type
Code:
cd media
ls STORE => Then press TAB key
 
  


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
USB flash drive works like a charm! wapcaplet LinuxQuestions.org Member Success Stories 3 07-10-2009 07:50 AM
USB Flash drive works great, BUT I can't unmount it?? Balarabay1 Linux - Hardware 6 11-20-2006 01:02 PM
If my flash drive works, shouldnt my camera work also? M$ISBS Linux - Hardware 4 09-16-2006 09:48 AM
How USB / Flash drive works in redhat 9 itstipu Linux - Hardware 5 08-08-2006 03:38 PM
LXer: EDGE Tech Corp Announces Portable Flash Drive With Muscle - the New 8GB DiskGO!(TM) Now Available; Swap and Go With This Secure Thumb-Sized Flash Drive LXer Syndicated Linux News 0 12-14-2005 02:16 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:19 PM.

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