SliTaz GNU/Linux official and community documentation wiki.
.png
Translations of this page:

This is an old revision of the document!


Frequently Asked Questions

Listed here are the most frequently asked questions from the user forums. Please check here to see if your problem has been fixed before starting a new forum thread.

These are organised into per-scenario groups - from system-level through to the desktop. Within each, a symptom describes a give-away identification of the problem; a widely-working solution is then outlined.


Cannot Login to Desktop

Symptoms
  • Slim, the SliTaz Login Manager, fails with the message:
 failed to execute login command 
Explanation

This is caused when files in the user's /home directory are not properly configured. The following files must exist, this can be verified with the ls -la command:

  • .Xdefaults
  • .xinitrc
  • something else?
Solution

You should copy the default files from the template located in the /etc/skel directory. This happens automatically when a new user is created with the SliTaz Control Box, but not when using the command-line utilities. Occasionally users experience these files being removed or modified/broken.

Switch to the root (super) user:

 su root 

Change to the affected users /home directory:

 cd /home/USERNAME 

Set the shell options to allow the dot (.) to be included in file names:

 shopt -s dotglob 

Copy all files, recursively:

 cp -r /etc/skel/* /home/USERNAME 

Change ownership of all files and directories in the user's home to that of the affected user:

 chown -R USERNAME:USERGROUP /home/USERNAME/* 

Restore the shell options:

 shopt -u dotglob 

The essential files should now be restored!



Page Review Section
Quality Low
Review Major Updates FIXME
Priority High
Problems add a forum post link
OR add a lab issue tracker link
How to Improve Suggest briefly, e.g.,
Add link
Add new rows like this ;-)



 
en/guides/faq.1272984048.txt.gz · Last modified: 2010/07/08 17:17 (external edit)