Sponsored Content
Full Discussion: NFS from windows 2008
Operating Systems Solaris NFS from windows 2008 Post 302925615 by Tommyk on Tuesday 18th of November 2014 07:06:49 AM
Old 11-18-2014
Thanks hicksd8.

I know UNIX/Linux is case sensitive which is why i was surprised that this instance showed that Solaris was not being case sensitive.

The issue appears to be due to a .Net Framework 2.0 update. There is a registry setting which assigns case sensitivity or case insensitivity.

Code:
Set the HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\kernel\ dword:ObCaseInsensitive
 registry key  to 0

A file system that was case sensitive becomes case insensitive after you install an update for the .NET Framework 2.0

This requires a reboot of the windows server.

Code:
# ls -la
total 26
drwxrwxrwx   2 nobody   nobody        64 Nov 18 10:28 .
drwxrwxrwx   2 nobody   nobody     12288 Nov 18 11:43 ..
-rwxrwxrwx   1 nobody   nobody        88 Nov 18 10:29 abc.txt
# ls -la ABC.txt
ABC.txt: No such file or directory

I have also tested this on a Linux client and it shows the same symptoms that the Linux client was case insensitive.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

NFS for Windows

has anyone used any products to map windows drives to a solaris machine? if so can you please let me know of any problems you have seemed to have and which products you have tried. (4 Replies)
Discussion started by: Optimus_P
4 Replies

2. HP-UX

Mounting of unix NFS to windows XP

is it possible? i will only config on the windows side. is there a third party software to help me accomplish this? tnx (3 Replies)
Discussion started by: Amaru
3 Replies

3. UNIX for Advanced & Expert Users

Windows machine with NFS-Client

Hi all expert, can anybody know how to export windows user home directory on NFS server so user can access there files from windows as well as Linux. In short configure windows machine with an NFS client is there any third party software & how 2 configure it . Any idea. Thanks in... (1 Reply)
Discussion started by: jagnikam
1 Replies

4. Windows & DOS: Issues & Discussions

NFS HDD mount on Windows XP

Hi, Unix based, My harddrive won't boot and I'm looking for a reliable tool that can mount a hdd on Windows XP and show me the files stored on a NFS system. I tried the tool: Ext2IFS but this didn't work. I found a lot of tools on google to mount nfs share thru a network but that's... (1 Reply)
Discussion started by: severt
1 Replies

5. Windows & DOS: Issues & Discussions

Install Windows 2003 R2 on existing Windows 2008

Hi, I am trying to install WIndows 2003 R2 Server on existing Windows 2008 server. When I run the 2003 cd it says no disk found. What can be the problem. (2 Replies)
Discussion started by: gunnervarma
2 Replies

6. Solaris

Problem with samba and windows 2008

Hello everybody for Argentina i send my regards. I have question i have a samba (version 2.2.8A) runing on a solaris 10 sparc . There is a problem to connect said that there is a problem with the permission and refuse conection. Somebody knows what version of samba fix this problem? Thank you... (0 Replies)
Discussion started by: enkei17
0 Replies

7. AIX

Access AIX NFS Share from Windows Server 2008

Hi all, Hopefully this question hasn't been asked a thousand times. I am trying to connect a Windows Server to an exported NFS share which resides on an AIX box. I think the directory is exported correctly from the AIX side but I can't verify that because I didn't do it myself. On the... (6 Replies)
Discussion started by: ThePistonDoctor
6 Replies

8. Red Hat

Mounting NFS filesystem on Windows server

Hello Can someone please suggest how should I configure Samba to share the drive from Linux to Window server, and Windows server is in AD environment. is this require winbind to be installed ?? Thanks, (0 Replies)
Discussion started by: bobby320
0 Replies

9. UNIX for Dummies Questions & Answers

NFS mount of Windows NAS

The UPS connected to the Disk Array portion of my Windows 2003 NAS burned up over the weekend. Reconnected it to a new UPS and re-booted the NAS box. Since then I have not been able to get my HPUX 10.2 box to mount the shared drives on the NAS. At boot, the NFS client & server subsystems do a... (0 Replies)
Discussion started by: twalker0
0 Replies

10. Windows & DOS: Issues & Discussions

NFS mount error in windows

