Sponsored Content
Full Discussion: NFS mount hangs
Top Forums UNIX for Advanced & Expert Users NFS mount hangs Post 302216220 by robotronic on Friday 18th of July 2008 09:00:06 AM
Old 07-18-2008
Quote:
Originally Posted by incredible
what does "dfshares" outputs?
Here it is:
Code:
eprod/root> dfshares
RESOURCE                                  SERVER ACCESS    TRANSPORT
     eprod:/usr1                           eprod  -         -

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Mount nfs filesystem

I try to share a directory from a wortstation to a server. the share command was no problem. Solaris 8 on mars share -F nfs -o rw /dir/dir2 on the server mount mars:/dir/dir2 /mount_point RPC: Program not registered <--- What is the meaning of this ? Thanks for you help ! (2 Replies)
Discussion started by: joerg
2 Replies

2. Filesystems, Disks and Memory

NFS mount

Hi All, Can any one help in Mounting remote filesystems with NFS? Thanks in advance. Regards, Suresh. (4 Replies)
Discussion started by: srvaka1
4 Replies

3. UNIX for Dummies Questions & Answers

mount -o llock -F nfs vs mount -F nfs

Hi, We encountered NFS issue (solaris) especially running on Oracle application. Problem such as forms hang when close button is click, concurrent job shows running status all time. Understand we need to use mount -o llock -F nfs instead of mount -F nfs to eliminate? this problem.. Can... (1 Reply)
Discussion started by: KhawHL
1 Replies

4. UNIX for Dummies Questions & Answers

NFS mount

I have a NAS server that needs to have the share mounted on a unix server. I am not that familiar with NFS mounts....any help on what I have to do on the UNIX box...thanks! (7 Replies)
Discussion started by: andrewd
7 Replies

5. Solaris

NFS mount. Nobody Nobody permissions.

Hi, I have an NFS mount on a Solaris 10 server with file permissions nobody:nobody. This is an NFS export from an Netapp filer. Export attributes from the filer are below. Anonymous User ID=0 Read-Write Access (All Hosts) Security (sys) I have other NFS exports set up with the same... (7 Replies)
Discussion started by: gwhelan
7 Replies

6. Red Hat

Redhat nfs client hangs after 5 minutes

New at NFS. 3 machines at hand 1 RedHat nfs Client which is connected to a spectrometer (chemistry Instrument): # uname -a Linux BH083108 2.6.9-78.0.17.ELsmp #1 SMP Thu Mar 5 04:52:17 EST 2009 i686 i686 i386 GNU/Linux # cat /proc/version Linux version 2.6.9-78.0.17.ELsmp... (9 Replies)
Discussion started by: hpg4815
9 Replies

7. OS X (Apple)

NFS Mount

Hello! Im trying to mount an nfs share. But got a bit of a problem. The problem im having is that i try to mount The problem is that the my.server.com/pub/home is owned by root. I know i can make a mount point my.server.com://pub/home/username - > /pub/home But that means i have to do... (1 Reply)
Discussion started by: dozy
1 Replies

8. IP Networking

Can't see home folder on one NFS mount but can in another mount on another share

Hello, I have a few Ubuntu 9.10 laptops I'm trying to learn NFS sharing with. I am just experimenting on this right now, so no harsh words about the security of what I'm playing with, please ;) Below are the configs /etc/exports on host /home/woodnt/Homeschool... (2 Replies)
Discussion started by: Narnie
2 Replies

9. UNIX for Dummies Questions & Answers

Mount NFS

Hi I have 2 servers, one is running on SunOS SPARC and the other is running on GNU Linux. Since my Linux is very poor I am not sure on how to mount a NFS from SunOS to Gnu Linux. Please help! FS at Host Server: root@rocux4 # ls -ld /data/PCFILES/GTPROD/DWHFILES.NEW drwxrwxrwx 4 nobody ... (6 Replies)
Discussion started by: hedkandi
6 Replies

10. Shell Programming and Scripting

Mount NFS Share On NFS Client via bash script.

I need a help of good people with effective bash script to mount nfs shared, By the way I did the searches, since i haven't found that someone wrote a script like this in the past, I'm sure it will serve more people. The scenario as follow: An NFS Client with Daily CRON , running bash script... (4 Replies)
Discussion started by: Brian.t
4 Replies
glib-mkenums(1)                                                    User Commands                                                   glib-mkenums(1)

