InDesign CS5.5 Documents Not Working with Drive 4.2

I am using CS 6 and Adobe Drive 4.2 (4.2.0.110) on Windows 7 with the CMIS adapter against an Alfresco v4.0.0 repository.  When I double-click on an InDesign CS6 file in windows explorer, it opens in InDesign.  I see the "up-to-date' status icon in the lower left in InDesign.  I can edit the document and successfully check it back into Alfresco.  When I try the same test case using a CS 5.5-created document, the "up-to-date" icon does not appear and I can't version the document in Alfresco.
These two documents reside in the same folder and were created by the same user in Alfresco.  They are both simple documents that only contain text boxes; no external links.
The AD4ServiceManager_java.log file contains the following and was deleted before trying the CS5.5 test case:
2013/04/23 11:15:29,471 [ConnectionHandler-Adobe Drive.exe-3732] INFO  GetConnectorInfoHandler - -->In()
2013/04/23 11:15:29,545 [ConnectionHandler-Adobe Drive.exe-3732] DEBUG IconHelper - Configuring Win volume icon.
2013/04/23 11:15:29,548 [ConnectionHandler-Adobe Drive.exe-3732] INFO  GetConnectorInfoHandler - -->Out()
2013/04/23 11:16:24,222 [IFSConnection-1] ERROR GetAssetsHandler - asset not found: /User Homes/mjackson/irml.dll
2013/04/23 11:16:24,449 [IFSConnection-1] ERROR GetAssetsHandler - asset not found: /User Homes/mjackson/adobe_licutil.exe
2013/04/23 11:16:29,224 [IFSConnection-1] ERROR GetAssetsHandler - asset not found: /User Homes/mjackson/tes8E12.tmp
2013/04/23 11:16:29,245 [IFSConnection-1] ERROR GetAssetsHandler - asset not found: /User Homes/mjackson/tes8E12.tmp
2013/04/23 11:16:29,265 [IFSConnection-1] ERROR GetAssetsHandler - asset not found: /User Homes/mjackson/tes8E12.tmp
2013/04/23 11:16:29,992 [JobHandler-2] ERROR GetAssetById - Caught exception
com.adobe.drive.data.model.DriveException: com.adobe.drive.data.model.asset.ModelObjectNotFoundException: Cannot find class com.adobe.drive.data.internal.model.Asset with id='70'
    at com.adobe.drive.data.model.asset.DeprecatedAssetFactory.findAssetById(DeprecatedAssetFact ory.java:42)
    at com.adobe.drive.internal.data.manager.DataManager.getCachedAsset(DataManager.java:1786)
    at com.adobe.drive.internal.biz.versioncue.service.call.GetAssetById.executeItem(GetAssetByI d.java:59)
    at com.adobe.drive.internal.biz.versioncue.service.call.GetAssetById.executeItem(GetAssetByI d.java:1)
    at com.adobe.drive.internal.biz.versioncue.service.call.VersionCueCall$1.run(VersionCueCall. java:125)
    at com.adobe.drive.internal.biz.versioncue.service.call.VersionCueCall$1.run(VersionCueCall. java:1)
    at com.adobe.drive.data.internal.persistence.PersistenceRunner.run(PersistenceRunner.java:11 9)
    at com.adobe.drive.internal.biz.versioncue.service.call.VersionCueCall.execute(VersionCueCal l.java:137)
    at com.adobe.drive.internal.biz.versioncue.service.VersionCueService.getAsset(VersionCueServ ice.java:234)
    at com.adobe.drive.ncomm.versioncue.GetAssetById.handle(GetAssetById.java:54)
    at com.adobe.drive.ncomm.versioncue.VersionCueRequestHandler$1.run(VersionCueRequestHandler. java:185)
    at com.adobe.drive.core.internal.jobs.JobHandler$JobWrapper.run(JobHandler.java:270)
    at com.adobe.drive.core.internal.jobs.JobHandler$JobWrapper.run(JobHandler.java:286)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
