What is /net used for in OS X?

I ask because canon (Digital Photo Professional) DPP hangs for a while while it lstat's /net. I don't particularly want to implement the workaround discussed in this link: http://luminous-landscape.com/forum/index.php?s=0f16e1b119e7e3b03bd84969919a4e32 &showtopic=23582&pid=187194&st=0&#
Destroying properties, reinstalling app, upgrading app have not helped.
From my system:
monkey $ cat /etc/auto_master
# Automounter master map
+auto_master # Use directory service
/net -hosts -nobrowse,nosuid
/home auto_home -nobrowse
/Network/Servers -fstab
/- -static
monkey $ mount | grep net
map -hosts on /net (autofs, automounted)
monkey $ df
Filesystem 512-blocks Used Available Capacity Mounted on
/dev/disk1s2 976101344 515170696 460418648 53% /
devfs 220 220 0 100% /dev
fdesc 2 2 0 100% /dev
/dev/disk3s2 1464477344 1069201144 395276200 74% /Volumes/pdisk4
/dev/disk2s2 1464477344 1081259016 383218328 74% /Volumes/pdisk3
/dev/disk0s2 976101344 540829384 435271960 56% /Volumes/pdisk2
map -hosts 0 0 0 100% /net
map auto_home 0 0 0 100% /home

/net is built into the automounter in OS X and uses the special map -hosts. This built in map will consist of the exports from the named server, when that server is accessed via the /net path. For example, if I have an NFS server at the IP address 192.168.1.10 and it exports a directory /exports, then if I do this from my Mac:
prompt$ cd /net/192.168.1.10/exports
the Mac automounter will contact the server, mount the export, and put me in that directory. All without me having to issue any "mount" command.
I haven't really read that other thread, but what's likely happening is that since your app is trying to stat something on an NFS server (since it's trying to go down the /net path), you are either hanging trying to resolve the server's name, or it's hanging because the server is not responding. Normally, if an application tries to go down the /net path using the name of a server that doesn't exist, or the name of machine that is not exporting anything over NFS, the command (e.g. lstat) will fail almost immediately.
Your problem may not be with the Mac, but with the application itself. If you can figure out what your application is stat'ing, you could then run a simple test from your command line to see if a regular stat (using "ls -l" or the "stat" command) also hangs. You can use the "dtruss" command from the command line to trace your application. (Note that dtruss may only be there if you have the development tools installed, I'm not sure).
If it is your app, your best bet may just be to comment out the /net entry in your auto_master file...

Similar Messages

  • Appleworks does not work with mountain Lion.  What can I use for drawing and painting?

    Appleworks does not work with mountain Lion.  What can I use for drawing and painting?
    MacBook
    Marian

    Please see this article which examines various possible alternatives to AppleWorks:
    http://rfwilmut.net/aw

  • What are the uses for Macbook pro and Macbook air?

    Hi! I am deciding between MBA and MBP and need to know what the different uses for each one was. Like what would you use the MBA for and what would you use the MBP for?? All opinions welcome!!

    They're actually pretty comparible in what they can do if you're talking about the base model of both (say 13") with 4GB RAM. At that level, the Pro has the advantage if you're going to watch or burn DVD's or CD's, as the Air has no optical drive. But otherwise, they're pretty much the same--full-sized, backlit keyboard, camera, beautiful screen, etc. If you're going for more than a basic 13" Pro, then things start to change. For example, you can get up to 8GB RAM on the Pro, and a huge hard drive, you can also get a 15" or 17" size. You will be paying a lot for these, but, obviously, if you're going to be working on, say, making videos (which you may then want burn onto disk) the Pro is very much what you'll want.
    However, if you don't need or want any of that--if, for example, you plan to do the usual programs (word processing, games, web surfing, music, etc.), then you really won't see much difference between the two. At 4GB RAM and a 13" screen, the big difference is going to be thickness and weight, not power. And in this the Air will have the advantage--it's really amazingly slim, light and with a SSD, faster (you pay extra--a lot extra--to get SSD on the Pro).
    Just to make the point, I switched from a 13" Pro to an 11" Air. My hard drive size is half what it was with a Pro, but I was barely taking up half of that amount on the Pro, and so have plenty of room on my 128GB Air (you can get 256GB for the 11" if you order it online). Absolutely everything my Pro did, my Air does (sans optical drive), only faster and lighter and more compact--meaning it takes up less table space, slips in and out of my bag faster, balances on my lap easier, etc. But there was no interruption of service--I switched pretyt seamlessly from 13" Pro to 11" Air.
    The Pro offers you more options for power, screen size, HD size and optical drive. But it's really pretty surprising how few of us need that much power, that much room, or the optical drive. It's very freeing to realize that less can be more than enough.

  • What is the use for CREATING VIEW WITH CHECK OPTION?

    Dear Legends,
    I have a doubt
    What is the use for creating view?
    A: First Data Integrity, Selecting Particular Columns..
    What is the use for creating a view with check option?
    A: As per oracle manual I read that its a referential integrity check through views.
    A: Enforcing constraints at DB level.
    A: using CHECK OPTION we can do INSERTS UPDATES for a view for those columns who have no constraints... is it right??
    A: If we do a INSERT OR UPDATE for columns who have constraints it will show error... is it right???
    Please clear my doubt's Legends
    Lots of Thanks....
    Regards,
    Karthik

    Hi, Karthick,
    karthiksingh_dba wrote:
    ... What is the use for creating view?
    A: First Data Integrity, Selecting Particular Columns..Most views are created and used for convenience. A view is a saved query. If the same operations are often done, then it can be very convenient to code those operations once, in a view, and refer to the view rather than explicitly doing those operations.
    Sometimes, views are created and used for security reasons. For example, you many want to allow some users to see only certain rows or certain columns of a table.
    Views are necessary for INSTEAD OF triggers.
    What is the use for creating a view with check option?
    A: As per oracle manual I read that its a referential integrity check through views.The reason is integrity, not necessarily referential integrity. The CHECK option applies only when DML is done through the view. It prohibits certain changes. For example, if a user can't see certain rows through a view, the CHECK option keeps the user from creating such rows.
    A: Enforcing constraints at DB level.I'm not sure what you mean. Please give an example.
    A: using CHECK OPTION we can do INSERTS UPDATES for a view for those columns who have no constraints... is it right??No. Using CHECK OPTION, you can do some inserts and updates, but not others. The columns involved may or may not have constraints in either case.
    A: If we do a INSERT OR UPDATE for columns who have constraints it will show error... is it right???If you try to violate a constraint, you'll get an error. That happens in views with or without the CHECK OPTION, and also in tables.

  • What cable to use for this?

    I am trying to hook up my xbox 360 to my Macbook pro, and I am unsure of what cable to use for this. Composite cables.

    Hi there Dsc, i tried to do so b4, but with limited success, now the problem is like been told you, MBP is not design to accept INPUT video signals, i got something called EYETV coast me about 120$, but the resolution that XBOX accepts is much higher than MBP screen can afford, i got this message when i tried to hook it up ( the dash board came up from the xbox ): YOU NEED TO ADJUST YOUR SCREEN TO A HIGHER ADJUSTMENT BEFORE YOU CAN PLAY GAMES ON THE CONSOL or so, but thats my experience any way, if you succeeded please let me know, by the way i asked the same Q b4, just search my questions and you will see the answers on my question. hope this helped.

  • What can I use for a low battery warning on a Mac Book OSX10.8?

    What can I use for a low battery warning on a Mac Book OSX10.8?

    What you should see above all your windows when your battery gets to low.

  • What is a cache monitoring? and what it is used for?

    what is a cache monitoring? and what it is used for? how safe it is to execute the transaction RSRCACHE in development?
    Thank you,
    York

    Hi Les,
    Cache is a temporary storage for recently accessed data.
    Used to enhance query performance.
    Use t-code RSRT to view more on cache.
    Please see this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/41/b987eb1443534ba78a793f4beed9d5/content.htm
    Cache helps to improve query performance. As it can save data in memory, flatfile, cluster table or BLOB.
    You can remove cache per query or inactivate it for perticular info provider or inactivate it overall.
    But which is not recommended. Yes if u know that certain queries you dont use often and its not accessing large number of records then you can inactivate it for those queries. you can manage cache via three t-codes RSRT or RSRCACHE or SPRO>SAP Reference IMG>SAP Busines Wearhouse--> Reporting relevent setting -->General Reporting Setting in BEX -->Global Cache Setting.
    please follow the link which has few good documents on cache. which will clear your complete concept for cache.
    https://service.sap.com/bi -->Product information previous releases -->BI InfoIndex --> OLAP --> you will get bunch of documents in that.
    Look at the following threads :
    OLAP Cache
    what is cache?
    also check RSRT and OLAP cahce docs
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/afc59790-0201-0010-9f99-940f7c3934fc
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9f4a452b-0301-0010-8ca6-ef25a095834a
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7c361b95-0501-0010-c0ab-897c5aa14504
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/31b6b490-0201-0010-e4b6-a1523327025e
    Hope this helps.
    ****Assign Points if Helpful****
    Regards,
    Ravikanth.

  • What font is used for the menu of Illustrator CS5?

    What font is used for the menu of Illustrator CS5?
    I know how to change the default font, which is used to input characters.
    But, I do not know how to check the font used in the menu.
    Is it the font that is described in the following files?
    C:\Users\[UserName]\AppData\Roaming\Adobe\Adobe Illustrator CS5 Settings\ja_JP\AIPrefs
    If you know, please tell me how to check the configuration file and how to change the font that is used in the menu.

    If your using windows xp and applied the 12.02 update, then this is a known bug in
    the update effecting xp users and adobe is working on a fix.
    see this thread
    http://forums.adobe.com/thread/762392?tstart=30
    MTSTUNER

  • What is "grab" used for?

    I can't find anything in the macair manual or elsewhere are what to do with "grab". What is it used for and how?

    Grab is an app to take screenshots of your display. When you open it, you won't see any window, but you will see that Grab shows up on the menu bar. Just select the "Capture" menu and choose the option you want.
    Apart from that, you can take screenshots without using Grab, just with these shortcuts:
    - Command, Shift and 3 keys > take a screenshot of the whole display.
    - Command, Shift and 4 keys > take a screenshot of the part you want.
    - Command, Shift, 4 and Space keys > take a screenshot of a window.
    If you want to know more shortcuts, read > http://support.apple.com/kb/PH11229

  • What is Vistex used for

    Hi Experts, What is Vistex used for?

    Hello,
    The SAP Incentive Administration application by Vistex supports a variety of incentive agreements and programs u2013 from simplest to most complex.
    SAP Incentive Administration integrates seamlessly with your SAP software to provide robust administration, analysis, and reporting capabilities. This powerful application enables you to efficiently manage commissions and other incentive programs.
    You can set targets and quotas u2013 and monitor actual results against your budget.
    You may visit these links for further details.
    http://www.vistex.com/home.html
    http://www.sap.com/solutions/solutionextensions/incentives/index.epx
    Prase

  • What is NTFS used for?

    What is NTFS used for?
    How does it work?

    It's the standard Windows file system.
    During installation, the Microsoft Windows installer asks me to format the Windows partition using NTFS or FAT. Which should I use?
    If the partition is 32 GB or smaller, you can use either FAT or NTFS. If it's larger than 32 GB, or you are installing Microsoft Vista, then you can only format it using NTFS. Mac OS X can read and write FAT volumes, but only read NTFS volumes. Refer to the Microsoft Windows documentation if you are not sure which best suits your needs.
    http://support.apple.com/kb/HT1656

  • Does anyone know what ppqryErrorList is used for in EssOtlQueryMembersEx?

    Given a calcscript, I'm wondering if I can get a list of errors back it has multiple errors (e.g. member not found, syntax error etc.) when I run EssOtlQueryMembersEx.
    I've looked at the documentation (http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_api/api_c/otlc/funcs/apcfqmex.htm) and looks like ppqryErrorList does the job for me. However, I'm getting a NULL pointer to ppqryErrorList regardless or whethere there's an error or not.
    e.g. when I call "@ICHILD(blah)" with EssOtlQueryMembersEx I'm hoping the error list (ppqryErrorList) will contain "member not found blah" but it infact returns NULL.
    This parameter on EssOtlQueryMembersEx must be there for a reason. Does anyone know what this is used for?
    Btw, I'm using Essbase 7
    -Steve

    Well, After Effects has a shattering effect, but I'd guess it was a 3D app that created those effects. To see what you can do with Motion, check out this thread:
    Fun with Shattering...
    Patrick

  • What font is used for the tool flyout labels.

    What font is used for the tool flyout labels, mine are blank, however they work fine for the Menu items. Thank you, [email protected]

    If your using windows xp and applied the 12.02 update, then this is a known bug in
    the update effecting xp users and adobe is working on a fix.
    see this thread
    http://forums.adobe.com/thread/762392?tstart=30
    MTSTUNER

  • What SPAD is used for?

    what SPAD is used for?

    Hi,
    1.look here:
    http://help.sap.com/saphelp_47x200/helpdata/en/7e/36e4c4023411d399b70000e83dd9fc/frameset.htm
    2.Could you please look at the below link, it will explain how to create a new page format
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a959551ea11d189570000e829fbbd/content.htm
    Tools --> CCMS --> Spool --> Spool administration. Then choose Full administration and then Page formats on the DeviceTypes tab page
    On next page,choose.. Change, create and fill in the fields, now replace this page format in your script, don't forget to activate it.
    Regards,
    Shiva Kumar

  • What is OEM_sqlplus_input_finished used for?

    During recovery of my database just for testing purpose I got such error:
    Prosz� poda� dziennik: {<RET>=sugerowany | nazwa_pliku | AUTO | CANCEL}
    ORA-00308: you can't open archived log 'OEM_sqlplus_input_finished'
    ORA-27041: can't open file
    OSD-04002: can't open file
    O/S-Error: (OS 2) System can't find file.
    The OEM_sqlplus_input_finished sounds misterious to me. What is it used for?
    Some words you can see above you probably don't understand are in Polish.
    Chris

    ORA-00308 cannot open archived log 'string'
    Cause: The system cannot access a required archived redo log file.
    Action: Check that the offline log exists, the storage device is online, and the archived file is in the correct location. Then attempt to continue recovery or restart the recovery session.
    OEM is a tool for administering Oracle Databases
    OEM = Oracle Enterprise Manager
    That message perhaps was because of those applications
    were getting close.
    You can check, too the alert file of the database.
    Joel P�rez

Maybe you are looking for

  • Error of Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment

    HI My previous asset error was cleared by assigning non-tax  While  using the option of Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment the following error is coming ..... Steps are attached (File and URL) http://rapidshare.com/files/13

  • Sound through DVI-D to HDMI

    I recently acquired a refurbished Pavilion P7-1010 running Windows 7. It has no HDMI output, but it does have a DVI-D output. I would like to hear sound through my HDTV's built-in speakers (I do not have an external sound system or speakers). I trie

  • Manual loading of 2lis_11_vaitm

    HI all, I have downloaded the base tables of 2lis_11_vaitm data source namely VBAK, VBAP, VBUP, VBKD into 4 excel files (small size tables data...). Now I have to upload into BW manually to 2lis_11_vaitm business content datasource. what is the best

  • Crash during sync, now all my apps are gone.

    My laptop and iphone crashed during a sync. Laptop would lock up as soon as the phone was plugged in, and the phone started random reboots and freezes. I reinstalled WinXP and itunes on the laptop, but still could not sync. The phone would come up "s

  • Problems burning to Blu-Ray from PE10

    PE10 is very slow when encoding media while burning my "movie" to a Blu-ray disc, after 5 hours only 25% encoded, then computer shuts down, BTW I did render the movie before attempting burn Can anyone help?