Sponsored Content
Operating Systems Solaris Solaris View/Transfer Files Android Phone Post 302973158 by Don Cragun on Sunday 15th of May 2016 12:43:19 PM
Old 05-15-2016
If you can transfer one file successfully over your cable now, can you use tar, cpio, or pax to create a single archive file containing everything you want to transfer and use the archive files to transfer your data back and forth?

What command(s) do you use to successfully transfer a file over your cable?

Can you mount the Android phone's filesystem (read-only obviously) from Solaris using your cable? That would allow you to rsync from the phone to Solaris.

Does your phone have multiple filesystems mounted, or is everything in the root filesystem? If it has multiple filesystems and you can put the files you want to sync on a filesystem that your phone doesn't need to write to while files are being synced, you could unmount that filesystem on your phone, remount it read-only, and then mount it read-write on Solaris to rsync back to your phone. (Just don't forget to unmount the Adroid filesystem from Solaris before you unmount it again on your phone and remount it read-write on your phone.)

Does your phone's OS include support for an NFS server? If so, can you export an NFS filesystem from your phone through your cable or by WiFi and mount that NFS filesystem on Solaris so you can rsync both ways?

Does you phone's OS include support for mounting NFS filesystems from a remote NFS server? If so export an NFS filesystem from your Solaris system and mount it on your phone...

If you can't cross-mount filesystems, are ftp, rcp, or even uucp possible?
 

6 More Discussions You Might Find Interesting

1. Solaris

Transfer files from Solaris to windows

Please let me know a efficient way to transfer files from a solaris to a windows machine. Total size of data is 800GB. (3 Replies)
Discussion started by: pingmeback
3 Replies

2. Android

Will You Move to an Android Phone or Tablet?

Let's find out about users of Android. I'm becoming a big Android follower. You? After a lot of research, I am thinking to by the Samsung Galaxy S as soon as it updates to Android 2.2. I'm also closely following the release of the Samsung Galaxy Tab! (14 Replies)
Discussion started by: Neo
14 Replies

3. UNIX for Dummies Questions & Answers

view gzipped files with name file.gz.$DATE on a Solaris box (without unzipping first)

Hi Howto view gzipped files with name file.gz.$DATE on a Solaris box (without unzipping first) $ ls -lrt total 4477 -rwxrwxr-x 1 oracle dba 569745 Apr 4 19:45 4_person2profileCon.txt.gz.04.04.11* -rwxrwxr-x 1 oracle dba 3783 Apr 4 19:45... (4 Replies)
Discussion started by: slashdotweenie
4 Replies

4. OS X (Apple)

USB File Transfer MacOS 10.6.5 to Android 2.2?

I'm trying to get a MacBook Air (MBA) running 10.6.5 to recognize a Samsung Galaxy S (Android 2.2) vis the USB interface for simple file transfers back and forth. Nothing works so far. I've tried many things! :wall: I noticed when I connect my phone to the MBA, there is a message in system.log... (2 Replies)
Discussion started by: Neo
2 Replies

5. Solaris

Command to list or view the files in .pkg (solaris) and how to extract without installing

In Linux for .rpm we can list or view the files using the command rpm -qpl <file.rpm> and to extract, the command is rpm2cpio <file.rpm> | cpio -idvh I would like to know the commands which has same functionality as above for solaris ( .pkg) Thanks in Advance (5 Replies)
Discussion started by: frintocf
5 Replies

6. Emergency UNIX and Linux Support

How do i start a new thread with my android phone?

thanks (6 Replies)
Discussion started by: jgt
6 Replies
UMOUNT(8)						    BSD System Manager's Manual 						 UMOUNT(8)

NAME
umount -- unmount filesystems SYNOPSIS
umount [-fvFR] [-t fstypelist] special | node umount -a [-fvF] [-h host] [-t fstypelist] DESCRIPTION
The umount command calls the unmount(2) system call to remove a special device or the remote node (rhost:path) from the filesystem tree at the point node. If either special or node are not provided, the appropriate information is taken from the fstab(5) file. The options are as follows: -a All the currently mounted filesystems except the root are unmounted. -f The filesystem is forcibly unmounted. Active special devices continue to work, but all other files return errors if further accesses are attempted. The root filesystem cannot be forcibly unmounted. -F Fake the unmount; perform all other processing but do not actually attempt the unmount. (This is most useful in conjunction with -v, to see what umount would attempt to do). -R Take the special | node argument as a path to be passed directly to unmount(2), bypassing all attempts to be smart about mechanically determining the correct path from the argument. This option is incompatible with any option that potentially unmounts more than one filesystem, such as -a, but it can be used with -f and/or -v. This is the only way to unmount something that does not appear as a directory (such as a nullfs mount of a plain file); there are probably other cases where it is necessary. -h host Only filesystems mounted from the specified host will be unmounted. This option is implies the -a option and, unless otherwise spec- ified with the -t option, will only unmount NFS filesystems. -t fstypelist Is used to indicate the actions should only be taken on filesystems of the specified type. More than one type may be specified in a comma separated list. The list of filesystem types can be prefixed with ``no'' to specify the filesystem types for which action should not be taken. For example, the umount command: umount -a -t nfs,mfs unmounts all filesystems of the type NFS and MFS, whereas the umount command: umount -a -t nonfs,mfs unmounts all file systems except those of type NFS and MFS. -v Verbose, additional information is printed out as each filesystem is unmounted. FILES
/etc/fstab filesystem table SEE ALSO
unmount(2), fstab(5), mount(8) HISTORY
A umount command appeared in Version 6 AT&T UNIX. BSD
May 17, 2009 BSD
All times are GMT -4. The time now is 08:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy