Sponsored Content
Full Discussion: HP-UX, dtlogin, X browser
Operating Systems HP-UX HP-UX, dtlogin, X browser Post 302309632 by vbe on Wednesday 22nd of April 2009 12:08:15 PM
Old 04-22-2009
I had a case where dtlogin was corrupted:
copied from another box and all worked again:
Code:
phar # ll dtlog*
-r-xr-xr-x   1 root       bin         389280 Mar 29  2007 dtlogin
-r-xr-xr-x   1 root       bin         389280 Mar 29  2007 dtlogin.ezra
-rwxr-xr-x   1 root       bin         389512 Sep 27  2001 dtlogin.phar
-rwxr-xr-x   1 root       bin         389512 Sep 27  2001 dtlogin.ori?

I kept a trace of the manip:
Code:
331 Password required for vbe.
Password:
230 User vbe logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> cd /usr/dt/bin
250 CWD command successful.
ftp> get dtlogin
200 PORT command successful.
150 Opening BINARY mode data connection for dtlogin (389280 bytes).
226 Transfer complete.
389280 bytes received in 0.15 seconds (2540.79 Kbytes/s)
ftp> bye
221 Goodbye.
phar # ll dtlo*
-rw-r--r--   1 root       sys         389280 Mar 29 15:19 dtlogin
-rwxr-xr-x   1 root       bin         389512 Sep 27  2001 dtlogin.phar
phar # chown root:bin dtlogin
phar # chmod 555 dtlogin
phar # cp -p dtlogin dtlogin.ezra
phar # /sbin/init.d/dtlogin.rc  stop 
phar # ps -ef|grep dtlo
    root 11523  3322  2 15:21:26 pts/1     0:00 grep dtlo
phar # /sbin/init.d/dtlogin.rc  start

#And now it works......



Addendum: These are HP.UX 11.00 32Bit files..

Last edited by vbe; 04-22-2009 at 01:48 PM.. Reason: Addendum
 

9 More Discussions You Might Find Interesting

1. Solaris

dtlogin logo

hiho, where are the frisky CDE admins.... ;-) how can i change the welcome logo? i found the /usr/dt/config/C/Xresources and the entry: Dtlogin*logo*bitmapFile: but when i enter my own *.bm or *.xpm file the screen use a black logo.... i think i am using the wrong resolution for my picture...... (3 Replies)
Discussion started by: pressy
3 Replies

2. Solaris

Solaris 10 - dtlogin port chnage?

I have changed my dtlogin port from the deault 177 to 180. When I'm at the Remote Login session screen, how do I specify the port number? (5 Replies)
Discussion started by: kungpow
5 Replies

3. AIX

Get CDE/dtlogin to stop listening on port 6000

Hi all, can anyone help me with this? I'm running AIX 5L v5.3 base and installed CDE is 1.0. I've seen recommendations to add "-nolisten tcp" to the args for X but anytime I try that it simply fails to start. I've tried adding it as an arg to /usr/dt/config/Xservers as well as trying to add it... (0 Replies)
Discussion started by: AIXNewbie
0 Replies

4. Solaris

customize dtlogin

Hello out there! I'm using dtlogin with my SunRay 2 and SunRay Server Software 4.0. Now I want to customize the look an funcionality of the dtlogin. e.g. disable the Options - Button or change the Helptext. Can anybody give me a hint where to find a good manual for dtlogin or which files I... (2 Replies)
Discussion started by: Blang
2 Replies

5. Solaris

dtlogin problem? Login incorrect; please try again error

At boot the gui looks like it is starting but right away I see a message box pop up saying: 'login incorrect; please try again' and a black screen otherwise. I click ok and it comes right back up. By the way I am running the SGD software and have 2 sunray DTUs connected. The sunray DTUs display the... (7 Replies)
Discussion started by: darkmuck
7 Replies

6. UNIX for Dummies Questions & Answers

how to verify xdm/gdm or dtlogin is setup to be used by the system

Hi All, I was going through a UNIX system administration handbook and while reading found the below sentence "init is also responsible for spawning graphical login systems such as xdm,gdm, or dtlogin if the system is et up to use them" My question is,how to verify on a UNIX... (3 Replies)
Discussion started by: n_ananthu
3 Replies

7. UNIX and Linux Applications

Browser Help

I'm looking for a browser than can handle heavy java usage. Firefox doesn't seem to be able to handle heavy usage anymore :( . Chromium does a decent job, but its just so different from Firefox I just can't get used to it. I have been trying to get used to chromium for over 2 weeks but can't... (1 Reply)
Discussion started by: cokedude
1 Replies

8. Solaris

dtlogin problem

When I did a ps-ef on a host I noticed that the /usr/openwin/bin/fbconole process was started from the /etc/init PID, and was owned by the operator. What could have caused this issue? (0 Replies)
Discussion started by: amp4cats
0 Replies

9. AIX

Defunct process with dtlogin

Hi, I tried to kill the defunct process but it didn't work. I don't want to make a mistake because some people are working on the server. I don't know if they might have troubles without dtlogin. I would like stop/start dtlogin to stop the defunct process Do you think that works?... (6 Replies)
Discussion started by: Castelior
6 Replies
PHAR.EXTRACTTO(3)							 1							 PHAR.EXTRACTTO(3)

Phar::extractTo - Extract the contents of a phar archive to a directory

SYNOPSIS
public bool Phar::extractTo (string $pathto, [string|array $files], [bool $overwrite = false]) DESCRIPTION
Note This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown. Extract all files within a phar archive to disk. Extracted files and directories preserve permissions as stored in the archive. The optional parameters allow optional control over which files are extracted, and whether existing files on disk can be overwritten. The sec- ond parameter files can be either the name of a file or directory to extract, or an array of names of files and directories to extract. By default, this method will not overwrite existing files, the third parameter can be set to true to enable overwriting of files. This method is similar to ZipArchive.extractTo(3). PARAMETERS
o $pathto - Path within an archive to the file to delete. o $files - The name of a file or directory to extract, or an array of files/directories to extract o $overwrite - Set to TRUE to enable overwriting existing files RETURN VALUES
returns TRUE on success, but it is better to check for thrown exception, and assume success if none is thrown. ERRORS
/EXCEPTIONS Throws PharException if errors occur while flushing changes to disk. EXAMPLES
Example #1 A Phar.extractTo(3) example <?php try { $phar = new Phar('myphar.phar'); $phar->extractTo('/full/path'); // extract all files $phar->extractTo('/another/path', 'file.txt'); // extract only file.txt $phar->extractTo('/this/path', array('file1.txt', 'file2.txt')); // extract 2 files only $phar->extractTo('/third/path', null, true); // extract all files, and overwrite } catch (Exception $e) { // handle errors } ?> SEE ALSO
PharData.extractTo(3). PHP Documentation Group PHAR.EXTRACTTO(3)
All times are GMT -4. The time now is 02:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy