Janquark

Revision 1 as of 2008-02-19 11:58:21

Clear message

=Quality of Help Enhancement=

some thoughts for helpers and the users seeking help

After reading some (quite a lot of threads) in this Absolute Beginners Section I realize there are two sorts of threads.

  1. Recurring Issues
  2. Unique Issues

The unique issues must be read as if it were your first day in the Linux World. You must forget every standard procedure and search for new ways, start being creative. Ask intelligent new questions which will guide the new user and also you as the helper to the core of the problem. The Unique Issues are the threads which will bring you knowledge to a higher level. Because when you stand still, not moving, only copy this paste that, your brain also makes a break. Sometimes it is very relaxing. But it should not become your target state.

But there are also the Recurring Issues. Issues which are well known by the helpers which spent some time in this forum. This is the salient point of this thread. As the seeker of help start your thread with some input, so we can suggest a solution based on facts not on stories.

Also use a descriptive title for your new thread. "Help me, I am a new user, and hit the wall" is bad. "Wireless Broadcom 4311 Connectivity Issue" is good.

Another important point is that I do not want to write a guide how to solve every problem. I just want to stress the importance of being as exact as possible without to degenerate to a robot.

Please feel free to add your advices and suggestions, your important and recurring starting commands, your first ideas.

I hope this small thread will help to improve the great service this forums offers. I do not want to make the help unspiritual and static. But sometimes some input at the beginning would be nice...

==Help us to help you==

Network Issues

Please post the output of these terminal commands to shed some light on your current network status.

Code:

iwconfig

Code:

ifconfig

Code:

sudo iwlist scan

Code:

cat /etc/network/interfaces

Mounting Issues

Please post the output of these terminal commands to detect the current partition situation:

Code:

mount

Code:

sudo fdisk -l

Code:

cat /etc/fstab

Graphical Issues

and also other issues somehow linked with hardware. We have to know your hardware to help. What driver do you have installed? Are you running Compiz ? Do you have installed some unusual applications in the past days? Are you dual-booting?

Code:

lspci

Code:

lsusb

Code:

sudo lshw

Code:

cat /etc/X11/xorg.conf

to test your card and show info run this Code:

glxgears -info

Reconfigure the Xserver automatically: Code:

sudo dpkg-reconfigure -phigh xserver-xorg startx

Restarting GNOME Code:

sudo /etc/init.d/gdm restart

Application Installation Issues

Code:

sudo apt-get update

sudo apt-get upgrade

Code:

cat /etc/apt/sources.list

for fixing broken packages Code:

sudo apt-get -f install

Code:

sudo dpkg --configure -a

Other useful Terminal Commands

Navigating in Terminal

for changing the directory Code:

cd

for listing all files and folders in the current directory Code:

ls

You can use the TAB-key to automatically finish a long filename. For instance a file is named asadkjfnaskfnas.deb. Just type cd asa and press tab to auto-complete the file name.

List Command

for additional help on the list command run Code:

ls --help

list permissions in the current folder Code:

ls -l

Show free space in memory, cache and swap Code:

free

Show cpu usage, tasks running, memory and swap Code:

top