Skip Navigation Links | |
Exit Print View | |
Troubleshooting Typical Issues in Oracle Solaris 11.1 Oracle Solaris 11.1 Information Library |
1. Managing System Crash Information (Tasks)
2. Managing Core Files (Tasks)
3. Troubleshooting System and Software Problems (Tasks)
Troubleshooting a System Crash
What to Do If the System Crashes
Gathering Troubleshooting Data
Troubleshooting a System Crash Checklist
Customizing System Message Logging
How to Customize System Message Logging
Enabling Remote Console Messaging
Using Auxiliary Console Messaging During Run Level Transitions
Guidelines for Using the consadm Command During an Interactive Login Session
How to Enable an Auxiliary (Remote) Console
How to Display a List of Auxiliary Consoles
How to Enable an Auxiliary (Remote) Console Across System Reboots
How to Disable an Auxiliary (Remote) Console
Troubleshooting File Access Problems
Solving Problems With Search Paths (Command not found)
How to Diagnose and Correct Search Path Problems
4. Troubleshooting Miscellaneous System and Software Problems (Tasks)
Users frequently experience problems, and call on a system administrator for help, because they cannot access a program, a file, or a directory that they could previously use.
Whenever you encounter such a problem, investigate one of three areas:
The user's search path may have been changed, or the directories in the search path may not be in the proper order.
The file or directory may not have the proper permissions or ownership.
The configuration of a system accessed over the network may have changed.
This chapter briefly describes how to recognize problems in each of these three areas and suggests possible solutions.
A message of Command not found indicates one of the following:
The command is not available on the system.
The command directory is not in the search path.
To fix a search path problem, you need to know the pathname of the directory where the command is stored.
If the wrong version of the command is found, a directory that has a command of the same name is in the search path. In this case, the proper directory may be later in the search path or may not be present at all.
You can display your current search path by using the echo $PATH command.
Use the type command to determine whether you are running the wrong version of the command. For example:
$ type acroread acroread is /usr/bin/acroread
$ echo $PATH
Is the search path correct?
Is the search path listed before other search paths where another version of the command is found?
Is the command in one of the search paths?
If the path needs correction, go to step 3. Otherwise, go to step 4.
|
|
$ which command
Example 3-6 Diagnosing and Correcting Search Path Problems
This example shows that the mytool executable is not in any of the directories in the search path using the type command.
$ mytool -bash: mytool: command not found $ type mytool -bash: type: mytool: not found $ echo $PATH /usr/bin: $ vi $HOME/.profile (Add appropriate command directory to the search path) $ . $HOME/.profile $ mytool
If you cannot find a command, look at the man page for its directory path.
Frequently, file and directory ownerships change because someone edited the files as superuser. When you create home directories for new users, be sure to make the user the owner of the dot (.) file in the home directory. When users do not own “.” they cannot create files in their own home directory.
Access problems can also arise when the group ownership changes or when a group of which a user is a member is deleted from the /etc/group database.
For information about how to change the permissions or ownership of a file that you are having problems accessing, see Chapter 7, Controlling Access to Files (Tasks), in Oracle Solaris 11.1 Administration: Security Services.
When users cannot access files or directories that they previously could access, the permissions or ownership of the files or directories probably has changed.
If users have problems using the rcp remote copy command to copy files over the network, the directories and files on the remote system may have restricted access by setting permissions. Another possible source of trouble is that the remote system and the local system are not configured to allow access.
See Strategies for NFS Troubleshooting in Managing Network File Systems in Oracle Solaris 11.1 for information about problems with network access and problems with accessing systems through AutoFS.