Can you re-export an nfs mount as an nfs share

If so what is the downside?
I'm asking because we currently have an iscsi san and a recent upgrade
severely degraded iscsi connectivity. consequently can't mount my iscsi
volumes.
Thanks,
db

Originally Posted by David Brown
The filer/san NFS functionality is working normally. I can't access
some of the iscsi luns. Thinking of just using NFS as the backend.
Which would be a better sub forum?
Thank you,
db
Depending on which Novell OS you are running.... this subform is for NetWare, but I suspect you are using OES Linux.
I've never tried creating a NCP share on OES for a remote NFS mount on the server. My first guess would be it is not allowed and also not a good practice. You could however, with this situation and if you are running an OES2 or OES 11 Linux server, try configuring an NFS mount on the OES server and then configuring the NCP share on that using remote manager on the server.
What I would recommend however to see if the iSCSI issue cannot be fixed or worked around.
Could you describe a bit more of the situation there/what happened and what is not working on that end?
-Willem

Similar Messages

  • Can you send/export a still frame from an FCP sequence?

    Can you send/export a still frame from FCP as a picture to the desktop? Doesn't matter if it is a .jpeg, .tiff, . bitmap
    G5 Mac OS X (10.4.8) Dual 1.8

    serach the forum for any of the hundreds of posts detailing this process -
    my personal favorite is shift-N, apple-9, type name, drag to bin, batch export.
    The best thing about the batch export queue is you can set up a batch with the file format and destination folder and then keep adding new clips/stills to export.
    Hope this helps -
    Max Average

  • Can you help me locate the current running events to share customer success stories on SAP HANA?

    Hi Team,
    The customer with whom I m working is interested to share his story on SAP HANA and wanted to know if there is any forum to share the same?
    Can you help me with the same?
    Regards,
    Krishna Tangudu

    Hi Team,
    The customer with whom I m working is interested to share his story on SAP HANA and wanted to know if there is any forum to share the same?
    Can you help me with the same?
    Regards,
    Krishna Tangudu

  • Can you batch export in FCP X, can you batch export in FCP X

    I work for a business and am constantly working on projects that have multiple, separate projects within the same project. because of this I do all my editing during my business day and then when I leave for the day, I used to batch export the projects and the next morning I would come into work and be able to move onto the next thing. so far in FCP X I have not been able to find out how to do that. I know that in FCP 7 you could do it obviously, but I'm wondering...does FCP X have that same capability because I can't seem to find it and I don't really have the time to waste by exporting during the day.
    Thanks for your help,
    Scotty

    Hey Scotty,
    Andynick is correct about the batch export workaround.  The way I do it is this:
    1.     Go to the Project Library
    2.     Select the first project you want to export
    3.     Go to file>Send to Compressor. (I set a shortcut -Sift>Option>C from preferences, If you need help with that let me know.
    4.     Repeat this process for each project
    5.     Go to Compressor (it will already be open)
    6.     Now here's where it gets kind of anoying, You need to choose which batch you want to make your main one. Pull off the tab on top and drag that project into your prefered batch, then close the old tab.  Now you'll have two projects in your chosen batch.
    7.     repeat that process for the rest of the batches Compressor created.  When you're done you should only have one batch open with all of your projects in it.
    8.     Submit the batch and let Compressor do it's thang.
    Things to note:
    When you send a project to compressor, it will automatically choose your default settings and location.  If you want them to be different you'll have to do it mannually or change your defaults before you begin this process.
    FUN right! Hopefully Apple will fix this so you can at least select multiple projects in the Project Library to make it a bit easier.
    If anyone has a better workflow I am all ears!

  • Can you change export setting?

    Any way of changing the export setting on LiveType? I'm working with dvcpro codec 720 60 and the default export is Animation. Anyway of changing this on LiveType? Thanks!
    *Taking it to FCP7 and trying to match Sequence settings
    Message was edited by: Chulo01

    LiveType always exports as Animation because of the Alpha channel.
    There is a setting for 720 HD in Edit > Project Properties. You will have to customize the frame rate if your FCP Timeline is 60P. Easy enough to do, just type in the numbers.
    Instead of rendering a movie, you should save the LiveType project file and import that into FCP (it has a .ipr ending). You will have to re-render both the .ipr and the .mov output from LiveType. Save yourself a step and just import the .ipr. It can be treated exactly as if it were a video clip.

  • Can you save Export Settings?

    Title says it all. I can't believe you wouldn't be able to, but I can't seem to find a way. Once I get that perfect setup, I don't want to lose it.
    Thanks!
    sjlocke

    Nope. Only the "Most Recent" settings (those used last) are available. Once you switch to a different export option those become the most recent (removing the older settings).
    On a Mac we use AppleScript to create export settings and can just drag and drop a .mov file onto the Droplet to export.
    We also have a new app named Automator that can create workflows.
    QuickTime for Windows is scriptable.

  • Can you enumerate exported symbols in a loaded SWF?

    We have a number of SWFs that we use as asset libraries.  These SWFs each contain a bunch of statically exported symbols.
    I'm trying to make a tool to help catalog our assets.  I want the tool to be able to load these library SWFs and extract a list of all the exported symbols each contains.  Is that possible to do?  I can't find a way to enumerate or iterate over the exported symbols in the application domains of the loaded SWFs.
    (I could swear I saw an example of doing this in documentation somewhere, but now I can't find it... I'm wondering if I dreamed it, or misinterpreted some other example.)
    I'd be game for doctoring up the library SWFs in some way, e.g. make them use some custom helper class as their document class, if that would help.

    A friend of mine and I came to this post hoping to be told how to do it, after getting just "use jsfl" we set off on our journey to learn a bit about it.
    After an hour, we did it!... Kinda. Thanks for suggesting jsfl.
    So in CS5, we go File > New > Flash JavaScript File
    Then we looked at some jsfl docs ( http://help.adobe.com/en_US/Flash/10.0_ExtendingFlash/WS5b3ccc516d4fbf351e63e3d118a901b0bd -8000.html) tried and tried, looked at the docs some more, tried some more and eventually came up with this script:
    var doc = fl.openDocument("file:///PutFilePathHere/YourFlashFilesName.fla");
    var itemArray = fl.getDocumentDOM().library.items;
    var iLength = itemArray.length;
    fl.trace(iLength.toString());
    fl.outputPanel.clear();
    for(var i = 0; i < iLength; ++i)
        if(itemArray[i] == "[object SymbolItem]")
            var str = itemArray[i].name;
            var iLastIndex = (str.lastIndexOf("/"));
            if(iLastIndex > -1)
                str = str.slice(iLastIndex+1);
                fl.trace(str);
    fl.outputPanel.save("file:///PutFilePathHere/ExportedSymbols.txt");
    And yay! A text document filled with all the symbols in in the library. Ok, ok, it's not perfect because it includes symbols that weren't marked as "export for actionscript 3" which is what we initially wanted, but we're either going to perfect it or just deal with it and put identifiers on our LinkageNames (like EX_Tree, EX_Fire for exported to as3 symbols, and just leave the other symbols alone).

  • Can you accelerate exporting ?

    Hey
    I am exporting AVI files to my apple TV but it takes so long, any ideas on how to speed that up ?
    thanks
    KBook1501

    Are you exporting .avi or converting .avi to .mp4 or .mov? If you have QuickTime Pro and the source is already h264 just select pass-thru. If you don't have pro I would download mkvtools. If the file is .avi with h264 video and aac audio just select pass-thru and it will take about 5 minutes for a full-length movie.
    If your source is not h264 then no, it is just going to take forever. Make sure not to change resolution which will slow things down if you do. Otherwise if the speed is killing you, the only other option is a faster cpu.

  • Can you export audio tracks as AIFF? I dont get it!

    I recorded some audio narration tracks and I am trying to export just the tracks one by one into an audio editing program.
    Can you only export audio files to iTunes??????
    Is there a way to export the files as normal audio files?
    Thank you!

    Ok, will do. Thanks!!!
    So they don't let you set your own sample rates and such. That is pretty darn lame. Very limited control.

  • Permissions issue with NFS mounted MyCloud

    FIrst off let me say I think this is a LInux issue and not a WDMyCloud issue, but I'm not sure, so here goes... I can rsync my stuff off the  Linux systems on my LAN to back them up into a WDMyCloud share, no problem.  But then I can't get at some stuff with limited file permissions, when I mount the WDMyCloud via NFS. Here's the problem...  Let's s say my directory tree on the WDMyCloud looks like "/shares/Stuff/L1/L2/L3" where the permissions on "L3" look like this: drwx------+ 3 fred share 4096 Jul 1 01:03 L3 It's readable/writeable only by "fred".  I want to preserve the permissions and ownerships on everything, so if I have to do a restore and "rsync" it back onto another machine they'll go back the way they were when I backed them up.  I can see the contents of "L3" if I "ssh" into the MyCloud, *but* I *cannot* see the contents of  "L3" if I try to look at it via the NFS mount - I get ls: L3: permission denied. If I change the permissions on it, e.g.drwxrwxrwx+ 3 fred share 4096 Jul 1 01:03 L3then I can see the contents of "L3" just fine.  So it's just the fact that via the NFS mount the MyCloud NFS server (Or something?) won't give me access to it unless the permissions are open, even logged in as "root" on the machine where the MyCloud is NFS mounted. I tried creating "fred" as a user on the MyCloud *and* made sure the numerical UID and GIDs were the same on the Linux machine and the MyCloud - No dice. I haven't tried everything in the world yet (I haven't tried rebooting the MyCloud to see if some server hasn't picked up the changes to "/etc/passwd" or whatever ; there's something called "idmapd" that I guess I should look into...  Etc.)  But I thought maybe somebody here might have run into this or have a bright idea?  

    I had some problems, and I modified the /etc/exports file to meet a little more my needs This is the content of it: -------/nfs/jffs *(rw,sync,no_root_squash,no_subtree_check)/nfs *(rw,all_squash,sync,no_subtree_check,insecure,crossmnt,anonuid=999,anongid=1000)-------- The first line/share allows to change the permissisions and uid below them when you monted on your machineThe second one I maped the anonuid to the uid my user has on the wd (999) so when I mount a share on the machine everything is write with that used id If you modifes the /etc/exports file remeber to run after you edited the command "exportfs -a" to refresh the changes Hope this help with your problem

  • Can you create a file without presenter's notes?

    Can you create/export a file that won't be able see presenter's notes, either in Keynote or PPT format?

    Yes, I can export to pdf without the notes. I was wondering if it was possible to send someone the slides in PPT format without including my presenters' notes.
    They are lecture slides for a class, so I am giving my students copies in pdf, but I might want to give them to someone else in a format they can edit and use as slides, but without having my notes to myself in there. I suppose it's not designed for such an option, as far as I can tell, hiding the notes doesn't make a difference if exporting to PPT.

  • Can you organize your "links" panel by FILE TYPE ?

    Can you organize your "links" panel by FILE TYPE ?
    Or can you somehow export to somewhere and accomplish this?

    Yes.
    Choose Panel Options from the Links panel menu and tick the checkbox next for Format under Show Column:
    Then, click the Format column-head button to sort...click again to toggle ascending / descending...

  • Can you oracle 9.2 rman backup to NFS mounted disk?

    Running is disc space issues.
    We're using oracle 9.2, can we run rman backups to an NFS mounted disk?

    to RMAN there's no difference between local mounted disk or NFS mounted disk
    It's just a mount point with some directory structures.

  • Vi error on nfs mount; E212: Can't open file for writing

    Hi all,
    I've setup a umask of 0 for testing on both NFS client (Centos 5.2) and NFS server (OSX 10.5.5 server).
    I can create files as one user and edit/save out as another user w/o issue when directly logged into the server via ARD.
    However, when I attempt the same from an NFS mount on a client machine, even as root I get the following error using vi;
    "file" E212: Can't open file for writing
    Looking at the system.log file on the server, I see;
    kernel[0]: add_fsevent: no name hard-link! dropping the event. (event 2 vp == 0xa5db510 (-UNKNOWN-FILE)).
    This baffles me. My umask is 0 meaning files I create and attempt to edit as other users are 777, but I cannot save out edits unless I do a wq! in vi. At that point, the owner of the file changes to whomever did the vi.
    This isn't just a vi issue as it happens using any editor, but I like to use vi.
    Any help is greatly appreciated. Hey, beer is on me!

    Hi all,
    Thanks for the replies
    I've narrowed it down to a Centos client issue.
    Everything works fine using other Linux based OS's as clients.
    Since we have such a huge investment in Centos, I must figure out a workaround. Apple support wasn't much help as usual however they were very nice.
    There usual response is "its unsupported".
    If Apple really wants to play in the enterprise of business space, they really need to change there philosophy. I mean telling me that I shouldn't mount home directories via NFS is completely rediculus.
    What am I supposed to use then, Samba of AFP? No, I don't think so. No offense to Microsoft but why would I use a Windows based file sharing protocol to mount network shares in a Nix env???

  • I have a huge file which is in GB and I want to split the video into clip and export each clip individually. Can you please help me how to split and export the videos to computer? It will be of great help!!

    I have a huge file which is in GB and I want to split the video into clip and export each clip individually. Can you please help me how to split and export the videos to computer? It will be of great help!!

    video
    What version of Premiere Elements do you have and on what computer operating system is it running?
    Please review the following workflow.
    ATR Premiere Elements Troubleshooting: PE11: Project Assets Organization for Scene and Highlight Grabs from Collection o…
    But please also determine if your project goal is supported by
    a. format of your source
    and
    b. computer resources
    More later based on details that you will post.
    ATR

Maybe you are looking for

  • HP LaserJet 4200 -- manual feed tray not working after 10.6 install

    Hi all... One of my users pointed this out to me. I'm looking for confirmation (or a solution)? We have an HP LaserJet 4200 printer added to our mac clients as an IP printer. Under 10.5.8, printing to "Tray 1 (Manual)" goes where you think it would -

  • Calling reports from oracle forms 9i

    Hi I succeded to call reports from oracle forms but for I have a problem for only one report so I can't call it. this a part of the code I'm using : declare      pl_id2 ParamList;      pl_name2 VARCHAR2(30) := 'liste2';       v_rep VARCHAR2(100);    

  • Decimal places  for qualitative characterstics in inspection lot

    i have lot quantity with decimal (i.e 2.5 Ltr),and lot is generated for 01 type inspection type,But we have assigned MIC's as qualitative characterstics,While result recording the MIC's are  either accepted are rejected,for this in RRecording,I am en

  • Cenvat

    1. On purchase of Raw Material Having polyester component we take Cenvat Credit On polyester . 2. At the time of sale, if  Excise Duty is not being charged in the sale invoice, the sale dept. informs the percentage of polester used in manufacturing o

  • Integration Scenario Configurator

    Hello! I want to generate the receiver determination for an integration process on XI 3.0 SP10 with the Integration Scenario Configurator. I have created an Integration Scenario in the Integration Repository, there are no errors when checking with F7