Sponsored Content
Operating Systems Linux Red Hat + + in .rhosts is causing a "Permission Denied" Post 302629359 by mark54g on Tuesday 24th of April 2012 01:51:41 PM
Old 04-24-2012
Might I suggest a heavy rock, or a stick with which to beat them?

Sorry, r commands have been superseded, and are insecure as all hell.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

screen throws "permission denied"

Hi all, i've got problem in running a script in background... i have written a script, and i want to run it everytime i log in, but when i log off i want the script to stay (i watch not to run two scripts at one time in the script). so as a normal user i want to do: $ screen my_script & ... (6 Replies)
Discussion started by: miechu
6 Replies

2. UNIX for Advanced & Expert Users

permission denied for ". " (dot space)

Hi, When I try to run a script with ". "(dot space) in my home, it gives me error ".: Permission denied". Any explanation for this behaviour? Thanks in advance, -Ashish (3 Replies)
Discussion started by: shriashishpatil
3 Replies

3. UNIX for Dummies Questions & Answers

changing password with sudo user " permission denied"

HI All, I am using solaris i created a user adam and updated his permissions in vi sudoers file as follows adam ALL=(ALL) NOPASSWORD: ALL ........... when i create user by logging as sudo user . $ sudo useradd -d /home/kalyan -m -s /bin/sh kalyan sudo: not found ... (6 Replies)
Discussion started by: kalyankalyan
6 Replies

4. UNIX for Advanced & Expert Users

EACCES "Permission denied" while open(2)

guest@ulidtko:~$ id uid=126(guest) gid=134(guest) groups=134(guest) guest@ulidtko:~$ ls -ld /home drwxr-xr-x 8 root root 4096 May 12 19:47 /home guest@ulidtko:~$ ls -l /home ls: cannot open directory /home: Permission denied guest@ulidtko:~$ cat /proc/mounts rootfs / rootfs rw 0 0... (4 Replies)
Discussion started by: ulidtko
4 Replies

5. OS X (Apple)

"Permission Denied" while modifying mounted files on MAC

Hi, I have two machines 1. MacOSx (Users --> userMac , IP - a.b.c.d) 2. FreeBSD (Users --> userBSD, IP- p.q.r.s) I want to modify some files of FreeBSD on my MacOS. So, I mounted the FreeBSD folder on my Mac as follows. $ sudo mount -o -P p.q.r.s:/usr/home/user... (5 Replies)
Discussion started by: akash.mahakode
5 Replies

6. Solaris

BSM auditing issues, need to audit "permission denied"

Let me preface with I am semi-new to Solaris. I work with it in the labs at work and that's about my extent (although I run Linux at home). Well, a week ago security comes around with updated requirements, some of which are the need to audit all failures. For the life of me I cannot get a... (0 Replies)
Discussion started by: mph275
0 Replies

7. Linux

Showing "permission denied" when trying to login in - Montavista Linux

Hello friends, I have scratched my system and after that when I am trying to access the console via root login it's failing with an error message of "permission denied". I am able to access the other login, I am having only problem with root and some other user login. I am using an telnet... (2 Replies)
Discussion started by: sanoop
2 Replies

8. UNIX for Advanced & Expert Users

Showing "permission denied" when trying to login in - Montavista Linux

Hello friends, I have scratched my system and after that when I am trying to access the console via root login it's failing with an error message of "permission denied". I am able to access the other login, I am having only problem with root and some other user login. I am using an telnet... (7 Replies)
Discussion started by: sanoop
7 Replies

9. Solaris

"Permission denied" when changing IP netmask

hello everyone, I am new on unix systems. I am working with a Solaris 10 OS. When i try to change netmask on certain interface: I get: How can i enable permission for changing that ? I have administrator privileges. Your help is much appreciated. thanks, (13 Replies)
Discussion started by: pablod76
13 Replies

10. OS X (Apple)

"Permission denied" when trying to SSH my iPhone though password is correct

Hi, I hope this is the correct section in the forum to post as I'm trying to SSH from my MacBook. I was looking to see whether ssh on my jailbroken iPhone 6s (10.3.1) still works fine and was following this old reddit guide. I installed OpenSSH&OpenSSL from Cydia and changed the password using... (7 Replies)
Discussion started by: hss1
7 Replies
XtInitialize()															    XtInitialize()

Name
  XtInitialize - initialize toolkit and display.

Synopsis
  Widget XtInitialize(shell_name, application_class, options, num_options, argc, argv)
	 String shell_name;    /* unused */
	 String application_class;
	 XrmOptionDescRec options[];
	 Cardinal num_options;
	 Cardinal *argc;
	 char *argv[];

Inputs
  shell_name
	    This parameter is ignored; you can specify NULL.

  application_class
	    Specifies the class name of this application.

  options   Specifies how to parse the command line for any application-specific resources.  The options argument is passed as a parameter to
	    XtDisplayInitialize().

  num_options
	    Specifies the number of entries in options list.

  argc	    Specifies a pointer to the number of command line parameters.

  argv	    Specifies the command line parameters.

Outputs
  argc	    Returns the number of command line arguments remaining after the command line is parsed with XtDisplayInitialize()

  argv	    Returns the command line as modified by XtDisplayInitialize().

Returns
  A toplevel applicationShell widget.

Availability
  XtInitialize() has been superseded by XtAppInitialize().

Description
  XtInitialize() is a convenience function for initializing an Xt application.	It calls  XtToolkitInitialize()  to  initialize  the  toolkit
  internals,  creates a default application context for use by other superseded functions, calls XtOpenDisplay() with display_string NULL and
  application_name NULL, and finally calls XtAppCreateShell() with application_name NULL and returns the created  shell.   The	semantics  of
  calling XtInitialize() more than once are undefined.

Usage
  XtInitialize() has been superseded in Release 4 by XtAppInitialize(), which is a more general initialization function which supports multi-
  ple application contexts and fallback resources, among other things.	There are a number of Xt  functions  that  have  been  superseded  by
  "XtApp"  versions that take an application context as an argument.  If you want to use these superseded functions, you must initialize your
  application with XtInitialize() which creates the default application context that these functions all use.

  If you do not want to use multiple application contexts, multiple displays, or fallback resources, you can continue to use  XtInitialize().
  We recommend, however, that you use XtAppInitialize() and the other XtApp*() application context specific functions.

  See XtAppInitialize() for more information.

See Also
  XtAppCreateShell(1), XtAppInitialize(1), XtOpenDisplay(1), XtToolkitInitialize(1).

Xt - Initialization														    XtInitialize()
All times are GMT -4. The time now is 12:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy