|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| Solaris The Solaris Operating System, usually known simply as Solaris, is a Unix-based operating system introduced by Sun Microsystems. The Solaris OS is now owned by Oracle. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#8
|
|||
|
|||
|
Please provide some clues about what you are doing and how it fails.
Using an usb disk is generally quite simple, especially when the file system is fat. - Plug the device and it is automatically mounted, "df -h" will tell you where. - Write your file on it using the CLI or a file manager. - Unmount the device before unplugging it to avoid media corruption and that's it. Disabling the automounter makes thinks more complex so is generally not advisable. |
|
#9
|
|||
|
|||
|
I agree that you don't need to disable the automounter if the USB device is preformatted by another system but if you want to write a native Solaris filesystem to the USB device you will need to run fdisk and you cannot do that (without errors) with the automounter on.
|
|
#10
|
|||
|
|||
|
I see it when I run the mount command. I can move files to my /mnt, I can see them if I do an ls. When I try to find it on my windows machine, it says the drive is empty.
I'll try making it FAT32. And let you know the results. ---------- Post updated at 02:31 PM ---------- Previous update was at 12:17 PM ---------- So, changed the USB to FAT32, checked that it was picked up by solaris, no mount issues, no moving file issues, no sync issues, still showing nothing on the usb. |
|
#11
|
|||
|
|||
|
Did you change the partitions in any way? Microsoft Windows doesn't show multiple partitions on removable drives...
|
|
#12
|
|||
|
|||
|
i attempted to make a partition initially, but it kept coming back saying it couldn't partition the usb, so no.
|
|
#13
|
|||
|
|||
|
Are you dismounting the USB device cleanly? Code:
sync umount /mnt Otherwise the USB contents could be in cache and not actually written out before you disconnect the USB. (To all experts reading this: yes, I know sync is probably no longer required but no harm done in doing it.) |
|
#14
|
|||
|
|||
|
@kuriosity_prime What report the following commands (as root, ksh/bash syntax): Code:
rmformat
iostat -En
for i in $(rmformat | grep "Logical Node" | nawk '{print $4}')
do
pfexec fdisk -v -W - $i | grep -v : | grep -v '^*$'
for p in 1 2 3 4
do
printf "%d " $p
fstyp $(echo $i | sed 's/.$/'$p'/')
done
done |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Saving files | j_panky | Shell Programming and Scripting | 4 | 04-20-2011 04:30 AM |
| Saving value as default value | Moumou | Shell Programming and Scripting | 4 | 07-20-2009 08:50 AM |
| saving a vi session | ajcannon | Shell Programming and Scripting | 0 | 09-20-2007 04:07 AM |
| saving macros for VIM | yngwie | UNIX for Dummies Questions & Answers | 3 | 05-14-2007 12:26 AM |
| saving from unix into pc | alikun | UNIX for Dummies Questions & Answers | 6 | 03-28-2007 02:03 AM |
|
|