The power of cross-platform synchronization


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News The power of cross-platform synchronization
# 1  
Old 07-21-2008
The power of cross-platform synchronization

07-21-2008 08:00 AM
These days there are plenty of ways to back up your computer files. The options are easy when you're dealing with one computer -- just back up your files to an external hard drive and forget about it -- but when several machines are involved, each with a different operating system, things can get complicated. If you frequently work on more than one computer, having access to your synchronized files no matter where you are can also be useful. PowerFolder, a backup and file synchronizing service, helps you cover all your bases, no matter what platform or how many computers you're using.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Making a python package and cross-platform compatible

Hi Ive been trying for days now and i just cannot work this out. Can someone please tell me if im doing this right. I've written some python3.3 code and now i want to transfer it to an embedded computer to execute. My OS is a : Debian GNU/Linux 6.0.7 (squeezez) 32-bit kernel The... (1 Reply)
Discussion started by: RedEyedDog
1 Replies

2. Debian

Making a python package and cross-platform compatible

Hi Ive been trying for days now and i just cannot work this out. Can someone please tell me if im doing this right. I've written some python3.3 code and now i want to transfer it to an embedded computer to execute. My OS is a : Debian GNU/Linux 6.0.7 (squeezez) 32-bit kernel ... (0 Replies)
Discussion started by: RedEyedDog
0 Replies

3. UNIX for Dummies Questions & Answers

Really simple cross-platform database?

I'm looking for a really simple to use lightweight database. Ideally something open-source that stores data in a (semi-) human-readable format, in case the software isn't working. Something cross-platform enough that I can use it on my Linux machine, my Mac, or stick it on a USB stick and... (2 Replies)
Discussion started by: emdan
2 Replies

4. Shell Programming and Scripting

configuring packages for cross-platform build

Hi all, I wish to build a few packages for my embedded target running linux over ARM9. It would be tough for me to compile my packages on target so I need to build on a host machine and then transfer the generated binaries. So I got the source-tarball for the packages I need. Now here are my two... (0 Replies)
Discussion started by: Rakesh Ranjan
0 Replies

5. UNIX for Advanced & Expert Users

please recommend books or articles on cross-platform portable code

I have know some items on cross-platform portable byte order alignment I don't know if there are books or articles on this topic. your recommendation is appreciated (1 Reply)
Discussion started by: zhongyj
1 Replies

6. UNIX for Advanced & Expert Users

Cross platform Authentication

I am looking to have UNIX authenticate against Active Directory in a Windows Server 2003 environment, any suggestion? I am very new to UNIX, 2 weeks worth knowledge, if that. Thanks! (3 Replies)
Discussion started by: Optik
3 Replies
Login or Register to Ask a Question
streamadm(4)						     Kernel Interfaces Manual						      streamadm(4)

NAME
streamadm - Defines configuration information about a STREAMS module or driver SYNOPSIS
#include <sys/stream.h> struct streamadm { uint sa_version ; uint sa_flags ; char sa_name [FMNAMESZ+1]; caddr_t sa_ttys ; uint sa_sync_level ; caddr_t sa_sync_info ; }; PARAMETERS
Version identifier for the streamadm structure. Used for compatibility reasons. A flag indicating the type of STREAMS. Possible values are For a STREAMS driver. For a STREAMS module. The unique name of the module or driver. Modules and drivers share a common name space. The maximum length for a name is set by FMNAMESZ. A pointer to the ttys() routine that will be used by the module or driver. When the module or driver is added via strmod_add(), this pointer will be placed in the d_ttys field in the cdevsw structure. If the driver is not a tty driver, this field is set to NULL. The synchronization level for the module or driver. This field is relevant on multiprocessors. The possible values are: The default, global level synchronization. Global level synchronization. Arbitrary level synchronization. Mod- ule level synchronization. Queue pair level synchronization. Queue level synchronization. A pointer to synchronization data. This field is relevant if sa_sync_level is SQLVL_ELSEWHERE. DESCRIPTION
The streamadm structure defines additional configuration information for a STREAMS module or driver. The operating system configuration procedure uses this structure in addition to the traditional streamtab structure when configuring a STREAMS module or driver. The Network Programmer's Guide contains additional information about the synchronization levels for the module or driver. RELATED INFORMATION
Interfaces: strmod_add(2), strmod_del(2). Network Programmer's Guide delim off streamadm(4)