NAME
glib-mkenums - generate C language enum description SYNOPSIS
glib-mkenums [--comments text] [--eprod text] [--fhead text] [--fprod text] [--ftail text] [--help] [--version] [--vhead text] [--vprod text] [--vtail text] [file...] DESCRIPTION
glib-mkenums parses C code to extract enum definitions, and produces enum descriptions based on text templates specified by the user. glib- mkenums produces C code that contains enum values as strings, which allows programs to provide value name strings. EXTENDED DESCRIPTION
This section provides more information about text substitution and trigraph extensions. Text Substitution glib-mkenums substitutes certain keywords, which are enclosed in @ characters, when creating the output text. For the substitution examples of the keywords in this section, the following example enum definition is assumed: typedef enum { PREFIX_THE_XVALUE = 1 << 3, PREFIX_ANOTHER_VALUE = 1 << 4 } PrefixTheXEnum; glib-mkenums substitutes the following keywords: @EnumName@ The name of the enum currently being processed. enum names are assumed to be properly namespaced and to use mixed capitalization to separate words (for example, PrefixTheXEnum). @enum_name@ The enum name with words in lowercase and each word separated by underscores (for example, prefix_the_xenum). @ENUMNAME@ The enum name with words in uppercase and each word separated by underscores (for example, PREFIX_THE_XENUM). @ENUMSHORT@ The enum name with words in uppercase and each word separated by underscores, and with the prefix stripped (for example, THE_XENUM). @VALUENAME@ The enum value name currently being processed, with words in uppercase and each word separated by underscores. This is the assumed literal notation of enum values in the C sources (for example, PREFIX_THE_XVALUE). @valuenick@ A nickname for the enum value currently being processed. This is usually generated by stripping the common prefix words of all of the enum values of the current enum, with words in lowercase and underscores substituted by hyphens (for example, the-xvalue). @type@ This is substituted either by enum or flags, depending on whether the enum value definitions contain bit-shift operators or not (for example, flags). @Type@ Same as @type@, but with the first letter capitalized (for example, Flags). @TYPE@ Same as @type@, but with all letters in uppercase (for example, FLAGS). @filename@ The name of the input file currently being processed (for example, foo.h). Trigraph Extensions Some C comments in the parsed enum definitions are treated as special. Such comments start with the trigraph sequence /*< and end with the trigraph sequence >*/. Per enum definition, the skip and flags options are supported. The skip option indicates that this enum definition should be skipped. The flags option specifies that this enum definition should be treated as a flags definition, or specifies the common prefix to be stripped from all values to generate value nicknames. Per value definition, the skip and nick options are supported. The skip option causes the value to be skipped. The nick option specifies the otherwise autogenerated nickname. OPTIONS
The following options are supported: --comments text Output text. --eprod text Output text every time an enum occurs in the input files. --fhead text Output text prior to processing input files. --fprod text Output text every time a new input file is processed. --ftail text Output text when all input files have been processed. --help Show usage and basic help information. --version Show version information. --vhead text Output text before iterating the set of values of an enum. --vprod text Output text for every value of an enum. --vtail text Output text after iterating all values of an enum. OPERANDS
The following operands are supported: file Specifies a valid C code file. EXAMPLES
Example 1: Examples of Trigraph Extensions typedef enum /*< skip >*/ { PREFIX_FOO } PrefixThisEnumWillBeSkipped; typedef enum /*< flags,prefix=PREFIX >*/ { PREFIX_THE_ZEROTH_VALUE, /*< skip >*/ PREFIX_THE_FIRST_VALUE, PREFIX_THE_SECOND_VALUE, PREFIX_THE_THIRD_VALUE, /*< nick=the-last-value >*/ } PrefixTheFlagsEnum; EXIT STATUS
The following exit values are returned: 0 Application exited successfully >0 Application exited with failure FILES
The following files are used by this application: /usr/bin/glib-mkenums The command-line executable for the application. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWgnome-base-libs-devel | +-----------------------------+-----------------------------+ |Interface stability |External | +-----------------------------+-----------------------------+ SEE ALSO
glib-genmarshal(1), libglib-2.0(3) NOTES
Updated by Brian Cameron, Sun Microsystems Inc., 2003. Written by Tim Janik. SunOS 5.10 7 Apr 2003 glib-mkenums(1)
All times are GMT -4. The time now is 07:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy