Success with VNC Accesing 2 Computers on Netork?

Hi Everyone,
Has anyone had success using VNC and being able to access 2 separate computers on their Linksys network?
I understand that this should be able to be accomplished by going into the port forwarding section of the router setup screen and forwarding a different port for each computer using the computer’s internal, static IP address.  
I’ve found a few messages of people having problems doing this, but didn’t come across any who reported they were finally successful with this setup.
I’ve been trying to accomplish this using PCAnywhere, but after spending 2 hours on the phone working with one of Symantec’s own techs, who couldn’t get this to work, I am ready to give up on PCAnywhere and am thinking about giving VNC a try.
Any feedback and experiences with this would be greatly appreciated.
Thanks,
Brian

Correct. You can only forward a single port once. The router also does not do port redirection which means you must use different ports on the computers.
For example:
Computer 1, 192.168.1.31, uses server with port 7000.
Computer 2, 192.168.1.32, uses server with port 7001.
Computer 3, 192.168.1.33, uses server with port 7002.
Now you forward port 7000 on the router to 192.168.31, 7001 to 192.168.1.32 and 7002 to 192.168.1.33.
The important thing is to reconfigure the server on the computer to use different ports as well. You must also make sure to open the port in the firewall of the computer if it runs any.
See here for a more complete checklist regarding port forwarding issues.

Similar Messages

  • Connect to VM console directly with VNC client

    I used to be able to connect to a VM's console with the VNC client by logging onto the OVM server where the VM was running and discovering what port the VM's VNC server is listening on (xm list -l | grep location). Now it seems that doesn't work anymore. Is there still a way to do this with OVM 3.1.1?

    It appears they have disabled this feature in 3.1
    If you look at the vm.cfg file on an old 2.x server it is of the format
    bootloader = '/usr/bin/pygrub'
    disk = ['file:/var/ovs/mount/3D2FD7081A3D49FCBA309AF1316E028F/running_pool/212_ThisServer/System.img,xvda,w',
    'file:/var/ovs/mount/3D2FD7081A3D49FCBA309AF1316E028F/running_pool/212_ThisServer/thisDisk_1.img,xvdb,w',
    disk_other_config = []
    maxmem = 2048
    memory = 2048
    name = '212_ThisServer'
    on_crash = 'restart'
    on_reboot = 'restart'
    uuid = 'f1bb3127-751f-4224-b348-5f7f3bc0d30a'
    vcpus = 2
    vfb = ['type=vnc,vncunused=1,vnclisten=0.0.0.0,vncpasswd=thispassword']
    vif = ['bridge=xenbr0,mac=00:46:3E:79:C2:9F,type=netfront']
    vif_other_config = []
    Then on a 3.1 vm.cfg
    vif = ['mac=00:21:26:45:22:68,bridge=192.168.64.0']
    OVM_simple_name = 'XP Base Install'
    vnclisten = '127.0.0.1'
    disk = ['file:/OVS/Repositories/0005dbc00003ba00125c62ddc69f963a/VirtualDisks/0005dbc000120000caecb0faa3a25145.img,xvda,w', 'file:/OVS/Repositories/0005dbc0000300003ba20155bc480b24/ISOs/0005dbc0001500003442da06ad201438.iso,xvdb:cdrom,r']
    vncunused = '1'
    uuid = '0005dbc0-0006-0000-d77c-20e2f718bdd0'
    on_reboot = 'restart'
    boot = 'dc'
    name = '0005dbc000060000d47830e2f718bdd0'
    cpu_weight = 27500
    memory = 2048
    cpu_cap = 0
    maxvcpus = 1
    OVM_high_availability = False
    maxmem = 2048
    vnc = '1'
    OVM_description = ''
    on_poweroff = 'destroy'
    on_crash = 'restart'
    guest_os_type = 'windows'
    usbdevice = 'tablet'
    builder = 'hvm'
    vcpus = 1
    keymap = 'en-us'
    OVM_os_type = 'Other Microsoft Windows'
    OVM_cpu_compat_group = ''
    OVM_domain_type = 'xen_hvm'
    I have tried replacing
    vnclisten = '127.0.0.1'
    with
    vnclisten = '0.0.0.0'
    and it opened up the port but I could not connect successfully with tightVNC. Tight VNC appears to make a connection but you cannot see anything.
    You can see what ports by running a 'netstat -nat' on the VM server (command below I removed unimportant results)
    [root@ovs-c9-28-2c VirtualMachines]# netstat -nat
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address Foreign Address State
    tcp 0 0 127.0.0.1:5900 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:5902 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:6900 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:6901 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:6902 0.0.0.0:* LISTEN
    As you can see above the port 5902 is listening while the others are set to localhost and used by the VM Manager for VNC connections.
    I also tried adding in the vncpasswd line like below and was prompted for a password but the VNC session failed. Note it also broke the VNC access from the manager.
    vnclisten = '0.0.0.0'
    vncpasswd = 'letmein'
    That said Oracle do not support manual modification of the vm.cfg file (unless pinning CPUs) so going in there is probably not a good idea.
    I think the only solution is to install a VNC server on the VM directly.
    Edit:
    Further to this you will note that there are also ports 6900 - 6902 which are definitely related to the VNC connection. I tried connection to these ports with no success however.
    It appears the manager is acting as a tunnel for the VNC as when I have a valid connection (from manager) to the server on port 5901 I see the following
    [root@ovs-c9-22-2c VirtualMachines]# netstat -nat
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address Foreign Address State
    tcp 0 0 127.0.0.1:9020 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:7901 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:7903 0.0.0.0:* LISTEN
    tcp 0 0 192.168.64.125:7777 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:8002 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:8899 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:8003 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:5900 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:5902 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:753 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:6900 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:6901 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:6902 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
    tcp        0      0 192.168.64.125:6901         192.168.64.120:44014        ESTABLISHED
    tcp 0 0 192.168.64.125:37298 192.168.64.64:3260 ESTABLISHED
    tcp 0 0 192.168.64.125:8899 192.168.64.125:41445 TIME_WAIT
    tcp 0 0 192.168.64.125:8899 192.168.64.125:41454 TIME_WAIT
    tcp 0 0 127.0.0.1:46117 127.0.0.1:5901 ESTABLISHED
    tcp 0 0 192.168.64.125:8899 192.168.64.125:41448 TIME_WAIT
    tcp 0 0 127.0.0.1:9020 127.0.0.1:56940 ESTABLISHED
    tcp        0      0 127.0.0.1:5901              127.0.0.1:46117             ESTABLISHED
    tcp 0 0 192.168.64.125:8899 192.168.64.125:41456 TIME_WAIT
    tcp 0 0 127.0.0.1:56940 127.0.0.1:9020 ESTABLISHED
    tcp 0 0 192.168.64.125:8899 192.168.64.125:41450 TIME_WAIT
    Then a netstat on the manager shows the pipe is definitely connecting through 6901 (on server) and 15901 (on manager)
    Notable IPs
    Machine I am VNCing from 192.168.64.50
    VM Manager 192.168.64.120
    VM Server 192.168.64.125
    I have bolded the connections that disappeared after disconnecting the VNC connection.
    [root@manager ~]# netstat -nat | grep .50
    tcp 0 0 192.168.64.120:22 192.168.64.50:58858 ESTABLISHED
    tcp 0 52 192.168.64.120:22 192.168.64.50:50838 ESTABLISHED
    tcp 0 0 ::ffff:127.0.0.1:63350 ::ffff:127.0.0.1:54321 ESTABLISHED
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.50:53327 ESTABLISHED
    tcp 0 0 ::ffff:127.0.0.1:54321 ::ffff:127.0.0.1:63350 ESTABLISHED
    tcp        0      0 ::ffff:192.168.64.120:15901 ::ffff:192.168.64.50:49503  ESTABLISHED
    [root@manager ~]# netstat -nat | grep .125
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46983 TIME_WAIT
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46976 TIME_WAIT
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46986 TIME_WAIT
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46977 TIME_WAIT
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46982 TIME_WAIT
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46978 TIME_WAIT
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46974 TIME_WAIT
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46981 TIME_WAIT
    tcp        0      0 ::ffff:192.168.64.120:44014 ::ffff:192.168.64.125:6901  ESTABLISHED
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46985 TIME_WAIT
    tcp 0 0 ::ffff:192.168.64.120:7001 ::ffff:192.168.64.125:46987 TIME_WAIT
    Edited by: phoenixdigital on Sep 24, 2012 4:30 PM

  • I just purchase a brand new mac computer and I need to purchase new adobe CS software. Do you know if Adobe CS5 Design Premium-MAc is compatible with new mac computers with the updated software?

    I just purchase a brand new mac computer and I need to purchase new adobe CS software for work. Do you know if Adobe CS5 Design Premium-Mac is compatible with new mac computers with the updated Yosemite software? *No previous adobe CS software versions are on this computer

    There are known technical issues with any older version on Yosemite, even CS6. Some can be worked out, others may not be relevant to you, some will remain unsolved.
    Mylenium

  • I have a MAC Pro from 2011 currently running MAC OS 10.9.5.  This weekend I cloned the MAC HD drive to a new SSD drive for improved performance.  The clone was completed successfully with no errors.  After the clone completed I successfull restarted my sy

    I have a MAC Pro from 2011 currently running MAC OS 10.9.5.  This weekend I cloned the MAC HD drive to a new SSD drive for improved performance.  The clone was completed successfully with no errors.  After the clone completed I successfully restarted my system using the SSD as the boot device.  I then successfully tested all of my products, including Photoshop CS6 and all of its plug-ins.  I successfully tested the key features that I frequently use.  Today while attempting to launch Photoshop CS6 a message is being displayed indicating that a scratch disk cannot be found.  All drives are available on the system via the Finder and Disk Utility.  I can access all drives including the old MAC HD which is no longer the boot device.  I've even attempted to launch Photoshop from the old device yet the same error persist.  Is there a way to review/edit/change Photoshop preferences if Photoshop doesn't launch?  I've even restarted my system several times to see if that would resolve the issues.  Does anyone have any recommendations for this issue?  Have you previously address this issue? 
    Thank you Gregg Williams

    Boilerplate text:
    Reset Preferences
    http://forums.adobe.com/thread/375776
    1) Close the program and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (not reversible)
    or
    2) Move the Folder. See:
    http://www.bugge.com/Family-and-friends/Illy/illy.html
    --OB

  • Success with adding an external eSATA drive to a Verizon FIOS DVR

    August 4, 2012 - Success with adding an external eSATA drive to a Verizon FIOS DVR
    I just upgraded from a Comcast DVR to a Verizon FIOS DVR.   I upgraded because my old DVR was limited to 500GB (1/2 TB) on the internal drive and the new FIOS DVR allowed for a much larger external eSATA drive.   Selecting a viable external drive for the FIOS DVR was easier said than done.  The three drives listed on the Verizon web site as compatible with FIOS DVRs are no longer manufactured by western digital and are not available on the market.
    The DVR that I received from Verizon was a Cisco "CHS 435 HD DVR" that came with a 500GB (1/2 TB) internal drive.   This is one of their "Multi-Room DVRs" that allows other set top boxes (not DVRs) to watch videos recorded on it.
    I selected a western digital "WD30EURS" eSATA disk drive because it was a follow on product to one of the three listed as acceptable by Verzion on their web page and it was 3TB in size.  I ordered from amazon.com for $170.99.  This drive is a "bare drive" so it does not come with an external encloser or a eSATA cable.  
    According to the Western Digial web site this is a AV-GP drive:  "These drives are designed to last in high temperature always-on, streaming digital audio/video environments such as PVR/DVR, IPTV, and video surveillance systems."
    http://www.wdc.com/wdproducts/library/AAG/ENG/2178-771131.pdf 
    I got a "Macally G-S350SU Hi-Speed eSata/USB2.0 External Storage Enclosure for 3.5inch SATA HDD" to hold the drive for $34.39.  I chose this one because it does not use a fan that could cause continious noise.  The box is made out of metal so it cools itself as long as it is exposed to air (not covered up).  This box comes with an external power supply that has a small transformer that plugs into a wall outlet.
    Then I needed a eSATA cable.  I got a "StarTech 6-Feet Shielded External eSATA Cable M/M (ESATA6)" for $6.50 and a 3-foot version for $5.90.  I went with the longer one so that the cable would be less likely to become accidentally unplugged if I need to move the drive or the DVR.  The cables and the drive houseing came from the same Amazon provider so it saved me on shipping. The drive came from Amazon/Western Digial directly but they do not have external housings or eSATA cables on that site.
    The total cost was $255.56 including shipping for all these items.  
    I went with the largest (3TB) drive from western digial's AV-GP line to avoid a future upgrade from a smaller drive to a larger drive.   There is no way to copy videos from one external eSATA drive to another drive because they are formatted by the FIOS DVR in a propriatary format.  That would mean that any future upgrade would require losing all recorded files during an upgrade.  That also means that there is no way to back up the contents of the drive to protect yourself from hard drive failure.
    The installer who setup the DVR did not want me to plug in the drive while he was there and explained that I was on my own when I attached this kind of personal device to the DVR.  When I plugged in the new eSATA drive it was automatically discovered.  I was asked by the DVR if I wanted to format the new drive.  I answered yes and within 2 hours the drive completed formatting.   I did not watch the boring format so it could have finished faster.   
    When I started recording new videos they go directly to the external drive automatically and avoids the internal drive.  It had no trouble recording two HD shows and playing a recording at the same time.  I now have 20 hours of HD video recorded and the 3TB external drive is 17% full.  So far my experience with the external drive has been great.   No problems or issues.   Learning the new remote control, new DVR menu system, and web browser control of the DVR from a laptop is another story.  It will take some time to figure out how to make all the new features work.
    It took me a while to figure out how to make this work since the verizon web site made useless suggestions and pointed me to products that are not available any more.  I could not tell if this really would work until I plugged it in and then I was pleasantly suprised that it did.  I have had this working for 3 days without any issues.  I hope this post makes it easier for you to add an external eSATA drive to your DVR.
    Here are the three items ordered from Amazon to make this work:
    Western Digital 3 TB AV-GP 3 TB SATA 2 Intellipower 64 MB Cache Bulk/OEM 3.5-Inch Internal Bare Driv...
    Macally G-S350SU Hi-Speed eSata/USB2.0 External Storage Enclosure for 3.5inch SATA HDD
    StarTech 6-Feet Shielded External eSATA Cable M/M (ESATA6)

    You are right. I can only access 2TB of my 3TB external drive. That gives me a total of 2.5 TB counting the internal (0.5 TB) and external (2.0 TB) drives. This is a significant improvement over the just the 0.5 TB internal drive. I have not been able to find a reason for this limitation. Cisco and Verizon do not mention any limits that I can find. I hope that a future BIOS upgrade could provide access to more space but this would probably require me to reformat the drive and lose everything recorded.
    I paid $170.99 for the 3 TB WD30EURS drive at amazon. I could have gotten away with spending only $116.99 for the 2 TB WD20EURS drive. Not worth returning at this point so I will stay with it. Makes me glad I didn't buy the most expensive 6 TB external  monster drive available from another company.
    I bought: 3TB drive: Western Digital 3 TB AV-GP 3 TB SATA 2 Intellipower 64 MB Cache Bulk/OEM 3.5-Inch Internal Bare Drive WD30EURS by Western Digital
    I could have bought: 2TB drive: Western Digital AV-GP 2 TB SATA II Intellipower 64 MB Cache Bulk/OEM Internal Hard Drive - WD20EURS by Western Digital
    Details of what I learned:
    The external 2 TB drive now has 41 hours of HD video recorded and claims to be 34% full (66% free). My estimate would allow me to have aprox 120 hours of HD on the external drive (2TB) and 30 hours of HD on the internal drive (500GB) for a total of 150 hours of HD. This will keep me happy for the near future.
    There is a hidden "diagnostic menu" that is not normally accessible or documented by CISCO or Verizon. This menu has a lot of interesting info on the inner working of the DVR. There was an obscure reference to this menu on another forum.
    To access this diagnostics menu:
    1) Get the DVR into normal live tv mode (no menu, no guide, no pause ...)
    2) Go to the Cisco CHS 435 HD DVR (not the remote control) and press these buttons on the front of the DVR: Press both the Left Arrow "<-" button and "OK" button at the same time and hold them both down for aprox 5 seconds.
    3) The "Verizon FiOS TV Diagnostics Menu" menu will appear. The menu can then be used by the remote control.
    4) I chose "D03 Memory / HDD" and then "Hard Disk Information" and finally "OK"
    A five page disk report appeared. With a little bit of interpretation I discovered:
    The Internal Drive is know as "drive 1/hdc1" has 461 GB total space with 454 GB free.
    The External Drive is split into two partitions "hdc2" and "hdc3" (aka two mount points).
    "drive 2/hdc2" has 1007 MB total with 317 GB free
    "drive 3/hdc3" has 1007 MB total with 974 GB free
    The normal DVR menu has an "Eject" feature that allows you to stop the external drive and make it safe to remove it from the DVR without losing anything via an unplanned drive removal. This can be found at "DVR" button on remote then "Settings"->"External Hard Drive"->"Eject".

  • Order by in MATERIALIZED VIEW not work successfully with first column (ID)

    Dears,
    I am trying to create a Materialized View as below:
    CREATE MATERIALIZED VIEW HR.MV_EMP
    PCTFREE 10
    MAXTRANS 255
    TABLESPACE users
    STORAGE (
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    BUILD IMMEDIATE
    REFRESH ON DEMAND
    AS
    SELECT *
    FROM employees
    where rownum < 5000 order by employee_id desc ;But while querying the MATERIALIZED VIEW, it did not work successfully as the data did not appear in the accurate order.
    I tried to create the same MATERIALIZED VIEW but order by another column (Column Date), it worked successfully and the data appeared in the accurate order.
    It means that MATERIALIZED VIEW not work successfully with the first column (id).
    Can you please help me in this ?
    Thanks & regards,,

    A few pointers :
    1. As has been pointed out, the ROWNUM has been incorrectly placed. ROWNUM values are assigned as rows are fetched from the source before the ORDER BY. You need to ORDER BY first (in a SubQuery) and then ROWNUM afterwards (outside the SubQuery).
    2. I wonder why you want only the last 5000 EMPLOYEE_IDs. What if Employee_ID 1 is still an active employee (he is the founder, first employee and CEO ?). There could be very many "low" EMPLOYEE_IDs that are still active.
    3. Logically I would expect some filter other than the ROWNUM ... ORDER BY to be used to select candidate rows. Then, an ORDER BY in the CREATE query would be unnecessary.
    4. When querying the Materialized View you must explicitly ORDER BY (irrespective of whether you did or did not do an ORDER BY in the CREATE ...)
    5. How do you expect to refresh the MV ? Will it always be a COMPLETE Refresh ? Remember that your "5000 employees" filter would likely exclude older employees at the next refresh. If you use some other filter, it should be consistent across all refreshs.
    Hemant K Chitale

  • When i try to install my copy of photoshop elements 1.0.1 , get the answer to install internet explorer 4.0 or more, but i use the firefox browser. by the way, the internet explorer installation was not successful with my windows 8. What can I do?

    when i try to install my copy of photoshop elements 1.0.1 , get the answer to install internet explorer 4.0 or more, but i use the firefox browser. by the way, the internet explorer installation was not successful with my windows 8. What can I do?

    Photoshop Elements 1.0.1 seems like very old software 2001 I believe.  Try asking in the Elements maybe someone there will be able to answer your question. Photoshop Elements

  • Problems to connect with VNC to headless mac mini after sleep mode

    Hallo,
    I've a Mac Mini (late 2009) setup with Lion Server. I want to use it without mouse/keyboard/monitor attached. Since I want to safe power ( green IT ;-) ), I would like to use sleep mode.
    First thing I've learned is, that Lion Server prevents the mini to go to sleep after an idel time as set in power saving.
    The only thing that works, is setting up a shedule with sleep / wakeup times.
    When I start the mini, everything works great. I can connect via VNC. The Mini goes to sleep at the scheduled time and wakes up again as expected.
    From this time on, things begin to get strange:
    I can connect using VNC, but all i get is a grey screen with a moving cursor. So VNC is working, but there is no screen available on the Mini. Same if I use thightVNC from a Windwos PC. Get a grey screen.
    Further the system does NOT go to sleep at scheduled times any longer.
    I was able to track down the problem to the missing monitor: If the Mini wakes up without a monitor connected, I seems to wait to get the right resolution or what ever. All servives are working, SSH is fine even VNC works, but shows only a grey screen.
    I've been playing with attaching / detaching a monitor. Sometimes I got:
    - Boot with monitor
    - connect with VNC, see login screen
    - send Mini to sleep
    - disconnect monitor
    - wakeup Mini
    - VNC reconnects, showing grey screen
    - plug in monitor and wait until login screen appears on the monitor
    - VNC switches from grey to login screen
    The only way I can save some energy is a sheduled shutdown / restart. So headless works, but not after waking up from sleep.
    Any hint or solutions for this ?
    Thanks
    Marc

    Look in the security feature.  This is a link to the FAQ (step 6):  http://support.apple.com/kb/PH4014?viewlocale=en_US
    I had the same issue when I connected my Mac Mini to be a Media Server.
    /r
    C.

  • HT4060 iPad will not charge if hooked by USB to pc or plugged into wall.  How do I know if the problem is with iPad, cable or power adapter.  I have a 12, 10 and 5W adapters no success with any.  Only one lightening cable so can't swap cables.

    iPad will not charge if hooked by USB to pc or plugged into wall.  How do I know if the problem is with iPad, cable or power adapter.  I have a 12, 10 and 5W adapters no success with any.  Only one lightening cable so can't swap cables.

    I'm sorry but this is too funny to pass up. 

  • I am trying to use apple configurator with ipads. I have been successful with all our ipads but 1. It will not allow me to add apps. The error I get is that it is refreshed but with errors e

    I am trying to use apple configurator with ipads. I have been successful with preparing and supervising all ipads but one. When preparing it in configurator, I receive an error that it is refreshed but with an error. Under supervise, I am not able to add apps. I have erased all content to start over but this does not work either

    Are you trying to restore a backup, or just sync some apps? Do you have profiles installed on the device?
    Have you plugged the ipad into iTunes, and did a fresh install? I'm assuming the device went through the prepare setup properly. You many have to unsupervise it first, then plug it into iTunes to wipe it completely.
    I'd then do each step seperately. Prepare it, then install 1 app, if that works, try another app, then maybe a profile.

  • Is anyone having success with Alternatives Feature

    Hi There Guys,
    Since Logic Pro X arrived I have been using it and I really like it... I have been attempting to use Alternatives in my workflow since the feature arrived and with every update of Logic and OS X I am trying it again... But alas the problem is always the same. I am getting a SWOD whenever I try to use it.
    I can create the alternative and begin working in the new alternative but whenever I want to switch between alternatives I am getting the SWOD and the console is over flowing with
    12/02/15 23:40:38,872 Logic Pro X[21145]: dynamic_cast error 1: Both of the following type_info's should have public visibility.  At least one of them is hidden. 16WCParamExtension, 30WCParamExtensionDynamicMarkers.
    Then I have to force quit the app and re-open it.
    I have not once had any success with this so called feature and at this point I am beginning to wonder whether others in here are having the problems I am having.
    I have a few colleagues of mine which are using Logic Pro X but NOT using the Alternatives feature. I went to their place and there too the SWOD is appearing all the time when switching between alternatives...
    I have no clue what to do here... So if any of you have a solution on how to get this to work... Please drop me a line
    Thank You
    I am on 10.10.02 and a Fully Loaded rMBP 2014

    Thank you. We're getting close but this command created an error itself below.
    What should I do?
    rs-MacBook-Pro:sylpheed-3.0.1 r$ autoreconf -fvi
    autoreconf: Entering directory `.'
    autoreconf: configure.in: not using Gettext
    autoreconf: running: aclocal --force
    configure.in:153: warning: macro `AMPATHGPGME' not found in library
    autoreconf: configure.in: tracing
    autoreconf: running: glibtoolize --copy --force
    glibtoolize: putting auxiliary files in `.'.
    glibtoolize: copying file `./ltmain.sh'
    glibtoolize: Consider adding `ACCONFIG_MACRODIR([m4])' to configure.in and
    glibtoolize: rerunning glibtoolize, to keep the correct libtool macros in-tree.
    glibtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    configure.in:153: warning: macro `AMPATHGPGME' not found in library
    autoreconf: running: /opt/local/bin/autoconf --force
    configure.in:153: error: possibly undefined macro: AMPATHGPGME
    If this token and others are legitimate, please use m4patternallow.
    See the Autoconf documentation.
    autoreconf: /opt/local/bin/autoconf failed with exit status: 1
    rs-MacBook-Pro:sylpheed-3.0.1 r$ libiconv.2.4.0.dyliblibiconv.2.dyliblibiconv.dylib
    -bash: libiconv.2.4.0.dyliblibiconv.2.dyliblibiconv.dylib: command not found
    rs-MacBook-Pro:sylpheed-3.0.1 r$

  • Has anyone had had success with Time Machine and Airport Express 6th gen?

    For the last six months I have attempted to use the Time Machine product to provide first level backup for my two MacBook Airs and iMac.  Tryed a number of powered USB drives, tryed all of the current 10.8, 10.9 OSX software.  The Time Machine product seems to work for about a month to six weeks and then fails with message about the file integrity or access problems.  In all cases I can acess files on the drive and the only application that struugles with the AE usb drive is Time Machine.
    You would think that if it works for a month it should work for a year?
    I have purchased Carbon Copy Cloner and it seems to function without a problem and I think that I am probably better off with a once a day clone than a Time Machine with data integrity problems.
    Has anyone had long term success with Time Machine and AE sixth gen?

    You are connecting a USB hard disk to the new 802.11ac AirPort Extreme, not an Express, correct? If so, it works fine with both bus powered and self-powered drive enclosures, and I have no immediate explanation for what's going on.
    You would think that if it works for a month it should work for a year?
    Yes, besides the passage of time the only thing that is changing is the amount of available space on the backup volume, which could be a factor. Are you using separate drives for each Mac, or are they all being backed up to the same drive? If it's only one drive, is it partitioned or are they all sharing a single partition?
    Are you sharing backup volumes with other, non-Time Machine files? That shouldn't cause the problem, but it's not a good idea. 
    What errors are being logged in system.log? Filter for backupd to find all Time-Machine related entries.

  • Import Successful with warnings....ORA-01658 error..

    Friends,
    OS: RHEL AS 3.0
    DB: Oracle 9iR2
    When i try to import the dump, i am getting the below message.
    "Import was successful with warnings"
    when i check the log file there is
    IMP-00017: following statement failed with oracle error 1658:
    IMP-00003: ORACLE error 1658 encountered
    ORA-01658: unable to create INITIAL extent for segment in tablespace PROD_DEFAULTPlease check the below, this is what i did before importing.
    I want to import only the table structures without rows from the user "SMS" to "NMS".
    After creating the below tablespace the free space in "/u02" is 3GB.
    AM i have to change any value in the below statement?
    CREATE TABLESPACE "PROD_DEFAULT" DATAFILE
      '/u02/oradata/PROD_DEFAULT.dbf' SIZE 3072M REUSE
      LOGGING ONLINE PERMANENT BLOCKSIZE 8192
      EXTENT MANAGEMENT LOCAL AUTOALLOCATE SEGMENT SPACE MANAGEMENT AUTO
    CREATE TEMPORARY TABLESPACE "PROD_TEMP" TEMPFILE
      '/u02/oradata/PROD_TEMP.dbf' SIZE 3072M REUSE
      EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1048576
    CREATE USER "NMS" IDENTIFIED BY "SDF345345KLSDSD8K" DEFAULT
    TABLESPACE "PROD_DEFAULT"
    TEMPORARY TABLESPACE "PROD_TEMP"
    GRANT CONNECT,RESOURCE TO NMS
    [oracle@linuxdb oracle]$ imp system/password file=/u02/today1.dmp
    log=/u02/today1.log fromuser=sms touser=nms rows=n buffer=8000000 commit=yNote:
    Even if i omit "buffer" and "commit" the same error occurs.
    where im making a mistake? Is there any changes i have to made in the create tablespace statement.
    Please point out the mistake.
    thanks & regards

    not for a single statement. for all the statements
    its showing the error.instead of 512 tables
    structures, only 490 tables structures were created.Because it was not able to allocate contiguous space in the tablespace.
    >
    actually i want to import "NMS_DEFAULT" tablespace's
    table structures to "PROD_DEFAULT" tablespace.
    also I want to import only the table structures
    without rows from the user "SMS" to "NMS".Use FROMUSER/TOUSER for this and set the default tablespace for NMS as PROD_DEFAULT.
    Now specify rown=N while running import or at the time of running export itself.
    i created the "NMS_DEFAULT" tablespace with 3072M.
    so i created the "PROD_DEFAULT" tablespace with the
    same size.
    actually i created the "PROD_DEFAULT" tablespace
    using below output.
    "select
    dbms_metadata.get_ddl('TABLESPACE','NMS_DEFAULT')
    from dual"You didnt allocate sufficient space to the tablespace, i guess.
    Amardeep Sidhu
    http://www.amardeepsidhu.com
    Corrected a mistake...
    Message was edited by:
    Amardeep Sidhu

  • Success with Calendar Order

    I have seen a lot of posts on this forum about problems with the iPhoto services (calendars, cards, books, etc.). I read a lot of these before ordering one for my mom for Christmas, and it made me skeptical about buying. But, I did anyway and I just wanted to say that it came out perfect. All of the photos came out crystal clear with awesome color. It looked exactly like the digital copy. Some even had the yellow "!" mark, but I ignored it because most of the pictures were taken with a Nikon DSLR or a Canon PowerShot; both nice cameras. I can't wait to see her reaction on Christmas when she opens the sleek packaging
    In short, I just wanted to give some props to Apple for once again amazing me with their products. I wanted to give a little positive note to those who are thinking about ordering a calendar, to reassure them that they will most likely be satisfied even through all of the negative reviews on this site.
    Hope this helps By the way, I have iPhoto 6 on a MacBook Pro.

    I too had great success with a calendar and book order. The calendar was a present for my mum but, the only downside of it was, when she saw the Apple logo on the box, she thought I had bought her a laptop!

  • Imp full db successful with warnings

    Looking for options to fix those , or can i ignore them? What would be side effect if i drop/cascade users and re-run imp after increasing tablespace TS_PUBLIC size or i should not do that? and just fix the little warnings or even just ignore them?
    Most of tables (i would say 95% ) & there data imported successfully after full imp , db size is 80GB around, import terminated successfully with warnings , which are below.....
    IMP-00017: following statement failed with ORACLE error 1659:
    "CREATE TABLE "CA_QUERY_1"
    "ABLESPACE "TS_PUBLIC""
    IMP-00041: Warning: object created with compilation warnings
    "CREATE FORCE VIEW "ADMIN"."CHECK_EXTENTS_V"
    IMP-00041: Warning: object created with compilation warnings
    "CREATE TRIGGER MT1758.MEDDRA_MT1758_THE_SYN_UPD"

    DBA2011 wrote:
    Looking for options to fix those , or can i ignore them? What would be side effect if i drop/cascade users and re-run imp after increasing tablespace TS_PUBLIC size or i should not do that? and just fix the little warnings or even just ignore them?
    Most of tables (i would say 95% ) & there data imported successfully after full imp , db size is 80GB around, import terminated successfully with warnings , which are below.....
    IMP-00017: following statement failed with ORACLE error 1659:
    "CREATE TABLE "CA_QUERY_1"
    "ABLESPACE "TS_PUBLIC""
    IMP-00041: Warning: object created with compilation warnings
    "CREATE FORCE VIEW "ADMIN"."CHECK_EXTENTS_V"
    IMP-00041: Warning: object created with compilation warnings
    "CREATE TRIGGER MT1758.MEDDRA_MT1758_THE_SYN_UPD"; I would suggest you to look at export log and find out which are the tables that got failed and import only those tables again. Since the size is quite high as you said.
    Secondly, since 95% tables are already import, so i suggest you to increase the Tablespace size by adding datafile or extending existing one, then run the import for rest 5% tables.
    Third, You said can you ignore warning? During import oracle tries to create Views, it first check if the tables from which view is being create are already exists or not. If the tables doesn't exists oracle will create view forcefully, and mark these view as invalid. The only way to make the views valid is to alter the views definition to point to the correct base tables.
    So there is little activity left after import is done with warning, that you have to alter the view definitions so that correct tables can be used.
    Also see MOS -> IMP-00041 ORA-04063 FROMUSER/TOUSER IMPORT INTO NEW DATABASE [ID 1059520.6]
    Hope my suggestions helps you

Maybe you are looking for

  • View open qty and manually close SO

    Hi, Example : I have SO with qty 10pcs, but only 3pcs are delivered, the remaining 7pcs are yet to be delivered. Hence, this SO is still open. The thing now is that I want to see the open qty and manually close the SO. I tried with VA05 but it doesn'

  • CS3 - Auto Format doesn't compact blank lines?

    In Flash 8 on OS X, using Auto Format used to remove blank lines. I can't seem to find a way to enable this in CS3. Is it possible?

  • Why is the iPad mini screen not very sensitive to touch?

    There are times when the screen is not sensitive to touch. This is always observed when in Netflix mode, i.e. When trying to pause the move, re-start to continue or when exiting the movie. Is this a common occurrence? This also occurs at times during

  • Writing into pdf file

    Hi All, I need to add a line of text/string to about 1000 or so number of pdf files. whats the best way of writing this string to the pdf file. Has anyone done this using java/javascript. If so could you please tell the best solution or provide some

  • FCE issues: editing audio, displaying video frames

    Hello friend. How do I display the video frame in the timeline? I have selected it but all it shows are a bunch of boxes with Xs in them. Why? Also, I want to manipulate the audio in this clip but I don't see where you do that. I see the waveforms an