Sponsored Content
Full Discussion: Saving to usb
Operating Systems Solaris Saving to usb Post 302713853 by hicksd8 on Thursday 11th of October 2012 11:05:07 AM
Old 10-11-2012
I think that you might need to format it fat32 (on another machine).

If the mount command gives you no errors, you should be able to see it listed in the output of the command:

Quote:
mount
Once you can see it there you can copy files to the USB device by copying them to /mnt (or whatever mountpoint you used).
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Saving to a floppy

How do I save a file to a floppy. I mounted the drive and it is there. Everytime I try to save to the floppy, it tells me the resource is busy. Please advise. Thanks, (1 Reply)
Discussion started by: umether
1 Replies

2. UNIX for Dummies Questions & Answers

Saving scripts to usb device

How do I save a script to a pen drive? (3 Replies)
Discussion started by: beginner1
3 Replies

3. UNIX for Dummies Questions & Answers

saving from unix into pc

hi, i access unix through secure shell (SSH) from my pc running on windows. Can i save files from unix directly into windows-run pc?. e.g. vi files into notepad??? thanks alot, -a (6 Replies)
Discussion started by: alikun
6 Replies

4. Shell Programming and Scripting

saving a vi session

Apologies if this isn't quite the right thread I have a vi session and I have set a lot of tags with 'mx'. can I save this session preserving these tags so when I go back to the session I don't have to reset them all? cheers (0 Replies)
Discussion started by: ajcannon
0 Replies

5. Shell Programming and Scripting

Saving value as default value

Hi everybody, I have a prog who is filtering an image with a lot of parameters. The user has two choices : -Running the script with default values -Running the script manually (i.e choosing himself the parameters values) What I would like to do is that if he wants, the users can keep... (4 Replies)
Discussion started by: Moumou
4 Replies

6. Red Hat

Live-cd Saving changes

Hi all, firstly apologies if this is in the wrong category. I have been making livecds (fedora based) and to change eg the background i use below in the ks file. this works fine, however when i install the livecd it loses the changes. How can i make the changes so that they stay when... (5 Replies)
Discussion started by: davewilks
5 Replies

7. Shell Programming and Scripting

bashrc not saving changes

I am trying to do some changes at bashrc file located at /etc directory of my server. First I tried to edit bashrc via FTP downloaded on my pc changed it and loaded back, but it seems like changes are not reflecting. Therefore I tried to change it via putty shel using vim bashrc command. but... (4 Replies)
Discussion started by: ninadgac
4 Replies

8. UNIX for Dummies Questions & Answers

USB-USB cable between linux and windows computers

Is there an easy way to setup a cross-over cable (USB-USB) between a linux box and a windows PC? My 2 machines are next to each other but I really do not want to keep transfering my files using my USB drive. Thanks! (4 Replies)
Discussion started by: Xterra
4 Replies

9. Shell Programming and Scripting

Saving files

Hi all, I need to save my files at c, d or any drive location via script. Requirement. Say for example i have 10 files at location /usr/bi/ci location. 10 files naming a.ksh b,ksh c.ksh and so on I want to save the files and its content at some location (any drive on local... (4 Replies)
Discussion started by: j_panky
4 Replies
FINDMNT(8)						      System Manager's Manual							FINDMNT(8)

NAME
findmnt - find a filesystem SYNOPSIS
findmnt [options] findmnt [options] device|mountpoint findmnt [options] [--source] device [--target] mountpoint DESCRIPTION
findmnt will list all mounted filesytems or search for a filesystem. The findmnt command is able to search in /etc/fstab, /etc/fstab.d, /etc/mtab or /proc/self/mountinfo. If device or mountpoint is not given, all filesystems are shown. The command prints all mounted filesystems in the tree-like format by default. OPTIONS
-h, --help Print help and exit. -s, --fstab Search in /etc/fstab and /etc/fstab.d. The output is in the list format (see --list). -m, --mtab Search in /etc/mtab. The output is in the list format (see --list). -k, --kernel Search in /proc/self/mountinfo. The output is in the tree-like format. This is the default. -c, --canonicalize Canonicalize all printed paths. -d, --direction word The search direction - forward or backward. -e, --evaluate Convert all tags (LABEL or UUID) to the device names. -f, --first-only Print the first matching filesystem only. -i, --invert Invert the sense of matching. -l, --list Use the list output format. This output format is automatically enabled if the output is restricted by -t, -O, -S or -T option and the option --submounts is not used. -v, --nofsroot Do not print a [/dir] in the SOURCE column for bind-mounts or btrfs subvolumes. -n, --noheadings Do not print a header line. -u, --notruncate Do not truncate text in columns. The default is to not truncate the TARGET, SOURCE, UUID and LABEL columns. This option disables text truncation also in all other columns. -O, --options list Used to limit the set of printed filesystems. More than one option may be specified in a comma-separated list. The -t and -O options are cumulative in effect. It is different from -t in that each option is matched exactly; a leading no at the beginning of one option does not negate the rest. For more details see mount(8). -o, --output list Define output columns. Currently supported are SOURCE, TARGET, FSTYPE, OPTIONS, VFS-OPTIONS, FS-OPTIONS, LABEL and UUID. The TAR- GET column contains tree formatting if the --list or --raw options are not specified. -r, --raw Use raw output format. -a, --ascii Use ascii characters for tree formatting. -t, --types list Used to limit the set of printed filesystems. More than one type may be specified in a comma-separated list. The list of filesys- tem types can be prefixed with no to specify the filesystem types on which no action should be taken. For more details see mount(8). -R, --submounts Print recursively all submounts for the selected filesystems. The restrictions defined by options -t, -O, -S, -T and --direction are not applied to submounts. All submounts are always printed in tree-like order. The option enables the tree-like output format by default. This option has no effect for --mtab or --fstab. -S, --source spec Explicitly define the mount source. Supported are device, LABEL= or UUID=. -T, --target dir Explicitly define the mount target (mountpoint directory). EXAMPLES
findmnt --fstab -t nfs Prints all nfs filesystems defined in /etc/fstab. findmnt --fstab /mnt/foo Prints all /etc/fstab filesystems where the mountpoint directory is /mnt/foo. It also prints bind mounts where /mnt/foo is a source. findmnt --fstab --target /mnt/foo Prints all /etc/fstab filesystems where the mountpoint directory is /mnt/foo. findmnt --fstab --evaluate Prints all /etc/fstab filesystems and converts LABEL= and UUID= tags to the real device names. findmnt -n --raw --evaluate --output=target LABEL=/boot Prints only the mountpoint where the filesystem with label "/boot" is mounted. AUTHORS
Karel Zak <kzak@redhat.com> SEE ALSO
mount(8), fstab(5) AVAILABILITY
The findmnt command is part of the util-linux package and is available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/. Version 1.0 Apr 2010 FINDMNT(8)
All times are GMT -4. The time now is 05:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy