Multiple operating system/machine installs of CC

I am a Creative Cloud subscriber and I would like to know is I can install one copy on my desktop Windows machine and the second on my Apple laptop?

Yes.
Refer the Getting Started section of the Cloud FAQ
Adobe Creative Cloud – FAQ

Similar Messages

  • Please help me get my laptop back someone has cracked the master password and is running multiple operating systems which I have no access to

    Okay so I am not a computer expert by any means and have no clue how to fix my system. My father worked for intel for over 20 years as an engineer I asked him to restore my laptop to its original factory state and instead he cracked the master password
    installed multiple operating systems and made himself the administrator or domain controller. Many features and options I do not have access to so reading the trouble shooting and going through the steps always leads me to a dead end. The laptop is TOSHIBA
    SATELLITE L875D-S7332 a6 VISION AMD WINDOWS 8. As far as I can see my profile is actual running a version of windows 7. I do see reference to a windows 8RT windows 2003 windows vista wow64 and 32 I don't know what all that means I would just like to know how
    wipe everything and get back to the factory condition I bought it in. If anyone can help it would be much appreciated

    Do you have Win 7 installation disk? If yes, then go ahead and format the laptop if you don't need any data. If you need the data it it, then copy the same to USB disk and format it. Removing OS and deleting these things will anyhow keep some remains on
    HDD. TO get the speed and performance back, you might need a fresh installation. 
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • Installing Multiple Operating Systems with grub and Arch Linux

    NOTE: Please keep in mind that there are many different ways to achieve this same result using various loop and ramdisk methods, read this with a separate window to jot down your comments and suggestions... this is ongoing for me so any help would be appreciated!
    Read the full article at Install Multiple Os without cds
    This is my first post and I plan on making this topic an official HOWTO with www.tldp.org.
    I have been into the computer security scene since 1990, but I realized that I had very little experience with the various LInux, Unix, and alternative Operating systems out there.
    I have a CD-RW drive but being a struggling computer security researcher I had no money for blank cd-recordables.  What follows is how I managed to install various operating systems on my computer (1 hard drive) without having to burn to a CD the ISO and then boot from that.
    I first partitioned my 120GB harddrive into 10 partitions, the 2nd partition is a small swap and the last partition is extra large because it holds all the ISO images..
    I then wrote a small shell script to automatically download (I love wget!)  the following.
    OpenBSD
    IpCOP
    Libranet
    Arch-Linux
    Fire
    Local Area Security
    Packet Master
    Devil-Linux
    FreeBSD
    Knoppix
    Helix
    Gentoo
    Yoper-Linux
    NetBSD
    RedHat
    Slackware
    The script also downloaded Installation manuals and md5 checksums.. (let me know if I should post... its pretty unsophisticated
    I installed Slackware (personal favorite) on hda1 using my last blank CD-R, note that I do not have a separate boot partitino.  (Should I?).  I also installed grub on the MBR.  I love grub, if you read through the man pages and all info you can find about grub, you can learn a whole lot.  Grub has much more features and capability than lilo, even though lilo comes installed by default with slack.
    I organize my kernel situation as follows...  In my /boot directory, I mkdir KERNEL, CONFIG, MAP, INITRD and that is a good way for me to keep my kernels and everything organized..  Another good way is a separate dir for each new kernel. 
    Since Arch-Linux is a solid distro, I'll use that as a first example.
    Here is the Arch-Linux section of my shell script
    goge Arch-Linux
    $w http://puzzle.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.iso
    $w http://unc.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.md5sum
    $w http://www.archlinux.org/docs/en/guide/install/arch-install-guide.html
    md55
    cat arch-0.6.md5sum
    md5sum arch-0.6.iso
    md55
    The first thing to do is to mount the downloaded ISO image so we can use it as if it were an actual CD.
    mount -t iso9660 -o ro,loop=/dev/loop0 cdimage /mnt/cdrom
    Where cdimage= the ISO image.   EX. /usr/local/src/ISO/Linux/Arch-Linux/arch-0.6.iso
    This mounts the iso as /mnt/cdrom.
    Next you need to copy /mnt/cdrom to a separate partition for the booting process.  So mkfs.ext2 /dev/hda9.  ( I prefer reiserfs or even XFS to ext but if you use something other than ext2 you could run into some problems because some of the installation kernels and initrds don't include support for reiserfs and so can't recognize the files.  Although you could use mkinitrd to create a new initrd with reiserfs support, that might be pushin it IMO...   I use the 9th partition consistently for this.  I know there is a "right" way to copy the /mnt/cdrom files so everything stays the way it is supposed too, using tar or cpio, but I'm lazy so I just do cp -rp.   
    (What is the tar or cpio commands to copy with correct permissions etc??)
    So you mount the 9th partition as whatever, say /mnt/hd and then copy the files.  Now what?
    Now edit your /boot/grub/menu.lst file to include the specific options to boot arch-linux installation. 
    A good idea is to find the isolinux.cfg file somewhere on the distro cd, this will tell you what to include in the menu.lst.
    Here is the section in my menu.lst
    title Arch Install
    root (hd0,8)
    kernel /isolinux/vmlinuz load_ramdisk=1 prompt_ramdisk=0 root=/dev/rd/0
    initrd=/isolinux/initrd.img
    This should be self-explanatory.  The root (hd0,8) is pointing to partition 9.  So the rest of the commands start from partition 9. 
    When you experience problems, remember you can always edit the grub boot options by typing 'e' and then edit the section.  Also, a good idea is to include several variations in your menu.lst so you can easily try other ways to boot efficiently.  And, remember to read up on all the installation guides that come with your distro, specifically, hard-disk installs. 
    There are special cases, Gentoo, has a semi-new compressed filesystem called squashfs.  BTW, this is AWESOME, so check it out.  It has to be compiled into the kernel, so some work is in order, but use this recompile to optimize your kernel.  You can get the squashfs patch for almost any kernel.  I use the latest stable 2.6 kernel.  Squashfs is incredible and although I don't think you need it to install from ISO, you do need it to expand the livecd.squashfs filesystem that comes with the cd.
    Heres a sample Gentoo section from my menu.lst
    title Gentoo Install
    root (hd0,8)
    kernel /isolinux/gentoo root=/dev/ram0
    initrd=/isolinux/gentoo.igz init=/linuxrc acpi=off looptype=squashfs loop=/livecd.squashfs cdroot vga=791 splash=silent
    A nother' tip is the shell that is provided if you experience problems, typically busybox or ash.  The key tools to get you going from here is mount and chroot.  Sometimes you will need to manually create a simulated file system and then chroot into it.  For instance, you might have to create boot, etc, bin, directories on the target partition. 
    I generally install each OS onto the next partition (careful of the logical partition) and add it to my menu.lst after install.  A good idea is after installation, copy the kernel and initrd(if there is one) to the slackware(or whatever) boot partition on hda1.  I copy kernels to /boot/KERNEL/ and initrd's to /boot/INITRD, then menu.lst is more organized...
    You then need to add an updated section to your menu.lst (just comment out the install section for later)
    Here is the finished arch-linux section from menu.lst
    title Arch Linux 6
    root (hd0,2)
    kernel /boot/vmlinuz26 ro root=/dev/hdc3
    This doesn't use my convenient boot/KERNEL/vmlinuz26 as you can tell by setting the root to partition 3.
    ***NOTE: Make a backup of MBR using dd and save to floppy, also backup the partition table to floppy, using cfdisk or parted.  And boot disks (I use 1 with grub, and 1 with slack, and tomsbootdisk) will invariably come in handy.  Tomsbootdisk is recommended, and make the grub boot disk when you install grub.  install to floppy.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    The final result after some fun experimenting, is when I boot, I have a cool grub boot screen come up with the option to boot into whatever OS I want, this is handy for multiple reasons.  One good thing to do after this is to port scan and vuln scan each OS, after you update of course.  Write this stuff down and you will know the weaknesses/strengths of the various OS's. 
    I can boot a custom Firewall, snort, or multiple honeypots using this procedure, as well as a graphical kde environment with a kernel optimized for graphics and my processor/architecture, or an environment devoted to forensics or even an environment suitable for programming.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    P.S. Some of the cooler alternative operating systems are BeOS 5, EOS, ER_OS, V2_OS, and my personal favorite Menuet.  Menuet is 100% assembly graphical operating system that fits on a floppy.  Its f'in money!
    This should be a good enough example to get you started, this kind of thing should be learned and not just copied... Knowing how to do this stuff could prove to be exceptionally useful...

    Start by reading all the articles built-in on your Mac - Help > Mac Help, search "printer sharing."
    http://desk.stinkpot.org:8080/tricks/index.php/2008/04/how-to-print-to-a-cups-se rver-from-mac-os-x/
    http://www.macosxhints.com/article.php?story=20080324224027152&query=share%2Bpri nter
    http://members.cox.net/18james/osxprintersharing.html
    http://ubuntuforums.org/archive/index.php/t-56940.html

  • Error loading operating system after installation of Linux AS4

    Hi,
    I have Hardware HP DL580 G3 server attached with SAN.
    I just installed Linux AS4, installation went fine and successufly installed, upon rebooting of server it is giving following error.
    attempting from Hard Drive (C:)
    Error Loading Operating system
    Please help me out

    First: did you install the bootloader in the MBR (it's a question during the installation), so the server is able to boot linux automatically?
    "C:" is a typical MSDOS naming (and windows naming), which probably means the dos/windows bootloader is still in the MBR (master boot record)
    If not, reinstall linux and install grub (preferably) in the MBR

  • IPhone with multiple operating systems (win/mac)

    Does the iPhone have any problems switching between operating systems? ie: if it's used for a few months with iTunes on a PC and then you switch to iTunes on a Mac, will there be any problem moving over all the contacts, music...etc?
    I remember some of past iPods had issues that once they were "formatted" for one OS, you couldn't really use them with a different one without wiping them clean and starting over.

    The iPhone has it's own OS, and syncing between Macs and PCs is not a problem. There's no formatting issue involved.

  • Share firefox profile across multiple operating systems.

    I've recently installed windows 8 on a VHD (my main OS is Windows 7) and I was wondering if it was possible to share the same firefox profile on both operating systems. I have the profile manager from [http://ftp://ftp.mozilla.org/pub/mozilla.org/utilities/profilemanager/ ftp://ftp.mozilla.org/pub/mozilla.org/utilities/profilemanager/], but when I tried to make a new profile at the location of my main profile, it instead made a subdirectory under my main profile. Is there anything I can do to share the profile between the two? I could always use sync, but I would like to share my addons, if possible.

    * Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Profile_backup

  • Multiple operating system crashes- the computer has rebooted from a bugcheck

    For last couple of months I have been facing multiple crashes every day. Looking for help diagnose it. The memory dump file is 797 MB. Is there an option wherein I can make any sense out of it under guidance from community here- or should i simply try
    a clean install of win 8.1

    Hi grensmoothie,
    Any update here?
    You may follow the guide posted by Team Zigzag (http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_update/warning-disabling-the-new-windows-update-ui-may/dc846517-eca0-4960-b0ff-1eb7227223f5),
    For BSOD related issue, we do need the dump file to give a proper suggestion.
    Besides, if you would like to debug the dump file by yourself, you may follow the WIKI article below:
    Windows Bugcheck Analysis
    Best regards
    Michael Shao
    TechNet Community Support

  • New computer, new operating system, no installation software

    I previously had my WRT54G router configuration software installed on my XP-based laptop, which recently died. I replaced that laptop with a MacBook (Macintosh). I am now unable to locate the installation software. Can I use my new MacBook to control my router (my sons' computers are connected, wired and wireless)? If so, can I get the software online, and is it compatible with Mac?

    richard Cook wrote:
    Can I use my new MacBook to control my router (my sons' computers are connected, wired and wireless)? If so, can I get the software online, and is it compatible with Mac?
    Control meaning act as a network administrator? Then yes. You can do it even from a Mac (it just have to be connected the network first). However, it's always best to practice changing your router settings from a computer that is wired to the router. And as mentioned, there's no software needed for Macs. Just access the router's management page from a browser (default address is http://192.168.1.1).

  • Intel Platform Operating System / Software Installation Guide

    http://www.amdforums.com/showindex.php?s=&threadid=257841
    a good read for all new comers

    Kingfisher
    they have started an intel section
    http://www.amdforums.com/forumdisplay.php?s=b91d41d74fdc1c97c68c07439466a642&forumid=61
    and Mr Steveo converted to the darkside a while back,he was running their msi motherboard section for a long time
    and he infact wrote many of the amd guides in this thread
    http://www.amdforums.com/showindex.php?s=b91d41d74fdc1c97c68c07439466a642&threadid=208146
    if fact his guides are also posted here as regards the amd chipsets
    http://www.msi.com.tw/program/service/forum/index.php?threadid=104&boardid=16&styleid=1
    http://www.msi.com.tw/program/service/forum/index.php?threadid=106&boardid=16&styleid=1
    are in good articles on page 2

  • Cluster of Data Service servers on multiple operating system

    Hi All,
    Does Data Service support deployments in different OS  but in one cluster?
    E.g.
    One server in Windows and one server in Unix but connecting to same repository to form a cluster?
    Thanks,
    Bobby

    YES, jobservers from different OS's can connect to the same repository.
    YES, these jobservers from different OS's can be in the same servergroup (I guess that is what you mean with "cluster") for load balancing & failover.

  • Boot camp Multiple operating systems

    I need to install both Windows EXP and Vista on my mac has any one tried it and how did you do it

    Hi Kev,
    see here: http://www.windowsonthemac.com/forums/index.php?showtopic=2
    Good Luck
    Stefan

  • Installation of MII 12.1 on AIX 5.3 TL8 Operating System

    Hi All,
    I think Ramp-up for MII 12.1 is nearing its end and MII 12.1 getting ready for release.
    One of our client wants to install MII 12.1 in AIX 5.3 TL8 Operating System.
    since installation guide for 12.1 is not yet released i went through the installation guide of 12.0 but could not find detailed installation procedure for AIX Operating System.
    Installation guide was based on windows 2003 server.
    so can anyone help me out with the detailed procedure for installing MII 12.1 in AIX operating system.
    Assumption is that NW CE is already installed.
    Thanks in advance
    Shyam

    hi shyam,
      i have the copy of the installation guide for sap mii 12.1. I am not sure whether that can be installed on the aix operating system or not. however, you can get the installation guide from sap marketplace .. i have downloaded the guide from the service marketplace.
    Hope it helps !!!
    Thanks,
    Amit

  • Force language same as operation system when install adobe reader X

    We need to install adobe reader x English version or French version depend on language of user's operation system.
    I know i can change langue to force it same as operation system after installation, it can be found Edit, pererfernce,language.
    Is there anyway to force the option " same as operatio system" during operation system?
    I installed adobe reader x silently using command:  msiexec /qb- /i "adberder1000_fr_FR.msi" ,
    Is it possible to add abswitch /g langueID in the command line to force language same as OS language? How can I retrieve default OS langugeID?
    thanks

      I have multiple problems with Windows 7 Professional x64 & the Adobe products installed on my machine (English).
    I have a dual processor Intel Duo Core2 -  Dell Lattitude E6400XFR,  running Windows 7 Professional x64 Service Pack 1(English).
      Adobe, & Adobe Reader are installed properly & function okay for the most part, save for the very newest & fanciest of documents. Mainly, the issue I have is that Adobe/Reader are constantly attempting to update, & are able to download a version recognized as newer than the current version installed, then will not install completely or at all. Once that occurs it will then immediately demand to be updated by this newer version. It's a crappy loop that I have become familiar with & is lame.
      Either Adobe & Adobe Reader are problematic with Windows 7 Professional x64 SP1 ENGLISH, or this dual processor Intel motherboard is the problem. The latter doesn't seem likely however, I have identified multiple problems with drivers & whatnot that do not function well or properly solely due to the motherboard. My Nvidia On Board GPU & the drivers & software would be the prime & most annoying example of something that hates my motherboard.
    I hope this isn't "Hijacking" your post, I am having a problem that sounds similar to yours, the international/localization issue(s) notwithstanding.
    ~Joe Dane

  • Solaris 10 dual Operating system

    I have computer has windows operating system, and I want to install Solaris on one of partition,
    I don't have only one hardisk.
    any one can please help me about that
    thanks,

    I can't recommend this strongly enough: get a removable hard drive tray that fits in any 5-1/4" bay. You then can put a different hard drive in each tray and cold swap them whenever you want to change operating systems. It will add at most 10 seconds to the process of rebooting and allows your operating system to be on completely independent drives.
    Want to boot Solaris? Shut down, slide out the Windows drive, slide in the Solaris drive, power on.
    Want to reinstall the operating system? Just go ahead. The boot drive is its own, so there's no need to worry about the "other" partition.
    A kit to do this (assuming that you have two available boot drives) costs about $40 total (one bay and two drive trays) depending on the brand and it eliminates the need for a partition manager entirely. I have this on three of my PCs and it's a god-send for running multiple operating systems, or even multple instances of the same operating system.

  • Operating system support for km

    I want to know if knowledge management and collaboration have multiple operating systems support. Please help

    Yes, they do (it's a Java based server, after all). See also https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=/forums/sdn_jive_forums/thread{74687265616449443d313435333535}.jspa.
    Best regards, Julian

Maybe you are looking for

  • How can i get my music library back, after my ipod and laptop are stolen? can anyone help

    well about 2 months ago someone break in to my house and stole my laptop, ipod and some other stuff. I have just got a new ipod and laptop. is there anyway that apple can get my songs back or something?

  • How to use PooledConnection

    Hi all This problem can look funny to lot of you. I have project where i use Java on server side to perform some operation with MySQL. I have created connection to MySQL but there will be lot of users and connecting to database like i have done is no

  • Compile Error Windows is missing

    After compiling a Package Body that is invalid, i can't see the error-window. The View-Log Window Menu has no effect. What's wrong ? Anhancement: More than one filter Regards Uwe

  • Dynamic update  of cursor records when table gets updated

    Hi, I am having a table with 4 columns as mentioned below For a particular prod the value greater less than 5 should be rounded to 5 and value greater than 5 should be rounded to 10. And the rounded quantity should be adjusted with in a product start

  • If I buy an Ipad 2 in USA can I use 3G in Mexico?

    I want to buy an Ipad 2 WiFi + 3G in California and I have red that the at&t version has a GSM type that works in many countries. Mexico in particular? I think it does but I want to be sure before buying it.