Caused by: com.adobe.drive.data.model.asset.ModelObjectNotFoundException: Cannot find class com.adobe.drive.data.internal.model.Asset with id='70'
    at com.adobe.drive.data.persistence.factories.AssetFactory.findAssetById(AssetFactory.java:2 44)
    at com.adobe.drive.data.model.asset.AssetFactory.findAssetById(AssetFactory.java:69)
    at com.adobe.drive.data.model.asset.DeprecatedAssetFactory.findAssetById(DeprecatedAssetFact ory.java:38)
    ... 15 more
2013/04/23 11:16:31,820 [IFSConnection-1] ERROR GetAssetsHandler - asset not found: /User Homes/mjackson/Document fonts
2013/04/23 11:16:31,839 [IFSConnection-1] ERROR GetAssetsHandler - asset not found: /User Homes/mjackson/Document fonts.lnk
2013/04/23 11:16:31,859 [IFSConnection-1] ERROR GetAssetsHandler - asset not found: /User Homes/mjackson/Document fonts.URL
Thanks,
Rich

they are Right it checks to see that the OS name is Windows XP i assume and it finds the windows but NOT the xp so it just assumes it is 98.... just my theroy
well not any more.!!! take a look and see ....
  private static LookAndFeelInfo[] installedLAFs;
    static {
        ArrayList iLAFs = new ArrayList(4);
        iLAFs.add(new LookAndFeelInfo(
                      "Metal", "javax.swing.plaf.metal.MetalLookAndFeel"));
        iLAFs.add(new LookAndFeelInfo("CDE/Motif",
                  "com.sun.java.swing.plaf.motif.MotifLookAndFeel"));
        // Only include windows on Windows boxs.
     String osName = (String)AccessController.doPrivileged(
                             new GetPropertyAction("os.name"));
        if (osName != null && osName.indexOf("Windows") != -1) {
            iLAFs.add(new LookAndFeelInfo("Windows",
                        "com.sun.java.swing.plaf.windows.WindowsLookAndFeel"));
            if (Toolkit.getDefaultToolkit().getDesktopProperty(
                    "win.xpstyle.themeActive") != null) {
                iLAFs.add(new LookAndFeelInfo("Windows Classic",
                 "com.sun.java.swing.plaf.windows.WindowsClassicLookAndFeel"));
        else {
            // GTK is not shipped on Windows.
            iLAFs.add(new LookAndFeelInfo("GTK+",
                  "com.sun.java.swing.plaf.gtk.GTKLookAndFeel"));
        installedLAFs = (LookAndFeelInfo[])iLAFs.toArray(
                        new LookAndFeelInfo[iLAFs.size()]);
    }the OS is Windows but the XP theme is NOT on the computer!! so it goes back to cassic. hope this helps you,
ps that was code from UI Manager 1.5

Similar Messages

  • CS5.5 documents not compatible with CS5 documents?

    I have read through the other threads and found that documents created in CS5.5 are not backward compatible with CS5.  Unless, of course, you export them manually from 5.5.
    So ... Really?!  Are you kidding me that that a version 5.5 cannot talk to a version 5.x of something?  We bought a site license for the CS5 Master Collection but without the maintenance because we were led to believe that CS6 was a couple years off.  So when 5.5 came along it implied that there were some changes but not significant enough to warrant the CS6 title.
    Okay, now that I have vented I will ask my real question.  Is it expected that with every release of the Master Collection that it means a major change to the product(s) underneath it such that they will not be directly backward compatible?  If this is the case I would recommend that this is better explained when you are offering up the maintenace.  Had I known this I would have purchased it as well instead of being stuck with having to purchase the entire site license again.
    Thanks, Brette

    Hey there PDX buddy,
    I'm guessing from the rest of your username that you're not a professional user of page layout applications, but a sysadmin of some sort. So of course you'd be surprised to discover this:
    Is it expected that with every release of the Master Collection that it means a major change to the product(s) underneath it such that they will not be directly backward compatible?
    That's the case pretty much across the board for page layout applications.  Note that it's not the Master Collection - many of the apps included do have pretty functional cross-version compatibility. Illustrator, in particular, I've found to be pleasingly verbose about possible feature loss when saving back, offering to convert type to outlines when differences between type rendering engines in versions were likely to cause incorrect text display, and so on.
    But backwards compatibility is not a feature of page layout applications in general. It was the case for Pagemaker, it was and is the case for Quark, and it's been that way for InDesign all along. The same is the case with more obscure layout apps. The only exception I can think of is Publisher - and Publisher projects often crash and burn because there's one person who insists on sticking with Office XP or whatever, and when you use new features of Publisher in a file and then open it in an older version, it does not degrade well. I don't think that it even told you that it wasn't going to bother to try to display some of the content that came from a newer version. I even have a vague recollection of a Quark Passport issue where there was a failure of compatibility between 5.0.1 and 5.0.2, or something along those lines - just a bugfix dot release broke compatbility with the previous release.
    I'd argue that, if you need to support designers or other graphics-layout types, that software maintenance for layout applications is more important that buying software maintenance for your operating system & other software infrastructure. Heck, it's arguably equally as important as offsite backups.

  • Mac upgrade to Yosemite, Adobe Indesign CS5 keyboard shortcuts not working -  t for text  - z for zoom - v for pointer etc

    So I upgraded my MACBOOK PRO (Retina, Mid 2012) 2.7 Ghz Intel Core i7
    to MAC OS X YOSEMITE
    Adobe Indesign CS5 generally works with some very annoying bugs.
    All major keyboard shortcuts that use a single key command have stopped working. and these happen to be the main ones I use all the time for editing...
    t for text
    z for zoom
    v for pointer
    It's annoying because now I have to keep  going back to the tool bar to change my cursor selection. It's just slowing me down.
    Annoying but workable.
    Has anyone else go this issue?
    An update or fix would be greatly appreciated.

    WARNING!!!
    I was contacted by  apparently a third party supplier called Adobe Systems via this forum
    They logged in to my computer via team viewer
    installed utorrent
    and proceed to download a cracked version of adobe cs6
    in the mean time saying on skype that Adobe no longer has Adobe CS6 on their server.
    This seemed very OFF to me and I disconnected the skype (and blocked Adobe Systems) and disconnected TeamViewer
    If I wanted a cracked version of Adobe CS6 I'm very capable of doing this kind of thing my self
    However I run a business I want to have a legitimate licensed copy of the software running for my staff.
    They were offering a fully licensed version of a Adobe Master Suite CS6 with my own unique ID for USD$400
    Again very OFF considering the upgrade from Adobe from Indesign CS5 to CS6 is almost AUD$1600
    I don't know how they got my email address from this forum but it seems that the adobe forum has been hacked!
    you have been warned!

  • Adobe InDesign CS5.5 crashes when working with Hi Res Content

    I am working on Final layouts in InDesign, using Full Resolution photo comps created in Photoshop.  Both Indesign and Photoshop have crashed at least 5 times today.  It takes about 5 minutes for a link to update in Indesign , after editing in Photoshop . . and that is after the 3-4 minutes it takes for the Photoshop files to save.  I am not viewing files in Full Res in InDesign , because it takes takes twice as long to anything when Full Res is turned on.  This is with no other apps open on my machine.

    Ads in INDD: 8.5x11
    Photoshop files are 18x24 at 300 DPI (800MB – 1G)
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac12,2
    Processor Name: Intel Core i5
    Processor Speed: 2.7 GHz
    Number of Processors: 1
    Total Number of Cores: 4
    L2 Cache (per Core): 256 KB
    L3 Cache: 6 MB
    Memory: 8 GB
    Boot ROM Version: IM121.0047.B1F
    SMC Version (system): 1.72f2
    Serial Number (system): C02HK5ELDHJP
    Hardware UUID: E7013DFA-C306-5837-92CA-6D16DE704FBB

  • Indesign cs5 Trial Download not working.

    Hey,
    Ive downloaded the trial version of Indesign but when i try to open it up it asks me to log into my adobe account, so i put in all my details, it authenticates my Adobe ID then comes back at me and says "Could not start your Adobe CS Live Subscription at this time, please try again later." it contiues to open up InDesign and then pops up with a window saying "Adobe Indesign is not licensed properly and will not quit."
    Please Help me! it doesn't matter how often i try i keep gettin the same result.
    Thanks Anah

    There should be a "skip this step" option if you look closely during the install.
    That said, it kind of sounds like you got the installer to finish, so reinstalling the trial may not be an option. CS Live would only be available for a paid license...
    Can you post a screen shot of the error message? Use the camera icon to embed it in a post:

  • Photoshop CS5 not working with Lucida Grande Regular font

    On my iMac Intel Core 2 Duo 2.66 GHz, I am running OS 10.6.7.
    When using Photoshop CS5, if I try to use the font, Lucida Grande Regular, it causes an error.
    "Could not use the type tool because of a program error."
    When I try to open an existing file that has type layers that include the font Lucida Grande Regular, Photoshop will not open the file. I have several of these files that I want to use. I can open them on another Macintosh and everything works fine.
    First I get a message window that says, " Some text layers might need to be updated before they can be used for vector based output. Do you want to update these layers now?" I click on update and then get the following message. "Could not complete your request because of a program error."
    I have updated Photoshop CS5 to the latest version, 12.0.4.
    I have run the FontTest.jsx script and it shows an error for Lucida Grande Regular.
    (IOError: General Photoshop error occurred. This functionality may not be available in this version of Photoshop.
    - <no additional information available>)
    The other 100+ fonts on my machine did not create errors.
    Since Lucida Grande Regular is an essential font for Mac OS X, I re-installed OS 10.6 in order to have a new version of Lucida Grande Regular. After that re-install I am having the same problems with the font not working in Photoshop.
    It also does not work with Adobe InDesign CS5. The font does work in Microsoft Word.
    The program Font Book verifies Lucida Grande Regular.
    Other fonts including, Lucida Grande Bold, work fine in Photoshop and InDesign.
    What can I do to get Photoshop CS5 to work with Lucida Grande Regular?

    Wow, I'm so glad I found this thread. This problem has been dogging me for years, and it's so sporadic that I've been afraid of breathing the wrong way lest I somehow incur that diabolical Program Error dialog. I'd managed to reach a truce with Photoshop CS5, getting it into a barely working state, and avoiding all updates... until Lion came along today. Then I updated to CS5 12.0.4, and the Program Errors were back again.
    Now I see that the problem does seem to be related to the Lucida Grande font. If there's a layer with that font in it, not only can I not edit that text, but I can't marquee select anything, nor drag any shapes. Deleting caches and massaging fonts are completely ineffectual measures... but if I delete the Lucida layers entirely, we're back in business.
    At least so far.
    Funny to think that of all the innovations I'd like to see Photoshop adopt, the fixing of this one issue is the thing I'd like to see most. I'll be keeping my eye on this thread, and any updates by Mr. Cox.

  • I've lost CS5 Design Premium Teachers Edition CD Installation Package. How can I download it? Typical version of CS 5 Design Premium is not working with my serial number

    I've lost CS5 Design Premium Teachers Edition CD Installation Package. How can I download it? Typical version of CS 5 Design Premium is not working with my serial number. Can someone help me?

    Łukasz%20Molenda if you purchased Creative Suite 5 from Adobe directly, and choose the download option at the time of purchase, then the download will be available in your account at http://www.adobe.com/.  You can find additional details at https://helpx.adobe.com/creative-suite/kb/find-download-link.html.
    If you purchased the software on a DVD and your current computer does not have an optical drive then you can copy the installation files to a USB drive on a computer which does contain an optical drive.

  • I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes a

    I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes ages. Any help out there?

    I believe there are a couple of similar threads about CC or CC2014 behaving this way that might give yo some hints, but CS5 is not supported on your OS and may not run properly regardless of what you do. An in-place OS upgrade or an attempt to migrate the application would both be major problems for ID, so if you did either of those things you'll want to uninstall, run the cleaner tool (CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3) and reinstall.

  • HP AiO on iOS7 document capture not working with iPad2?

    Has anyone else found that the Document Capture does not work with the latest version of HP AiO Remote on iOS7? The app grumbles about "The document capture feature is only available if the camera on your iPad is over 5 megapixels" - any solutions to this problem as we have about 95 iPads out in the business that need to use this function regularly

    Hi VijayJois,
    I understand that you are getting an error message when trying to use the capture feature in HP's AiO Remote app.
    The capture feature in the most recent version of the app will give the error message that you are seeing.  A work around to this is to take a photo instead of using capture.  The photo is now available in the AiO app in your camera roll to send to the printer, or send via email. 
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • I had a repair done on my MacBook Pro and had to have a new hard drive installed. The Apple Auth Repair Shop then updated the OS from 10.6.8 to 10.7.5. Now my iPhoto v 9.2.3 will not open and it sounds like it will not work with this OS. Can you plea

    I had a repair done on my MacBook Pro and had to have a new hard drive installed. The Apple Auth Repair Shop then updated the OS from 10.6.8 to 10.7.5. Now my iPhoto v 9.2.3 will not open and it sounds like it will not work with this OS. Can you please advise?

    You may need many other updates to retain compatibility with Lion. I suggest you reinstall Snow Leopard. Unfortunately, you will need to erase the drive first. Be sure to backup your data if you haven't done so already.
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. After you finish Setup Assistant will complete the installation after which
             you will be running a fresh install of OS X.  You can now begin the update process
             by opening Software Update and installing all recommended updates to bring your
             installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

  • Need driver for canon mg 5250 as scanner is not working with version 10.7. Can you please help me to find the driver so scanner works with WIFI?

    need driver for canon mg 5250 as scanner is not working with version 10.7. Lion. Can you please help me to find the driver so scanner works with WIFI?

    Try with the latest Apple driver package for Canon (released 15th Feb):
    http://support.apple.com/kb/DL899
    This solved my problem with the printing.

  • My wifi driver is not working with windows 8.1 in my MBA2013?

    My wifi driver is not working with windows 8.1 in my MBA2013?
    i installed windows 8.1 with bootcamp, everythigs seems to be working fine except the wifi,
    please help me to solve this problem,,
    thanks

    neokenchi wrote:
    hi erabbath,
    Welcome to the Forums.
    If you have the Intel Centrino N2230 Wireless + Bluetooth adapter, can you try to:
    1. Navigate to the Control Panel (large icon view) > Devices and Printers and try to pair a bluetooth device (i.e. Bluetooth Headset) and observe if it gets detected under the device list.
    2. If the Bluetooth Headset is listed but it's not working try toright click on it > choose Properties. On the bluetooth properties Window, go to the Services Tab and check all the appropriate bluetooth services.
    Sample picture
    Let me know your findings.
    Regards
    Thank you very much for your answer,
    I went to Control Panel  > Devices and Printers and i tried to add a new device as the bluetooth doesn't appear this is what i got. By the way the bluetooth was on.
    Link to picture
    And this is what i have on the Bluettoth
    And it search endlessly whereas before the upgrade it was working properly,
    All the drivers are up to date as well as windows updates are all installed
    Thanks in advance for your help
    Regards
    Moderator note; picture(s) totalling >50K converted to link(s) Forum Rules

  • External Hard Drive does not work with Lion

    Hi
    My External Hard Drive does not work with Lion this message appears:
    NTFS-3G could not mount /dev/disk1s1
    at /Volumes/My Passport because the following problem occurred:
    /Library/Filesystems/fusefs.fs/Support/fusefs.kext failed to load - (libkern/kext) link error; check the system/kernel logs for errors or try kextutil(8).
    the MacFUSE file system is not available (71)
    can anyone help?

    Hi,
    See this Discussion:
    https://discussions.apple.com/thread/3191198?start=0&tstart=0
    Cheers,

  • External DVD drive not working with Lombard G3 333

    I have an external DVD drive that worked when I had 10.4, but had to reformat HD and now only have 10.3.9, and now the DVD drive does not work with DVDs, it will work with CDs and CDR media, but not with DVD media. My Lombard did not come with DVD originally and I am using a PC Card (Macintosh PowerBook DVD-Video PC Card For PowerBook G3 Series) and it worked before with 10.4, but not with 10.3, any ideas? Also have tried with 9.x, no go either. Any help would be appreciated.
    Also, would it be difficult to add a DVD logic board to my Lombard?
    Joey

    xamdu,
    I am reading and replying to this post after first replying to your other post, so a few of my previous comments are redundant.
    Regarding the FireWire(?) USB 2.0(?) DVD drive: It is possible Tiger supported your DVD drive but Panther does not. I would give PatchBurn for Panther a try:
    http://patchburn.de/download.html
    If the above is unsuccessful, take a look at this workaround:
    http://www.macosxhints.com/article.php?story=20040330171655882
    You can swap logic boards but it does require a lot of disassembly.
    Since no version of OSX supports Apple DVD Player, I am assuming you have a third-party player like VLC installed to watch movies. If this is the case, the DVD Decoder PC card is not necessary. If booted to 9.x, you of course will need the decoder PC card but I did not know 9.x's Apple DVD Player supported external drives.

  • Recovery did not work with new hard drive

    The original Toshiba HD(250G, sata1) of my laptop( ) crashed.
    I bought new one (320G, sata 2, Western digit )
    The problem is that, when I tried to use the recovery CD that I used to use it with old HD before, it did not work with this new HD well!?
    After cd1 and cd2 finish installing it ask to take it out then restart, I do so, but when it comes to setup setting of windows.
    An error message come out says " Windows Setup could not configure Windows on this computer’s hardware”
    It restart and says again " Windows could not complete the installation. To install Windows on theis compuiter, restart the installation."
    I have been trying to solve this a lot, but no way
    I tried what in this link, but it drive me with another problem http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_install/windows-could-not-complet...
    I hope that I get the right thing to do, from ur forum by this post.
    Thanks a lot

    Did you folks search here for "advanced format drive"?    People have had numerous weird problems with the new advanced format hard drives in older Toshibas.    I can't look up all the threads for you.    But here is one:
    http://forums.toshiba.com/t5/System-Recovery-and-Recovery/Recovery-won-t-work-on-new-upgraded-hardri...

Maybe you are looking for

  • Can I tell at server-level if a message has been displayed in the Reading Pane in Outlook?

    Hello, Does anyone know if there are any traces at server-level (Exchange 2010) if a message has been displayed in the Reading Pane of Outlook 2010? The message would still be marked as Read in the recipient's mailbox. Thanks, - Alan.

  • Error While Entering the Data: Code and Name

    Hi Experts, I have defined the Two User Defined tables and SBO created Two User Defined Forms. i am able added the Data in One of the Form with the same value in Code columns for multiple rows and different value in Name columns for multiple rows. bu

  • DW CC Fluid grid layout how to change px width for desktop layout

    Hi there, I have been going through the various tutorials about fluid grid layout and setting up our bureau's website in a responsive layout. The width of the original design was 960 px and the hero pic and others have been exported at that size. The

  • Solaris 10 login problem. need guru's help.

    I posted the same question a few days ago. Mor than 150 persons reviewd it. But noone could answer my question. Is there real expert or guru out there to help me out? Here is the question again. I isntalled solaris 10 on Sun sparc 64 bit machine. I c

  • RBAC question

    Hi, I came across a tutorial which teaches how to grant reboot permission to a user. At one point, it says to add the following line to ' /etc/security/exec_attr' file REBOOT:suser:cmd:::/usr/sbin/reboot:euid=0I will need to grant access to other com