I am trying to set a share between windows and an AIX server. I was able to do this to a windows 2008 server. I am now trying to get this to worked on a windows 7 enterprise pc. below is what i get. I have turned off the firewall wall in windows the user is an admin in the pc. same account works... (6 Replies)
Discussion started by: fierfek
6 Replies
XtSetSensitive()														  XtSetSensitive()

Name
  XtSetSensitive - set the sensitivity state of a widget.

Synopsis
  void XtSetSensitive(w, sensitive)
	 Widget w;
	 Boolean sensitive;

Inputs
  w	    Specifies the widget.

  sensitive Specifies whether the widget should receive keyboard, pointer, and focus events.

Description
  XtSetSensitive()  sets  the  sensitivity  state of w.  If sensitive is False, then w and all of its descendants will become insensitive and
  will not have any KeyPress, KeyRelease, ButtonPress, ButtonRelease, MotionNotify, EnterNotify, LeaveNotify,  FocusIn,  or  FocusOut  events
  dispatched	       to	    them.	     If 	  sensitive	      is	  True, 	 and	      if	  w's
  XtNancestorSensitive resource is also True, then w and its children will be made sensitive again, except for any children that have explic-
  itly been made insensitive by calling XtSetSensitive() or by setting their XtNsensitive resource.

  See  the  "Background"  section below for more details on the algorithm followed by XtSetSensitive() and on how the sensitivity of a widget
  affects the sensitivity of its descendants.

Usage
  Many widgets will display themselves differently when they are insensitive.  A common approach is to draw themselves through a stipple mask
  so  that  they appear grayed-out.  XtSetSensitive() uses XtSetValues() when it sets the XtNsensitive and XtNancestorSensitive resources, so
  widgets can check for changes to these resources in their set_values() method and take the appropriate action.

  In an application, it is good style to make any widget insensitive if it does not currently make sense for the user to select it.   A  menu
  item labeled "Delete Selected Items", for example, should be insensitive if there are not any currently selected items.  A button that pops
  up a modal dialog box should be made insensitive while that dialog box is popped up, so that the user cannot attempt to pop it up again.

  You can test the sensitivity state of a widget by calling XtIsSensitive().

  Note that you can also set the sensitivity of a widget by setting the XtNsensitive resource directly.  It is better to  use  XtSetSensitive
  because this handles composite widgets correctly.  If you want a non-composite widget to be insensitive when it is created, you can specify
  False for XtNsensitive from a resource file or an argument list.  You can query the value of the  XtNancestorSensitive  resource,  but  you
  should never set it.

  Popup  shells  will  have  their  XtNancestorSensitive resource set to False if their parent was insensitive when they were created.	Since
  XtSetSensitive() on the parent will not modify the resource in the popup child, you should either be sure that you only create popup shells
  as children of sensitive widgets, or that you include a line like the following in your app-defaults file:

     *TransientShell.ancestorSensitive: True

Background
  Widget  sensitivity  is  controlled by the sensitive and ancestor_sensitive fields in the Core instance record.  XtNsensitive and XtNances-
  torSensitive are the resource names for these fields.  A widget can be insensitive because its sensitive field is False or because  one  of
  its ancestors is insensitive.  A widget can, but does not need to, distinguish these two cases visually.

  XtSetSensitive()	  first        calls	    XtSetValues()	 on	  the	    current	  widget       to	set	  the
  XtNsensitive resource to the value specified by sensitive.  If sensitive is False and the widget is a subclass  of  Composite,  XtSetSensi-
  tive()  recursively  propagates  the	new  value down the children tree by calling XtSetValues() on each child to set ancestor_sensitive to
  False.  If sensitive is True and the widget is a subclass of Composite and the widget's ancestor_sensitive field is True, then  XtSetSensi-
  tive()  sets	the  ancestor_sensitive  of each child to True and then recursively calls XtSetValues() on each normal descendant that is now
  sensitive to set ancestor_sensitive to True.

  XtSetSensitive() ensures that if a parent has either sensitive or ancestor_sensitive set to False, then all children	have  ancestor_sensi-
  tive set to False.

See Also
  XtGetValues(1), XtIsSensitive(1), XtSetValues(1).

Xt - Resource Management													  XtSetSensitive()
All times are GMT -4. The time now is 08:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy