XServer providers no longer available to normal users in S11

I haven't yet found a means of accessing Solaris 11's XServer probes as a normal user. My user has all dtrace privileges (dtrace_user,dtrace_proc,dtrace_kernel), but dtrace -l -n 'Xserver*' gives:
pfexec dtrace -l -n 'Xserver*'
ID PROVIDER MODULE FUNCTION NAME
dtrace: failed to match :::Xserver*: No probe matches description
The same command as root shows all Xserver probes.
Edited by: bnitz on Dec 1, 2011 6:10 AM
Removed comment about sudo as an inferior alternative to pfexec. In this case they are both equivalent, this particular dtrace use-case seems to require uid=0.

There seems to be at least two options:
Add your user to the the /etc/sudoer file and sudo dtrace -l -n 'Xserver*'
or
Add back the "Primary Administrator" role (or an equivalent role with uid=0) and grant this role to the user.
In many cases RBAC provides much more granular control of accesses and permissions than sudo, but in this example I'm using RBAC to run as UID 0 so if I do this by user instead of by file, I don't gain much advantage of using RBAC.
The fact that dtrace_kernel, dtrace_user and dtrace_proc are not sufficient for tracing Xorg does seem a bit strange. This may be because Xorg runs as root.

Similar Messages

  • [SOLVED] DBUS boot problems - Mounting system devices as a normal user

    I have the [testing] and [community-testing] repositories enabled. A few days ago, probably due to an update, I started having trouble mounting devices and the shutdown/reboot options don't show up anymore on the LXDE exit menu.
    I use gvfs for mounting devices as a normal user with PCManFM or Thunar. The error message is "Authentication is required".
    After some testing, I found out that by restarting dbus, I could start mounting devices again:
    /etc/rc.d/dbus restart
    So my guess is that there's some problem with dbus startup. I have it in DAEMONS of rc.conf, as well as .xinitrc, the daemon seems to start correctly on boot, and it worked previously, so I have no idea of what could be wrong.
    My ~/.xinitrc:
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
    eval 'dbus-launch --sh-syntax --exit-with-session'
    fi
    numlockx && exec ck-launch-session dbus-launch startlxde
    My /etc/rc.conf:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="ca_AD.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="UTC"
    TIMEZONE="Europe/Andorra"
    KEYMAP="es"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MODULES=()
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="localhost"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    # interface=eth0
    # address=192.168.0.2
    # netmask=255.255.255.0
    # broadcast=192.168.0.255
    # gateway=192.168.0.1
    # DHCP example
    # interface=eth0
    # address=
    # netmask=
    # gateway=
    interface=eth0
    address=
    netmask=
    broadcast=
    gateway=
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If you are sure nothing else touches your hardware clock (such as ntpd or
    # a dual-boot), you might want to enable 'hwclock'. Note that this will only
    # make a difference if the hwclock program has been calibrated correctly.
    # If you use a network filesystem you should enable 'netfs'.
    DAEMONS=(hwclock syslog-ng network crond alsa dbus cupsd)
    Thanks!
    Last edited by gamezelda (2011-11-08 19:28:04)

    I solved it.
    The Wiki page for Mounting for normal users with PCManFM tells to create a "/etc/polkit-1/localauthority/50-local.d/55-myconf.pkla" file specifying the privileges to grant to the user. The problem is that it does not include the privilege needed to mount internal drives (which was what I was trying to mount). To fix it, I added:
    ;org.freedesktop.udisks.filesystem-mount-system-internal
    To the "Action=..." line.
    (Though I have no idea why it worked before it broke, or why restarting dbus after initializing my WM fixed it.)
    As for the power issues, I've concluded that it was working, but restarting dbus after initializing my WM broke it (my bad for not checking it before restaring dbus). So it all works now.

  • Hi Guys does anyone know of a way i can get cyclops speed camera alert to work through bluetooth incar hands free kit , i used to be able to connect it via an app called drivesafely but this app is no longer available in apple store ????????????

    Hi Guys does anyone know of a way i can get cyclops speed camera alert to work through bluetooth incar hands free kit , i used to be able to connect it via an app called drivesafely but this app is no longer available in apple store ????????????

    I think the easiest way to do this is to have the EyeTV app running in one user account and sent via HDMI to the TV, and use a separate user account for Screen Sharing. Both logins can be active at the same time and with Lion you can connect via screen sharing to which ever login you need.
    With regards to the Mac video resolution changing, when it is not the current input on your AV receiver. This is 'normal', if the Mac sees no signal it drops down the a lower level. What you need is to buy a HDMI Detective Plus which tricks the Mac in to always seeing a signal and hence it will not drop down the resolution. See http://www.gefen.com/kvm/dproduct.jsp?prod_id=8005
    The Mac mini does have an IR receiver. This can be used with the EyeTV app, iTunes, and similar. Yes I believe EyeTV would run for prolonged periods quite happily, it is has been around for a long time and had most of the rough edges polished off. However one issue you will have to deal with is that it does not automatically update its program guide data. For this you might have to write or modify an AppleScript. Elgato support or their user forums will be a lot of help.
    You can set EyeTV to convert recordings to an iTunes (Apple TV) compatible format and then delete them from EyeTV.
    The HDMI Detective should solve your handshaking problems.

  • Hello, I wonder why there isn't Finnish language in the adds-on list. Could you please make it available to Firefox users. Thank youin advance. Rappe

    Hello, I wonder why there isn't Finnish language in the adds-on list. Could you please make it available to Firefox users. Thank youin advance. Rappe

    (1) Firefox's built-in post-crash page has not been a real HTML page for a long time (for example, from the time of Firefox 22, see: [https://support.mozilla.org/en-US/questions/968212 Want to save LOTS of versions of "Restore Session.xht" from the "oops ..." page for later use]). If you had this working differently with Firefox 25, that might have been created by an extension.
    You can check to see whether extensions are disabled or need an update on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. The disabled extensions cluster toward the bottom of the list. To poll for updates, use the "gear" button above the list and choose Check for Updates.
    If you used the Reset feature (or Firefox automatically did a reset due to some problem during upgrading), you will need to reinstall missing extensions. The reset feature creates a folder on the desktop named Old Firefox Data. Do you have that folder? There may be data you can recover from it.
    (2) There are many ways for history to get cleared, both internal to Firefox and external. Could you double-check your Privacy settings?
    orange Firefox button (or Tools menu) > Options > Privacy
    * The "Firefox will" drop-down says Remember History: Firefox shouldn't be clearing history, but an add-on or external software could do it
    * The "Firefox will" drop-down says Use custom settings for history: inspect the "Clear history when Firefox closes" setting to make Firefox isn't set to clear history. Also check your add-ons and consider external software.
    Firefox normally accumulates months of history. However, some of Firefox's database sizes are based on disk space available. If your hard drive is very full, Firefox might reduce the amount of history stored.

  • I did not deactivate a photoshop cs6 before there was a new hard drive installed with a Win7 Pro fresh install too. How can I activate photoshop on the new hardware if I can't deactivate it on the old hardware that is no longer available? Any help will be

    I did not deactivate a photoshop cs6 before there was a new "C" hard drive installed on my computer and a Win7 Pro fresh install too. How can I activate photoshop on the new hardware if I can't deactivate it on the old hardware that is no longer available? Any help will be appreciated.

    If it's the same machine (same CPU) there should not be any need to activate.  The actiovation is tied to your CPU.
    If you run into problems, then:
    Unfortunately, only Adobe customer service can assist you with your issue. These are user forums; you are not addressing Adobe here.
    Click on the link below, and after that click on "Still need Help? Contact us."
    Then on the next page, click Chat
    There is also a phone option. 1 (800) 833-6687
    http://helpx.adobe.com/contact.html?step=PHXS_downloading-installing-setting-up_licensing- activation

  • How to reinstall old app purchased on iphone that is no longer available in App Store?

    A couple years ago I purchased a Colorado maps app (I can't remember the name) from the App Store. The computer that I had it backed up on crashed, so I had to reinstall iTunes on a fresh hard drive.
    I still have the backup files of the hard drive that had the app backed up on it. But I don't know how to access the files for that lost app.
    Is there a way to reinstall or recover old apps no longer available in the app store from an old backup of itunes or something?
    Thanks

    You're actually overthinking it. You have the backup of that app of your old HD, yes? On Vista, go to:
    c:\Users\[Username]\My Music\iTunes\iTunes Music\Mobile Applications
    The tricky part is finding the app name, since you've forgotten it, but try to go with the obvious names first. "Colorado.ipa" etc. Try Appshopper.com's search feature, to possibly refresh your memory. When you've found it, make a copy of it, and install it on your new iTunes Mobile Apps folder. Click on it, and let it load. You'll see it in iTunes (if you're using the same account as before). Good luck.

  • 64 The specified network name is no longer available

    Hi Experts,
    We have been using TMG 2010 from last 5 years as a reverse web proxy for OWA , outlook anywhere , active sync etc. Of late users from one particular site have been complaining of regular disconnections on outlook and OWA.
    We don't have complaint from any other site except to this , whereas users in this site can browse other secure web sites without any challenge.
    I have diagnosed the packets coming from their public IP and i could see that lot of connections happen successfully whereas few it shows either denied connection or failed connection attempt.
    if i concentrate on failed connection attempt , i get the below information. Can some one provide any hint on the possible resolution for this issue.
    Any help would be much appreciated
    Failed Connection Attempt
     3/19/2015 1:29:14 PM
    <id id="L_LogPane_LogType">Log type:
    </id><id id="L_LogPane_WebProxyForward">Web Proxy (Reverse)</id>
    <id id="L_LogPane_Status">Status: </id>64 The specified network name is no longer available.
    <id id="L_LogPane_Rule">Rule:
    </id>Outlook anywhere success rule
    <id id="L_LogPane_Source">Source:
    </id>External (91.230.41.193:53933)
    <id id="L_LogPane_Destination">Destination:
    </id>Local Host 
    <id id="L_LogPane_FilterInfo">Filter information:
    </id>Req ID: 19374dc2; Compression: client=No, server=No, compress rate=0% decompress rate=0% ; FBA cookie: exists=no, valid=no, updated=yes, logged off=no, client type=unknown, user activity=yes
    <id id="L_LogPane_Protocol">Protocol:
    </id>https
    <id id="L_LogPane_User">User:
    </id>anonymous
    Md.Abubakar Noorani IT Systems Engineer Serco Ltd.

    Hi,
    >>64 The specified network name is no longer available
    This error is very general. You need to collect a network trace and analyze it. The most common one is when the backend server is performing a dirty TCP connection reset.
    You could have a look at the blog below.
    Error 64 “ The specified network name is no longer available” while accessing a
    HTTPS site through ISA 2006
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • The Volume can't be used & will be ejected because it is no longer avail...

    Fresh Mac Mini Server, all updates, humming along beautifully.
    Every day or two, all my AFP users get kicked off our one share point (located on an external FW800 RAID array) with this error:
    "The Volume "Work" can not be used and will be ejected because it is no longer available"
    Future attempts to connect fail until I restart AFP. I've got this excerpt in the AFP access.log:
    ** - - [18/May/2010:13:13:20 1000] "Mounted Volume ldap_bk" 6 0 0
    IP 192.168.58.19 - - [18/May/2010:13:13:21 1000] "Logout prod" 0 0 0
    IP 192.168.58.15 - - [18/May/2010:13:13:45 1000] "Logout Cassie" 0 0 0
    IP 192.168.58.12 - - [18/May/2010:13:14:05 1000] "Logout prod" 0 0 0
    IP 192.168.58.18 - - [18/May/2010:13:14:06 1000] "Logout Jo" 0 0 0
    IP 192.168.58.3 - - [18/May/2010:13:14:22 1000] "Logout jay" 0 0 0
    IP 192.168.58.13 - - [18/May/2010:13:14:28 1000] "Logout prod" 0 0 0
    IP 192.168.58.6 - - [18/May/2010:13:14:28 1000] "Logout wendy" 0 0 0
    IP 192.168.58.17 - - [18/May/2010:13:14:28 1000] "Logout prod" 0 0 0
    IP 192.168.58.21 - - [18/May/2010:13:14:28 1000] "Logout work" 0 0 0
    ** - - [18/May/2010:13:14:43 1000] "Mounted Volume Server HD" 0 0 0
    ** - - [18/May/2010:13:14:43 1000] "Mounted Volume Additional HD" 1 0 0
    ** - - [18/May/2010:13:14:43 1000] "Mounted Volume Old Server" 2 0 0
    ** - - [18/May/2010:13:14:43 1000] "Mounted Volume Data HD" 3 0 0
    ** - - [18/May/2010:13:14:43 1000] "Mounted Volume Backup HD" 4 0 0
    ** - - [18/May/2010:13:14:43 1000] "Mounted Volume Time Machine Backups" 5 0 0
    ** - - [18/May/2010:13:14:43 1000] "DiskArbStart -" 0 66176 0
    I have no idea what ldap_bk is. That must be some internal share for backing up Open Directory automatically? It seems that whenever it happens, all my users get kicked off immediately, there's some remounting of all my drives, but AFP never recovers. Where is that job managed? Anyone know which launchd.plist? Is this even the problem? Any other ideas?

    I definitely think it's related to some automated backup that I'm not aware of. I found this directory:
    bash-3.2# ls -al /var/log/server_backup/
    total 904
    drwxrwx--- 7 root wheel 238 Apr 30 15:31 .
    drwxr-xr-x 159 root wheel 5406 May 18 13:32 ..
    -rw-r--r-- 1 root wheel 216848 May 18 13:13 iChatServer_backup.log
    -rw-r--r-- 1 root wheel 230502 May 18 13:13 mailServer_backup.log
    -rw-r--r-- 1 root wheel 0 Apr 30 15:31 mailServer_restore.log
    -rw-r--r-- 1 root wheel 3519 May 18 13:13 openDirectory_backup.log
    -rwxr-x--- 1 root wheel 7625 May 18 13:13 server_progress.log
    13:13 is exactly when everyone got booted off and coincides with the entries in AppleFileServiceAccess.log. What is firing off this backup process? I've got no third party tools in place that would be doing this.

  • Large number VSS errors "The specified network resource or device is no longer available."

    I have a 2 node Hyper V Cluster backed up via Veeam Off-Host Proxy. I've already logged, without answer, a thread about the Off-Host Proxy server randomly (I guess) creating new duplicate iSCSI connections.
    Today I have a single VM that won't backup. On inspection through the hosting servers Application Log I see a high amount of VSS errors being logged which I believe is possibly related to the iSCSI issue being logged by the SAN.
    I'm not sure how to "show" the issue without a giant wall of the events but there is like half a dozen different events being logged when whatever this is is happening. For instance as well last night 60/61 VMs backed up find, but these errors
    were logged constantly while the backup ran...
    The question as well is is this a Windows/VSS issue, a Veeam issue or a Equallogic issue?
    Also how do I find what '\\?\Volume{06fba49e-9519-11e4-80cc-000af75dc050}\'. actually is?
    In order of how they come I guess:
    Log Name:      Application
    Source:        VSS
    Date:          6/01/2015 7:28:19 AM
    Event ID:      8229
    Task Category: None
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      HOST02.domain.private
    Description:
    A VSS writer has rejected an event with error 0x800423f3, The writer experienced a transient error.  If the backup process is retried,
    the error may not reoccur.
    . Changes that the writer made to the writer components while handling the event will not be available to the requester. Check the event log for related events from the application hosting the VSS writer. 
    Operation:
       PrepareForSnapshot Event
    Context:
       Execution Context: Writer
       Writer Class Id: {66841cd4-6ded-4f4b-8f17-fd23f8ddc3de}
       Writer Name: Microsoft Hyper-V VSS Writer
       Writer Instance ID: {881f5207-f769-4b40-986a-c6bd56d8aa1e}
       Command Line: C:\Windows\system32\vmms.exe
       Process ID: 3268
    Log Name:      Application
    Source:        VSS
    Date:          6/01/2015 7:29:31 AM
    Event ID:      8193
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      HOST02.domain.private
    Description:
    Volume Shadow Copy Service error: Unexpected error calling routine Error calling CreateFile on volume '\\?\Volume{06fba49e-9519-11e4-80cc-000af75dc050}\'.  hr = 0x80070037, The specified network resource or device is no longer available.
    Operation:
       Check If Volume Is Supported by Provider
    Context:
       Execution Context: Coordinator
       Provider ID: {d4689bdf-7b60-4f6e-9afb-2d13c01b12ea}
       Volume Name: \\?\Volume{06fba49e-9519-11e4-80cc-000af75dc050}\
    Log Name:      Application
    Source:        EqualLogic
    Date:          6/01/2015 7:29:43 AM
    Event ID:      4001
    Task Category: VSS
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      HOST02.domain.private
    Description:
    iSCSI logout error 0xEFFF0040 from target NULL.
    Log Name:      Application
    Source:        VSS
    Date:          6/01/2015 7:29:43 AM
    Event ID:      12293
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      HOST02.domain.private
    Description:
    Volume Shadow Copy Service error: Error calling a routine on a Shadow Copy Provider {d4689bdf-7b60-4f6e-9afb-2d13c01b12ea}. Routine details OnLunStateChange(\\?\mpio#disk&ven_eqlogic&prod_100e-00&rev_7.0_#1&7f6ac24&0&363846433631363644434545463233334146344141353632363038303136#{53f56307-b6bf-11d0-94f2-00a0c91efb8b})
    failed with error 0xefff0040 [hr = 0xefff0040]. 
    Operation:
       Notifying hardware provider to free a drive
       Break with LUN mask
       Delete Shadow Copies
       Processing PostFinalCommitSnapshots
       Executing Asynchronous Operation
    Context:
       Volume Name: \\?\mpio#disk&ven_eqlogic&prod_100e-00&rev_7.0_#1&7f6ac24&0&363846433631363644434545463233334146344141353632363038303136#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
       Volume Name: \\?\Volume{06fba49e-9519-11e4-80cc-000af75dc050}
       Snapshot ID: {3091377b-2e26-43ed-a11b-f31adbde0b1f}
       Execution Context: Provider
       Provider Name: Dell EqualLogic VSS HW Provider
       Provider Version: 4.7.1
       Provider ID: {d4689bdf-7b60-4f6e-9afb-2d13c01b12ea}
       Snapshot Context: 4194336
       Provider Name: Dell EqualLogic VSS HW Provider
       Provider Version: 4.7.1
       Provider ID: {d4689bdf-7b60-4f6e-9afb-2d13c01b12ea}
       Current State: DoSnapshotSet
    Log Name:      Application
    Source:        VSS
    Date:          6/01/2015 7:29:43 AM
    Event ID:      12293
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      HOST02.domain.private
    Description:
    Volume Shadow Copy Service error: Error calling a routine on a Shadow Copy Provider {d4689bdf-7b60-4f6e-9afb-2d13c01b12ea}. Routine details could not free LUN [hr = 0x8004230f, The shadow copy provider had an unexpected error while trying to process the
    specified operation.
    Operation:
       Break with LUN mask
       Delete Shadow Copies
       Processing PostFinalCommitSnapshots
       Executing Asynchronous Operation
    Context:
       Volume Name: \\?\Volume{06fba49e-9519-11e4-80cc-000af75dc050}
       Snapshot ID: {3091377b-2e26-43ed-a11b-f31adbde0b1f}
       Execution Context: Provider
       Provider Name: Dell EqualLogic VSS HW Provider
       Provider Version: 4.7.1
       Provider ID: {d4689bdf-7b60-4f6e-9afb-2d13c01b12ea}
       Snapshot Context: 4194336
       Provider Name: Dell EqualLogic VSS HW Provider
       Provider Version: 4.7.1
       Provider ID: {d4689bdf-7b60-4f6e-9afb-2d13c01b12ea}
       Current State: DoSnapshotSet
    (Below logged 3 times)
    Log Name:      Application
    Source:        VSS
    Date:          6/01/2015 7:29:49 AM
    Event ID:      8193
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      HOST02.domain.private
    Description:
    Volume Shadow Copy Service error: Unexpected error calling routine Error calling CreateFile on volume '\\?\Volume{06fba49e-9519-11e4-80cc-000af75dc050}\'.  hr = 0x80070037, The specified network resource or device is no longer available.
    Operation:
       Check If Volume Is Supported by Provider
    Context:
       Execution Context: Coordinator
       Provider ID: {d4689bdf-7b60-4f6e-9afb-2d13c01b12ea}
       Volume Name: \\?\Volume{06fba49e-9519-11e4-80cc-000af75dc050}\

    This is the issue having with redundant iSCSI connections being created:
    Not sure this is a Veeam issue, just that it's occurring with Veeam backup process.
    We have a server configured as an Off-Host Proxy with Veeam; it connects to the SAN storage via iSCSI same as the other hosts but accesses the storage as read only.
    Randomly we will get alerts from the SAN as below:
    iSCSI login to target '172.16.0.50:3260, iqn.2001-05.com.equallogic:8-661fc6-e612eedc6-32600005c9254a75-arcvmstore1-2015-01-03-14:13:37.2774.1' from initiator '172.16.0.44:64108, iqn.1991-05.com.microsoft:arcbackproxy.domain.local' failed for the following reason:
    Requested target not found.
    On inspection of the Off-Host Proxy's iSCSI configuration additional iSCSI connections are present as inactive, with an existing connections name amended with the date at the end. For instance (and in the example error above) there will be:
    iqn.2001-05.com.equallogic:8-661fc6-e612eedc6-32600005c9254a75-arcvmstore1
    and
    iqn.2001-05.com.equallogic:8-661fc6-e612eedc6-32600005c9254a75-arcvmstore1-2015-01-03-14:13:37.2774.1
    Not really causing an issue, the backups are running OK, or any issues we have aren't related. But getting annoying getting the alerts from the SAN of the Off-Host Proxy trying to connect to an incorrect iSCSI target.
    Any ideas why this is occurring?
    Obvious is we delete the extra connection, which stops the alert, but the issue will reoccur within a day or two usually.
    Today I found twice the alert as above and sure enough the iSCSI on the Off-Host Proxy is as below:
    Maybe these redunandant connections being created is related? Maybe that's the where the "The specified network resource or device is no longer available." is coming from or something?

  • I need to put my iPod's music into my new iPhone, but the computer where I had my iTunes is no longer available, how can I do it?

    The computer that contained my music library and videos is no longer available, I bought an iPhone but I want to put my music and videos from my iPod touch in it, how do I do it?

    This user tip should be helpful. It refers to the iPhone, but it's equally valid for iPods as well…
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • How can I delete or transfer some (not all) Albums, Music and pics in "Photo Library" NOT purchased in iStore from my iPhone to a computer, when the original computer that did the original iTunes to iPhone synch is no longer available (stolen)?

    The iPhone iOS 4 User Guide sees to indicate that the SYNCH function is all one way from computer to iPhone, unless it is for purchased items in iStore on the iPhone.
    1. How can I delete some (not all) Albums and Music from my iPhone when the original computer that did the iTunes to iPhone synch is no longer available (stolen)?
    2. How can I transfer Albums and Music (not purchased from iStore on iPhone) from my iPhone to the new computer?
    3. How can I delete some (not all) pictures in my iPhone "Photo Library"  when the original computer that did the iTunes to iPhone synch is no longer available (stolen)?
    4. How can I transfer pictures in my iPhone "Photo Library" to the new computer?

    Hi wjosten,
    thanks for the "TouchCopy" software link. I have downloaded a demo copy and it will resolve my transfer of music from iPhone to the new computer. I can then delete any unwanted music on the new computer, then re-synch the updated music to iPhone.
    I am not sure about the photos.   On my iPhone, there are two photo "albums" - one called "camera roll" and the other called "photo library."  TouchCopy finds the pictures in the "camera roll" DCIM folder, and I can copy them to the new computer etc. 
    However, TouchCopy does not seem to find the "Photo Library" folder.  Any clues?

  • Some objects are no longer available in the universe.(Error: WIS 00001)

    We are in the process of upgrading BOXI R2 to R3.1 SP3. Setup, configuration of BOXI R3 on new machine is done. And migrated the reports,  universes, users, groups and all repository objects with Import Wizard. everything seems good except few Webi reports pointing to wrong universes and getting the below error message.
    "Some objects are no longer available in the universe. See your Business Objects administrator. (Error: WIS 00001)"
    1) I deleted the particular report from destination and re imported it but still same issue.
    2) deleted the file from Input file store and re imported it still same error I'm getting.
    Gurus, Please help me..
    Thanks,

    if the issues is with one or two reports i would've tried manually editing each report, but here we've this issue with 20+ reports so far..
    Just pointing it to right universe won't work, I've to add the missing objects as well. So Its like developing new report.
    Thanks!

  • WinXP to Mac - The Specified Network Name is No Longer Available

    Hello,
    I cannot figure out, for the life of me, why our WinXP machine won't connect to our Mac.
    Mac: Powerbook G4 running OS X 10.4.7, WIndows File Sharing is active and an account is selected which will use Windows sharing.
    PC: Windows XP Home Edition, SP2. A file share is active.
    We're both using wireless connections via a D-Link DI-624 router. Both the Mac and PC are on the same workgroup and have different machine names. Both are on the same subnet.
    The Mac can connect to Windows XP share directories and printers without a problem. The Windows XP machine can browse to the Mac's web page when the Personal Web Sharing on the Mac is active. The XP machine can even ping the Mac's address with no packet losses.
    However, when the XP machine tries to connect to the Mac (via Map Network Drive or from the command line) using \\machine\share, we get the following error: "The Specified Network Name is No Longer Available". The Mac's machine name shows up when we do a search for computers, but gives us that same error when we double click on it. Furthermore, the printer name does not show up in the printer list, although the Mac's machine name does.
    Any ideas? Any more information needed?
    Thanks a lot. This problem is driving me insane. :/
    Scott

    I finally figured it out! It had to do with the smb.conf file and a missing file. Here's what happened (for people with future problems like this):
    o Looked at the log.smbd file (in /var/log/samba) and saw errors about not being able to convert from CP0. Searched online and found (from http://discussions.apple.com/thread.jspa?messageID=2490054&#2490054) that I needed to change 'dos charset = 0' to 'CP850'...
    o In Terminal, did a 'sudo pico /etc/smb.conf' and changed the line "dos charset = 0" to "dos charset = CP850"
    o Still didn't work, and found from the log.smbd file that the convert msg was gone, but was replaced with a "Failed to open /private/var/db/samba/secrets.tdb" msg.
    o I saw that the directory (at the ..../samba level) didn't exist, so, from Terminal, I used sudo to create the /private/var/db/samba directory (sudo mkdir /private/var/db/samba), and did a 'sudo touch secrets.tdb' to create the file, then 'sudo chown root:wheel secrets.tdb' to assign the correct user/group.
    Used 'sharepoints' program to create shares and voila! It works great now!
    To share my printer, I'm using bonjour, which is a free printer/etc. sharing program from Apple for those with OS X 10.4 (Tiger) and WinXP/2000/2003 machines (http://www.apple.com/macosx/features/bonjour/).

  • BT Sport No Longer Available via Aerial...

    I'm guessing this is old news but I never saw any announcements.
    My parents have received a letter saying BT Sport is no longer available via the aerial and now has to come via Broadband. The letter says future BT Sport viewing needs to be either by an ethernet connection or via the powerline adaptors. My folks currently have their Vision box connected by the latter means - but BT Sport doesn't work. The message on the TV says a direct connection via Ethernet is needed (unlike the letter, the on-screen message doesn't mention power adaptors).
    Reading a few posts here I get the impression that there's another factor - BT Infinity. If they aren't on Infinity will this mean they can't get BT Sport via the TV anyway, even if they were to run a gert long ethernet cable round the house?
    Next question - were they on Infinity (I suspect they won't go this far and BT will lose a customer back to Sky) will they be able to use Powerline Adaptors? Their router / phone socket in is nowhere near the TV.
    I assume all of this is going to apply to me, too, though I'm yet to receive a letter and, unlike my parents, can still see BT Sport on channel 58.
    I also see there's now a charge for Net Protect Plus. It's starting to feel like a screw is turning...
    Cheers
    Derek

    Derek_R wrote:
    My folks contacted BT and were told they needed new Powerline Adaptors but also needed to be signed up for BT TV.
    So, they signed up, despite being existing Broadband customers and despite having enjoyed BT Sport via the aerial for the last six months or more.
    mmm... I'm not sure I would have been quite so quick to rush into signing up to any new contract.
    In normal circumstances you do need to have your account registered for the BT TV service in order to receive the BT Sport channels on the BT TV box. New customers have to sign up to either TV Essential (£5) or TV Entertainment (£7.45).
    However, some existing customers are on older TV packages. Some are even on an old package that was effectively TV PAYG and had fixed costs of £0 per month. I'm not sure if there were any limitations on who could add the free BT Sport via the TV aerial.
    It would be strange to be able to receive the BT Sport channels via the TV aerial and viewing card without being on some sort of TV package and hence the BT TV service being registered for the account. Is it possible that was an old TV PAYG type deal?
    I think you really need to identify exactly what the situation was before the new contract was started. It's possible the new contract was unnecessary, but I can't really give an answer to that. 
    I would also go back and look over the original e-mail. Did it give any small print or links to terms and conditions saying that some customers would have to take out a new BT TV contract at additional cost? The change was being driven by BT and the customer wasn't asking for any change.

  • WhatsApp no longer available for new iPhone downloads?

    My factory-unlocked iPhone 4, bought straight from the Apple Online Store, was delivered to me on Friday. I tried downloading WhatsApp from the App Store but the app couldn't be found there. I tried going through the WhatsApp site in the hope that the site would direct the download through the App Store but that didn't work either. So I then tried to sync the programme file, which was working on another iPhone, to my iPhone through iTunes but that won't work either. The transfer goes through to the phone but I keep getting an error saying "WhatsApp failed to install." Am I to conclude that WhatsApp is no longer available for the iPhone for new downloads? The WhatsApp website still has the iPhone listed as one of their supported devices but the installation just won't work. Has their policy changed? If so, is there any other free multi-platform instant messenger that I can use for contacts who are BlackBerry and Android users? I haven't any issues downloading any other apps at all and the phone works beautifully. Please someone help me with this one! Thank you.

    That's odd... I found it just fine.
    http://itunes.apple.com/app/whatsapp-messenger/id310633997?mt=8

Maybe you are looking for

  • Keyboard shortcut for filling the window?

    A couple years ago I was routinely using a certain key combo which would instantly expand a PDF's pages to fill the window (rather than having to click the button in the GUI).  But I've forgotten how to do it.  I've searched the "keyboard shortcuts"

  • I would like to change the name on my iphone

    I would like to change the name on my iphone 4?

  • Setting a JTree renderer breaks the focus traversal order

    Hello, I am not sure what's wrong, but when I set a customize JTree renderer it breaks the focus traversal order of my UI. Can someone tell me what's wrong and also how to prevent it from changing the order of my components? For instance, if I have c

  • Elements 11 and Canopus

    I have many Canopus 110 I/O devices laying around from our Avid days. I was playing around with one and Premiere Elements 11, but had no luck seeing my capture device. I set everything (I think) to DV, but still no luck. Any help is appreciated. than

  • Sane,  Solaris x86, and possibly Staroffice 8

    I am running Solaris 10 6/06 and have installed the companion cd as well as someother things (Quake II, QEMU for example). I am trying to set up a USB HP office Jet 5500 all-in-one series. I set it up as a printer but i cant set up the scanner functi