Whether will falsh player support  Unrestricted File System Access in Full Trust ?if it will , when?

    I am doing a software based on Flash , to provide my customer to edit pictures online.
    In some scenario, to get Full Acess Local File is necessary. I find SliverLight 5.0 had supported such features:
Unrestricted File System Access in Full Trust
Full Trust in-browser for enterprise scenarios
Default Filename in SaveFileDialog and OpenFileDialog
   I really desire those features , so , I am wondering whether adobe will support it .If will, when?

Please read the below flash player administrator guide
http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flas h_player_11_7_admin_guide.pdf
check the section "The User FlashPlayerTrust directory". It will help.

Similar Messages

  • SAP File System Access - SLD Naming Convention/Suggestions

    I would like to access our ECC file system to pick up files we will use to create Idocs.   
    I'm wondering the best way to describe the file system access in the SLD.   
    I have a business system for the main client on the ECC  system (BS_ED1CLNT010) for example but the OS isn't client specific.    I could use this as the Business System in the scenario and define a file adapter that connects to the unix server.
    Any thoughts?

    Maybe I didn't frame my question properly.  
    In the ECC system we have multiple clients (20,30,40, etc).  If I am going to post an Idoc to a client in this system I need to define each as a business system in the SLD and import this to the Integration Directory.    So I would have BS_XXXCLNT010, BS_XXXCLNT020, etc, one for each client.   These all share the same Technical System.    If I want to post an Idoc to a client on the ECC system I have to define a Business System and interface to that and every client that will receive an Idoc. (as well as the ALE settings on the ECC)
    Each of these reside on the same SAP server (sap00001 for example) and there is a directory (/public for example)  on this server.     This isn't client specific.  
    I wish to pick up a file from the ECC file system and post a client on the ECC system (maybe different ones based on the data in the file).   
    I don't want to define the file adapter under BS_XXXCLNT020 since it isn't specifc to client 020 although that would work.  
    Do I create a new TS in the SLD as third party, stand alone java, and a BS for that?    TS_XXX_FILESYSTE (3rd party).  BS_XXX_FILESYSTEM for the TS?
    I'm really looking for clarity in the definition of the SLD.

  • Direct File System access problems from JAWS application

    Hello,
    I have built a Web Start application that consists of a Webserver (Jetty) ,
    a WAR file and a Java (main) class that deploys the web application on
    the server and starts the server. It all works fine, apart from the fact
    that I am getting java.security.AccessControlExceptions when I try to
    access the local filesystem or system variables like the java.io.tmpdir.
    I have signed all the jar files and I included the<security> <allpermissions />
    </security> tag in the jnlp file. Still, I can't seem to get out
    of the sandbox.
    I have read in this article (http://mindprod.com/jgloss/javawebstart.html)
    that direct file system access from a Web Start application is impossible
    (Quote: "There is still no way for even a signed JAWS app to
    find some persistent disk space in an easy way. It pretty well
    has to ask the user for the name of some directory to use.")
    Is this true?
    Thank you,
    Peter

    Hi Guys,
    I found a way to access the local filesystem...
    Besides signing all the jar files and including the<security><allpermissions /></security> tag in the jnlp file I have to include this line in the code I execute on the client machine:
    System.setSecurityManager(null);
    Regards,
    Peter

  • What is the minimum file system access needed to run ODI 10.1.3.4.0 client?

    Hi ODI discussion folks,
    I have a couple of questions from an Oracle partner that I'm trying to find a definitive answer for if possible. The partner is setting up ODI 10.1.3.4.0 for a customer who insists that the absolute minimum amount of access to the file system is granted due to corporate security policies.
    I have checked the bundled ODI documentation but couldn't really find anything about file system permissions needed to run the ODI client. I was pointed towards the "Setting Up Security for an Integration Project — What to Consider" document but this does not mention a great deal about how much access to the file system is needed for the ODI client to function.
    What the partner is asking is the following:
    "1. What are the minimum file/folder permissions needed for the ODI client installation? I'm installing at xxxxx
    and their machines have to be locked down as much as possible.
    2. Say you have 3 users all wanting to run integrations etc and the Master and Work
    repositories have been set up. An admin installs the ODI client but doesn't
    create the connection to the Master repository. What are the minimum
    file/folder permissions required on the client machine to:
    a) create the connection to the repository
    b) run any subsequent integrations?"
    If anyone can advise on this then that would be much appreciated.
    Regards
    Craig Huggans
    Oracle Hyperion Support
    Message was edited by:
    user648991

    Hi Craig,
    How are you?
    Let me try to contribute a little....
    1) The minimum requirement is for its own installation directory, there is no reason to have access to other directories unless if it is necessary to read files from some other directory at the client
    2) Again only to its own install directory. The connection setting is recorded at \bin install directory. After that, all information are recorded at repository, there is no client work.
    Be free to contact me by email or phone if you have any new doubt. You can get my email from my profile.
    Does it respond your doubts?
    Cezar Santos

  • Ext3fs file system access on Sparc SCSI disk

    We've got a requirement to read data from a SCSI disk with an ext3fs file system which will be connected to a SunBlade system. Write capability would be a bonus.
    We've found some old (and not working) implementations to allow Solaris to mount and read ext2, but these don't work on Sparc. Things like LTools won't work either, since Solaris won't allow access to a SCSI disk that doesn't have a Solaris label on it.
    Does anyone know of any possible solutions to this problem? Any one know of ext3fs for Solaris? Any one know how to access an internal SCSI disk on Sparc that doesn't have a Solaris label on it?
    Thanks
    Ed

    Hmmmmmm........Thanks for the suggestions - have written a test and the results arent good.
    Using file filter to "find" the file is just too slow (1.4 secs and i need to do this 4million times for my application).
    So I understand why the filter is slow compared to directly naming the file as we have to accept/reject them all, whereas if we know the file we can go straight to it. But this is a nightmare for my app. Looks like Im going to have to think again....
      public static void main(String[] args) throws Exception {
        String dir = "/path/files";
        File dirf = new File(dir);
        long l = System.currentTimeMillis();
        File f1 = new File(dirf,"TheRealFile.3253.ser"); // The file in the 30,000 we want
        InputStream i = new FileInputStream(f1);
        System.err.println("--> "+i.read());
        i.close();
        System.err.println("Took: "+(System.currentTimeMillis()-l)+" ms");
        // Test 2
        FileFilter ffx = new FileFilter() {
          public boolean accept(File s) {
            return s.isFile() &&
                   s.getName().startsWith("TheRealFile")
                   && s.getName().endsWith(".ser");
        l = System.currentTimeMillis();
        File [] f2 = dirf.listFiles(ffx);
        //System.err.println("Found: "+f2[0]);
        InputStream i2 = new FileInputStream(f2[0]);
        System.err.println("--> "+i2.read());
        i2.close();
        System.err.println("Took: "+(System.currentTimeMillis()-l)+" ms");
    --> 172
    Took: 0 ms
    --> 172
    Took: 1482 ms

  • Disallow for file system access

    Hi All,
    I would like to not permit to access to file system, how can i do that with permission object. I saw only examples how to set contraints on location where it can access.
    Regards

    I'm sorry but i dont understand the problem. (Maybe someone else will)
    So you have told me that when you pass null to an file permission object, that you find out the mask is "NONE"?
    You want to stop users accessing some files?
    You need to build code that will stop the user accessing certain files
    You want to know if you can put restrictions on the whole VM(What is VM?) or just the context?
    I believe this Link could be helpful for you.

  • Motorola file system access

    hi,
    I wrote a Midlet to access image files on my motorola v3x.I also checked it by Device Emulator .It is working fine.But when i installed in my phone it is not worked.So,if any body worked on this please help me.
    sorry for my bad english.thanks in advance

    We have to start it from begining ..
    Does the device supports full implementation of JSR75. MOTO devices dont support complete implementations. like RAZRv3 i claims to support JSR75 but doesnt supports complete implementation.
    A. Check Call to System.getProperty with key microedition.io.file.FileConnection.version
    should return the implementation version number starting with 1.0
    B.Files read/write permissions should be supported by the device�s native system:
    � javax.microedition.io.Connector.file.read - should enable reading from the file
    system (hereinafter just �read permission�).
    � javax.microedition.io.Connector.file.write - should enable writing to the file
    system (hereinafter just �write permission�).
    If A and B are true ..u can start with below points.
    If it supports the complete implementation, then
    1. is it able to install properly.
    2. Have u specified permissions in the JAD file for the same?
    3. at what stage is it not working, when the file write code is being executed ??
    Message was edited by:
    aeran1

  • Root file system is 100% full on server with oracle databse

    hi,
    This was very strange to me, i have a solaris 10 Generic_122300-03 sun4u sparc SUNW,Sun-Fire-V440, with one oracle database running on it. The daatabase guys was doing some activity and the CPU utilization was 100%. I got an update from db team that their process was hung for aroung 2 hours and db was not coming up. At this point of time the / file system was piling 100% and suddenly the database came up and / file system came down to normal.
    i am not sure what had happened, i didnt get an oppurtunity to check for any logs files getting generated under / apart from var or swap which can cause this. var is seperate file system.
    any idea on finding this out?

    Only thing I can suggest is to have auditing enabled - then you can possibly see what file or directories are being accessed during this time when it slows down. Also make sure you have enough swap space defined. I had production machines in the past that generated massive swap usage and the system would slow to a crawl during the time the application/machine was initializing for a run. Also check the usual messages in /var/adm.

  • File system is getting full Frequently in Federated Portal

    Hi
    In my production federated portal the file system
    File system           /usr/sap/<SID>/JC01 -
    is getting full 100% for every 30 minutes ,
    what could be the reason for this behavior,  this is happening since from 6 days
    can I  be assisted on this
    Regards

    Hi Michael ,
    It does not release the space automatically, what does this command show du -k | sort -n Following are the last lines
    I pasted the lines vertically , but in this page all lines  are  mixed and clubbed horizontally the out put of the command start now  ************************************
    214260  ./j2ee/cluster/server0/temp/webdynpro
    214660  ./SDM/root/origin/sap.com/caf
    214704  ./SDM/root/origin/com.adobe/PDFManipulation/Adobe Systems/0/800.20070626144044.156488
    217212  ./j2ee/cluster/server0/temp
    223168  ./j2ee/cluster/server1/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps
    224000  ./j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps
    225844  ./j2ee/cluster/server1/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal
    226672  ./j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal
    227456  ./j2ee/cluster/dispatcher/log
    233540  ./SDM/root/origin/com.adobe/FontManagerService
    233540  ./SDM/root/origin/com.adobe/FontManagerService/Adobe Systems
    233540  ./SDM/root/origin/com.adobe/FontManagerService/Adobe Systems/0
    262300  ./j2ee/cluster/dispatcher
    283464  ./SDM/root/origin/sap.com/ess
    292296  ./j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/deployment
    295108  ./j2ee/cluster/server1/apps/sap.com/irj/servlet_jsp/irj/root/portalapps
    295324  ./j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/portalapps
    300344  ./j2ee/cluster/server1/temp/webdynpro/temp
    300344  ./j2ee/cluster/server1/temp/webdynpro/temp/sap.com
    350848  ./j2ee/cluster/server1/apps/sap.com/irj/servlet_jsp/irj/root/web-inf
    351096  ./exe
    366616  ./SDM/root/origin/com.adobe/XMLFormService
    366616  ./SDM/root/origin/com.adobe/XMLFormService/Adobe Systems
    366616  ./SDM/root/origin/com.adobe/XMLFormService/Adobe Systems/0
    383428  ./SDM/program
    388232  ./SDM/root/origin/sap.com/tc
    487640  ./j2ee/cluster/server1/temp/webdynpro
    490564  ./j2ee/cluster/server1/temp
    508248  ./j2ee/os_libs/adssap
    519288  ./j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf
    567240  ./SDM/root/origin/com.adobe/PDFManipulation
    567240  ./SDM/root/origin/com.adobe/PDFManipulation/Adobe Systems
    567240  ./SDM/root/origin/com.adobe/PDFManipulation/Adobe Systems/0
    645996  ./j2ee/cluster/server1/apps/sap.com/irj/servlet_jsp/irj/root
    650780  ./j2ee/cluster/server1/apps/sap.com/irj
    650780  ./j2ee/cluster/server1/apps/sap.com/irj/servlet_jsp
    650780  ./j2ee/cluster/server1/apps/sap.com/irj/servlet_jsp/irj
    723796  ./j2ee/os_libs
    814652  ./j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root
    819436  ./j2ee/cluster/server0/apps/sap.com/irj
    819436  ./j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp
    819436  ./j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj
    1248364 ./SDM/root/origin/com.adobe
    1319004 ./j2ee/cluster/server1/apps/sap.com
    1336304 ./j2ee/cluster/server1/apps
    1470012 ./j2ee/cluster/server0/log/archive
    1665496 ./j2ee/cluster/server1/log/archive
    1681300 ./SDM/root/origin/sap.com
    1730984 ./j2ee/cluster/server0/log
    1856844 ./j2ee/cluster/server0/apps/sap.com
    1878272 ./j2ee/cluster/server0/apps
    1927368 ./j2ee/cluster/server1/log
    2929664 ./SDM/root/origin
    2931364 ./SDM/root
    3314792 ./SDM
    3881168 ./j2ee/cluster/server1
    3943000 ./j2ee/cluster/server0
    8094976 ./j2ee/cluster
    9156032 ./j2ee
    12878604  .
    *****************end of out put 
    Regards
    Edited by: sidharthmellam on Oct 27, 2009 4:15 AM

  • File system logs are Full

    In my Database and Application Server,
    mount point /sapmnt/D01/global
    WF_LOG_000000016002_017-rwxrwxrwx   1 root       sys           2936 Jun 22  2007
    WF_LOG_000000016003_017-rwxrwxrwx   1 root       sys           2936 Jun 22  2007
    WF_LOG_000000016004_017-rwxrwxrwx   1 root       sys           2936 Jun 22  2007
    WF_LOG_000000016005_017-rwxrwxrwx   1 root       sys           2936 Jun 22  2007
    WF_LOG_000000016006_017-rwxrwxrwx   1 root       sys          26225 Jun 22  2007
    WF_LOG_000000066004_017-rwxrwxrwx   1 root       sys           5548 Jun 22  2007
    WF_LOG_000000066005_017-rwxrwxrwx   1 root       sys          29140 Jun 22  2007
    WF_LOG_000000066006_017-rwxrwxrwx   1 root       sys          24134 Jun 22  2007
    So shall I remove this logs frm database and Application Server.
    Regards,
    santosh

    Thanx SAM,  for reply message, I use swu10 remove the log.
    but in my file system  is still showing 93 % full.
    /sampmt/D01/global      following direcory are there .
    total 15730
    drwxrwxrwx   2 root       sys         152576 Apr 16 10:35 000JOBLG
    drwxrwxrwx   2 root       sys         432128 Apr 16 18:56 017BDCLG
    drwxrwxrwx   2 root       sys        4234240 Apr 17 09:50 017JOBLG
    -rwxrwxrwx   1 root       sys              0 Jun 22  2007 ABAPPROT
    -rw-rr   1 d01adm     sapsys      416440 Apr 17 09:48 SLOGJ
    -rwxrwxrwx   1 root       sys         639432 Jun 24  2007 SLOGJ.SAV
    -rw-rr   1 d01adm     sapsys      999920 Apr 14 10:27 SLOGJO
    -rwxrwxrwx   1 d01adm     sapsys      999920 Jun 23  2007 SLOGJO.SAV
    -rw-rw----   1 d01adm     sapsys        2515 Apr 15 12:35 WF_LOG_000000125004_017
    -rwxrwxrwx   1 d01adm     sapsys         160 Jun 25  2007 dev_sapstart
    -rwxrwxrwx   1 d01adm     sapsys         270 Jun 24  2007 ms_acl_info
    drwxrwxrwx   2 d01adm     sapsys        1024 Apr 13 09:26 sapcontrol
    drwxrwxrwx   4 d01adm     sapsys          96 Jun 24  2007 security
    pwd
    /sapmnt/D01/global
    shall I remove this logs directory..
    Regards,
    Santosh

  • Files system - access problem (JSR 75)

    Hi All
    My cell phone is Nokia 6288, I'm from Israel.
    The phone should support JSR 75 (FileConnection and PIM API), and I get it without it.
    Probably, my Cell operator decided to remove the built-in support for JSR-75 (which suppose to be there).
    I wonder how can I add or restore the java thing for JSR-75 (if is it possible).
    or if there is someway to get it back because
    I know that Nokia 6288 should include the JSR 75 support.
    How can I be sure that it have be removed?
    Because many application which need this JSR 75 support
    couldn't find files and not work because of that.
    Thanks,
    Adi

    25-Jul-2008 10:33 AM
    burekas wrote:
    I know there is maybe a special burning which should get it back.
    It is not permitted to discuss such operations on this forum.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Search event logs for file system access

    I'm looking to create a script that will allow me to search Windows 2012 security event logs for access to specific folders.  Ideally it would allow the granularity to search for read access events (4663) and specify specific users to view.  One
    example would be to show events for drive F:\ where the folder name is JSmith (including subfolders) and the username is not JSmith.
    I've tried something like this, but can't see how to filter.
    Get-EventLog security | ? {$_.Message.contains("F:\JSmith")}

    Is the match explicit?  How can I use wildcard?  How can I exclude events?
    I recommend asking a search engine and doing some initial research. Here's a starter:
    https://technet.microsoft.com/en-us/library/hh849682.aspx
    http://blogs.msdn.com/b/powershell/archive/2009/06/11/windows-event-log-in-powershell-part-ii.aspx
    http://blogs.technet.com/b/ashleymcglone/archive/2013/08/28/powershell-get-winevent-xml-madness-getting-details-from-event-logs.aspx
    http://blogs.technet.com/b/heyscriptingguy/archive/2011/01/24/use-powershell-cmdlet-to-filter-event-log-for-easy-parsing.aspx
    https://richardspowershellblog.wordpress.com/2009/03/08/get-winevent/
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Windows 8.1 File System Performance Down Compared to Windows 7

    I have a good workstation and a fast SSD array as my boot volume. 
    Ever since installing Windows 8.1 I have found the file system performance to be somewhat slower than that of Windows 7.
    There's nothing wrong with my setup - in fact it runs as stably as it did under Windows 7 on the same hardware with a similar configuration. 
    The NTFS file system simply isn't quite as responsive on Windows 8.1.
    For example, under Windows 7 I could open Windows Explorer, navigate to the root folder of C:, select all the files and folders, then choose
    Properties.  The system would count up all the files in all the folders at a rate of about
    30,000 files per second
    the first time, then about 50,000 files per second the next time, when all the file system data was already cached in RAM.
    Windows 8.1 will enumerate roughly
    10,000 files per second the first time, and around
    18,000 files per second the second time -
    a roughly 1 to 3 slowdown.  The reduced speed once the data is cached in RAM implies that something in the operating system is the bottleneck.
    Not every operation is slower.  I've benchmarked raw disk I/O, and Windows 8.1 can sustain almost the same data rate, though the top speed is a little lower.  For example, Windows 7 vs. 8 comparisons using the ATTO speed benchmark:
    Windows 7:
    Windows 8:
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

    No worries, and thanks for your response.
    The problem can be characterized most quickly by the slowdown in enumerating files in folders.  Unfortunately, besides some benchmarks that show only an incremental degradation in file read/write performance, I don't have any good before/after
    measurements of other actual file operations.
    Since posting the above I have verified:
    My system has 8dot3 support disbled (same as my Windows 7 setup did).
    Core Parking is disabled; CPU benchmarks are roughly equivalent to what they were.
    File system caching is configured the same.
    CHKDSK reports no problems
    C:\TEMP>fsutil fsinfo ntfsInfo C:
    NTFS Volume Serial Number :       0xdc00eddf00edc11e
    NTFS Version   :                  3.1
    LFS Version    :                  2.0
    Number Sectors :                  0x00000000df846fff
    Total Clusters :                  0x000000001bf08dff
    Free Clusters  :                  0x000000000c9c57c5
    Total Reserved :                  0x0000000000001020
    Bytes Per Sector  :               512
    Bytes Per Physical Sector :       512
    Bytes Per Cluster :               4096
    Bytes Per FileRecord Segment    : 1024
    Clusters Per FileRecord Segment : 0
    Mft Valid Data Length :           0x0000000053f00000
    Mft Start Lcn  :                  0x00000000000c0000
    Mft2 Start Lcn :                  0x0000000000000002
    Mft Zone Start :                  0x0000000008ad8180
    Mft Zone End   :                  0x0000000008ade6a0
    Resource Manager Identifier :     2AFD1794-8CEE-11E1-90F4-005056C00008
    C:\TEMP>fsutil fsinfo volumeinfo c:
    Volume Name : C - NoelC4 SSD
    Volume Serial Number : 0xedc11e
    Max Component Length : 255
    File System Name : NTFS
    Is ReadWrite
    Supports Case-sensitive filenames
    Preserves Case of filenames
    Supports Unicode in filenames
    Preserves & Enforces ACL's
    Supports file-based Compression
    Supports Disk Quotas
    Supports Sparse files
    Supports Reparse Points
    Supports Object Identifiers
    Supports Encrypted File System
    Supports Named Streams
    Supports Transactions
    Supports Hard Links
    Supports Extended Attributes
    Supports Open By FileID
    Supports USN Journal
    I am continuing to investigate:
    Whether file system fragmentation could be an issue.  I think not, since I measured the slowdown immediately after installing Windows 8.1.
    All of the settings in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
    Thank you in advance for any and all suggestions.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • "file system error" shows on my ZEN NE

    hi..i see you are really good in solving creative problems.i just bought zen neeon 6gb and it is not up to 4weeks.i discovered that it frozes most time i listen to it after some minutes then i decided to format it.i used windows format and it gave a message'windows unable to format'. now my laptop doesnt reads the player and when i on the player its shows"file system error" and swicthes off it self.please help me out.i saved alot to get this player.be expecting your reply asap
    my email is [email protected]

    Welcome to the world of processor-controlled gadgets. To get the best out of your product you are going to need to learn about things such as firmware - try Wikipedia for a description. Anyway, go to Support->Downloads and choose the Nano Plus from the lists. On the next page is a section for firmware - download the firmware file to your PC then connect your player and run the firmware file. During the process you will see a Format Data Area check box - you need to tick this box and continue. PB

  • Lucreate - „Cannot make file systems for boot environment“

    Hello!
    I'm trying to use LiveUpgrade to upgrade one "my" Sparc servers from Solaris 10 U5 to Solaris 10 U6. To do that, I first installed the patches listed on [Infodoc 72099|http://sunsolve.sun.com/search/document.do?assetkey=1-9-72099-1] and then installed SUNWlucfg, SUNWlur and SUNWluufrom the S10U6 sparc DVD iso. I then did:
    --($ ~)-- time sudo env LC_ALL=C LANG=C PATH=/usr/bin:/bin:/sbin:/usr/sbin:$PATH lucreate -n S10U6_20081207  -m /:/dev/md/dsk/d200:ufs
    Discovering physical storage devices
    Discovering logical storage devices
    Cross referencing storage devices with boot environment configurations
    Determining types of file systems supported
    Validating file system requests
    Preparing logical storage devices
    Preparing physical storage devices
    Configuring physical storage devices
    Configuring logical storage devices
    Analyzing system configuration.
    Comparing source boot environment <d100> file systems with the file
    system(s) you specified for the new boot environment. Determining which
    file systems should be in the new boot environment.
    Updating boot environment description database on all BEs.
    Searching /dev for possible boot environment filesystem devices
    Updating system configuration files.
    The device </dev/dsk/c1t1d0s0> is not a root device for any boot environment; cannot get BE ID.
    Creating configuration for boot environment <S10U6_20081207>.
    Source boot environment is <d100>.
    Creating boot environment <S10U6_20081207>.
    Creating file systems on boot environment <S10U6_20081207>.
    Creating <ufs> file system for </> in zone <global> on </dev/md/dsk/d200>.
    Mounting file systems for boot environment <S10U6_20081207>.
    Calculating required sizes of file systems              for boot environment <S10U6_20081207>.
    ERROR: Cannot make file systems for boot environment <S10U6_20081207>.So the problem is:
    ERROR: Cannot make file systems for boot environment <S10U6_20081207>.
    Well - why's that?
    I can do a "newfs /dev/md/dsk/d200" just fine.
    When I try to remove the incomplete S10U6_20081207 BE, I get yet another error :(
    /bin/nawk: can't open file /etc/lu/ICF.2
    Quellcodezeilennummer 1
    Boot environment <S10U6_20081207> deleted.I get this error consistently (I ran the lucreate many times now).
    lucreate used to work fine, "once upon a time", when I brought the system from S10U4 to S10U5.
    Would anyone maybe have an idea about what's broken there?
    --($ ~)-- LC_ALL=C metastat
    d200: Mirror
        Submirror 0: d20
          State: Okay        
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 31458321 blocks (15 GB)
    d20: Submirror of d200
        State: Okay        
        Size: 31458321 blocks (15 GB)
        Stripe 0:
            Device     Start Block  Dbase        State Reloc Hot Spare
            c1t1d0s0          0     No            Okay   Yes
    d100: Mirror
        Submirror 0: d10
          State: Okay        
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 31458321 blocks (15 GB)
    d10: Submirror of d100
        State: Okay        
        Size: 31458321 blocks (15 GB)
        Stripe 0:
            Device     Start Block  Dbase        State Reloc Hot Spare
            c1t0d0s0          0     No            Okay   Yes
    d201: Mirror
        Submirror 0: d21
          State: Okay        
        Submirror 1: d11
          State: Okay        
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 2097414 blocks (1.0 GB)
    d21: Submirror of d201
        State: Okay        
        Size: 2097414 blocks (1.0 GB)
        Stripe 0:
            Device     Start Block  Dbase        State Reloc Hot Spare
            c1t1d0s1          0     No            Okay   Yes
    d11: Submirror of d201
        State: Okay        
        Size: 2097414 blocks (1.0 GB)
        Stripe 0:
            Device     Start Block  Dbase        State Reloc Hot Spare
            c1t0d0s1          0     No            Okay   Yes
    hsp001: is empty
    Device Relocation Information:
    Device   Reloc  Device ID
    c1t1d0   Yes    id1,sd@THITACHI_DK32EJ-36NC_____434N5641
    c1t0d0   Yes    id1,sd@SSEAGATE_ST336607LSUN36G_3JA659W600007412LQFN
    --($ ~)-- /bin/df -k | grep md
    /dev/md/dsk/d100     15490539 10772770 4562864    71%    /Thanks,
    Michael

    Hello.
    (sys01)root# devfsadm -Cv
    (sys01)root# To be on the safe side, I even rebooted after having run devfsadm.
    --($ ~)-- sudo env LC_ALL=C LANG=C lustatus
    Boot Environment           Is       Active Active    Can    Copy     
    Name                       Complete Now    On Reboot Delete Status   
    d100                       yes      yes    yes       no     -        
    --($ ~)-- sudo env LC_ALL=C LANG=C lufslist d100
                   boot environment name: d100
                   This boot environment is currently active.
                   This boot environment will be active on next system boot.
    Filesystem              fstype    device size Mounted on          Mount Options
    /dev/md/dsk/d100        ufs       16106660352 /                   logging
    /dev/md/dsk/d201        swap       1073875968 -                   -In the rebooted system, I re-did the original lucreate:
    <code>--($ ~)-- time sudo env LC_ALL=C LANG=C PATH=/usr/bin:/bin:/sbin:/usr/sbin:$PATH lucreate -n S10U6_20081207 -m /:/dev/md/dsk/d200:ufs</code>
    Copying.
    *{color:#ff0000}Excellent! It now works!{color}*
    Thanks a lot,
    Michael

Maybe you are looking for

  • How do I move my iTunes library from an external hard drive to my new Time Capsule?

    I stored my 77GB of iTunes library on my six year old 1TB Time Capsule. I just bought a 2TB Time Capsule and moved the iTunes associated folders onto a WD My Passport HD. Now, I can't figure out how to get them onto my new Time Capsule. Can someone p

  • Blue screen when running videos

    Hi I have a pavilion dv6 laptop product number XE056EA#ABV  I get blue screen and computer crashes when i run videos. Recently I received help from HP community and  downloaded the latest graphics adpater dirver. The problem was solved when using goo

  • Disk Utility erase fails after computer wakes up

    I'm having an annoying problem with Disk Utility on OS X Lion 10.7.5 failing to erase a harddrive thats plugged into a HDD Docking Station via USB after computer wakes up from screen-off. I have an OCZ Agility 4 SATAIII 512.11 Gb SSD. I'm trying to d

  • HT201269 How can I delete all my data from former Iphone 4 for future sale on Ebay?

    Hello! I've just purchased an Iphone 5 from a new carrier. Now I should like to sell my former Iphone 4 but, obviously, removing all my personal data (contacts, photographs, etc.) .  How can I transfer the ringtones that I purchased from by Iphone 4?

  • Upgrade to Leopard zapped my network with PCs

    Tiger worked fine, but once I upgraded to Leopard, my networking setup just got fried, to a degree. Although I can still see my XP PC, calling it through the smb process, my Mac won't show on my PC's network service. Using Tiger, I would turn on the