<div>i followed the istructions but kde3 after the start says cannot start applet and conqueror cant open modules..</div>
<div>do you have any cue? is something missing in the path?</div>
<div>here is the profile:</div>
<div>
<p># base-files version 3.7-1</p>
<p># WARNING<br>#<br># IF THIS FILE IS MODIFIED IT WILL NOT BE UPDATED BY THE CYGWIN<br># SETUP PROGRAM.&nbsp; IT BECOMES YOUR RESPONSIBILITY.</p>
<p># The latest version as installed by the Cygwin Setup program can<br># always be found at /etc/defaults/etc/profile</p>
<p># Some resources...</p>
<p># Customizing Your Shell: <a href="http://www.dsl.org/cookbook/cookbook_5.html#SEC69">http://www.dsl.org/cookbook/cookbook_5.html#SEC69</a><br># Consistent BackSpace and Delete Configuration:<br>#&nbsp;&nbsp; <a href="http://www.ibb.net/~anne/keyboard.html">
http://www.ibb.net/~anne/keyboard.html</a><br># The Linux Documentation Project: <a href="http://www.tldp.org/">http://www.tldp.org/</a><br># The Linux Cookbook: <a href="http://www.tldp.org/LDP/linuxcookbook/html/">http://www.tldp.org/LDP/linuxcookbook/html/
</a></p>
<p># Setup some default paths.&nbsp; Note that this order will allow user installed<br>#&nbsp; software to override 'system' software</p>
<p># If you wish to change the path for all users, it is recommended you edit<br>#&nbsp; /etc/bash.bashrc</p>
<p># If you wish all future users to have some default setup, it is recommended you<br>#&nbsp; edit /etc/skel/.bashrc</p>
<p># If you wish to change the path on a user by user basis, it is recommended you<br>#&nbsp; edit ~/.bashrc</p>
<p>PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:$PATH<br>export PATH</p>
<p>MANPATH=/usr/local/man:/usr/share/man:/usr/man:$MANPATH<br>export MANPATH</p>
<p>INFOPATH=/usr/local/info:/usr/share/info:/usr/info:$INFOPATH<br>export INFOPATH</p>
<p><br>#PATH=/usr/bin:/usr/local/bin:/usr/X11R6/bin:/opt/gnome/bin:/opt/kde2/bin:$PATH<br>#MANPATH=/usr/man:/usr/local/man:/usr/X11R6/man:/opt/gnome/man:/opt/kde2/share/man:$MANPATH<br>#INFOPATH=/usr/info:/usr/local/info:/opt/gnome/info:$INFOPATH
<br>#KDEDIR=/opt/kde2<br>DISPLAY=<a href="http://127.0.0.1:0">127.0.0.1:0</a>.0</p>
<p>export PATH MANPATH INFOPATH KDEDIR DISPLAY</p>
<p><br># Set the user id<br>USER=&quot;`id -un`&quot;<br>export USER</p>
<p># Here is how HOME is set, in order of priority, when starting from Windows<br>#&nbsp; 1) From existing HOME in the Windows environment, translated to a Posix path<br>#&nbsp; 2) from /etc/passwd, if there is an entry with a non empty directory field
<br>#&nbsp; 3) from HOMEDRIVE/HOMEPATH<br>#&nbsp; 4) / (root)</p>
<p># If the home directory doesn't exist, create it.<br>if [ ! -d &quot;${HOME}&quot; ]; then<br>&nbsp;mkdir -p &quot;${HOME}&quot;<br>&nbsp;echo &quot;Copying skeleton files.&quot;<br>&nbsp;echo &quot;These files are for the user to personalise&quot;
<br>&nbsp;echo &quot;their cygwin experience.&quot;<br>&nbsp;echo<br>&nbsp;echo &quot;These will never be overwritten.&quot;<br>&nbsp;echo<br>&nbsp;cd /etc/skel<br>&nbsp;/bin/find . -type f | while read f; do<br>&nbsp;&nbsp;fDest=`echo ${f} | sed -e 's/^\.//g'`
<br>&nbsp;&nbsp;if [ ! -e &quot;${HOME}${fDest}&quot; -a ! -L &quot;${HOME}${fDest}&quot; ]; then<br>&nbsp;&nbsp;&nbsp;/usr/bin/install -D -p -v &quot;${f}&quot; &quot;${HOME}/${fDest}&quot;<br>&nbsp;&nbsp;fi<br>&nbsp;done<br>fi</p>
<p>chmod 1777 /tmp 2&gt;/dev/null</p>
<p># Default to unix make mode<br>MAKE_MODE=unix<br>export MAKE_MODE</p>
<p># It is recommended that cvs uses ssh for it's remote shell environment<br>CVS_RSH=/bin/ssh<br>export CVS_RSH</p>
<p># Patches to Cygwin always appreciated ;)<br># CVSROOT=:pserver:anoncvs@sources.redhat.com:/cvs/src<br># export CVSROOT</p>
<p># Shell dependent settings<br>case &quot;`echo &quot;_$0&quot; | /usr/bin/tr '[:upper:]' '[:lower:]' | /usr/bin/sed -e 's/^_//'`&quot; in<br>bash&nbsp;&nbsp;&nbsp;&nbsp; | -bash&nbsp;&nbsp;&nbsp;&nbsp; | */bash | \<br>bash.exe | -bash.exe | */bash.exe )<br>
&nbsp;# Set a HOSTNAME variable<br>&nbsp;HOSTNAME=`hostname`<br>&nbsp;export HOSTNAME</p>
<p>&nbsp;# Set a default prompt of: <a href="mailto:user@host">user@host</a> and current_directory<br>&nbsp;PS1='\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ '<br>&nbsp;;;<br>ksh*&nbsp;&nbsp;&nbsp;&nbsp; | -ksh*&nbsp;&nbsp;&nbsp;&nbsp; | */ksh* | \<br>ksh*.exe | -ksh*.exe | */ksh*.exe )
<br>&nbsp;# Set a HOSTNAME variable<br>&nbsp;typeset -l HOSTNAME</p>
<p>&nbsp;# Set a default prompt of: <a href="mailto:user@host">user@host</a> and current_directory<br>&nbsp;PS1='^[]0;${PWD}^G<br>^[[32m${USER}@${HOSTNAME} ^[[33m${PWD}^[[0m<br>$ '<br>&nbsp;;;<br>zsh*&nbsp;&nbsp;&nbsp;&nbsp; | -zsh*&nbsp;&nbsp;&nbsp;&nbsp; | */zsh* | \<br>zsh*.exe | -zsh*.exe | */zsh*.exe )
<br>&nbsp;# Set a default prompt of: <a href="mailto:user@host">user@host</a>, a command counter, and current_directory<br>&nbsp;PS1='(<a href="mailto:%n@%m)[%h">%n@%m)[%h</a>] %~ %% '<br>&nbsp;<br>&nbsp;# Set SHELL if not set<br>&nbsp;if [ ! -z &quot;${ZSH_NAME}&quot; -a -z &quot;${SHELL}&quot; ]; then
<br>&nbsp;&nbsp;SHELL=&quot;/bin/zsh&quot;<br>&nbsp;&nbsp;export SHELL&nbsp;<br>&nbsp;fi<br>&nbsp;;;<br>sh&nbsp;&nbsp;&nbsp;&nbsp; | -sh&nbsp;&nbsp;&nbsp;&nbsp; | */sh | \<br>sh.exe | -sh.exe | */sh.exe )<br>&nbsp;# Set a simple prompt<br>&nbsp;PS1='$ '<br>&nbsp;;;<br>* )<br>&nbsp;# Sorry, this shell has no defaults in /etc/profile,
<br>&nbsp;#&nbsp; feel free to add your own.</p>
<p>&nbsp;# If you have some recommendations for what these defaults<br>&nbsp;#&nbsp; should be, please contact <a href="mailto:cygwin@cygwin.com">cygwin@cygwin.com</a> with the<br>&nbsp;#&nbsp; shell details and what you would like added.</p>
<p>&nbsp;# Thanks<br>&nbsp;<br>&nbsp;PS1='$ '<br>&nbsp;;;<br>esac</p>
<p>export PS1</p>
<p># Run all of the profile.d scripts<br># Note that these are supplied by separate packages<br># Ascending alphanumerical order enforced<br>if [ -d &quot;/etc/profile.d&quot; ]; then<br>&nbsp;while read f; do<br>&nbsp;&nbsp;if [ -f &quot;${f}&quot; ]; then
<br>&nbsp;&nbsp;&nbsp;. &quot;${f}&quot;<br>&nbsp;&nbsp;fi<br>&nbsp;done &lt;&lt;- EOF<br>&nbsp;`/bin/find -L /etc/profile.d -type f -iname '*.sh' -or -iname '*.zsh' | LC_ALL=C sort`<br>&nbsp;EOF<br>fi</p>
<p># Uncomment to use the terminal colours set in DIR_COLOR<br># eval &quot;`dircolors -b /etc/DIR_COLORS`&quot;</p>
<p># Default to removing the write permission for group and other<br>#&nbsp; (files normally created with mode 777 become 755; files created with<br>#&nbsp; mode 666 become 644)<br>umask 022</p>
<p># Define default printer<br>PRINTER=&quot;&quot;<br>case `uname -s` in<br>CYGWIN_NT-*)<br>&nbsp;PRINTER=&quot;`regtool -q get '\user\Software\Microsoft\Windows NT\CurrentVersion\Windows\Device' | sed 's/,.*$//'`&quot;<br>&nbsp;;;
<br>CYGWIN_9?-*)<br>&nbsp;PRINTER=&quot;`regtool -q get '\config\System\CurrentControlSet\Control\Print\Printers\Default'`&quot;<br>&nbsp;;;<br>esac<br>export PRINTER</p>
<p># Make sure we start in home unless invoked by CHERE<br>if [ ! -z &quot;${CHERE_INVOKING}&quot; ]; then<br>&nbsp; unset CHERE_INVOKING<br>else<br>&nbsp; cd &quot;${HOME}&quot;<br>fi</p>
<p># Check to see if mkpasswd/mkgroup needs to be run try and cut down the emails<br>#&nbsp;&nbsp; about this on the lists!<br># If this message keeps appearing and you are sure it's a mistake (ie, don't<br>#&nbsp;&nbsp; email about it!), comment out the test below.
<br>case `id -ng` in<br>mkpasswd )<br>&nbsp; echo &quot;Your group is currently \&quot;mkpasswd\&quot;.&nbsp; This indicates that&quot;<br>&nbsp; echo &quot;the /etc/passwd (and possibly /etc/group) files should be rebuilt.&quot;<br>&nbsp; echo &quot;See the man pages for mkpasswd and mkgroup then, for example, run&quot;
<br>&nbsp; echo &quot;mkpasswd -l [-d] &gt; /etc/passwd&quot;<br>&nbsp; echo &quot;mkgroup&nbsp; -l [-d] &gt; /etc/group&quot;<br>&nbsp; echo &quot;Note that the -d switch is necessary for domain users.&quot;<br>&nbsp; ;;</p>
<p>mkgroup )<br>&nbsp; echo &quot;Your group is currently \&quot;mkgroup\&quot;.&nbsp; This indicates that&quot;<br>&nbsp; echo &quot;the /etc/group (and possibly /etc/passwd) files should be rebuilt.&quot;<br>&nbsp; echo &quot;See the man pages for mkpasswd and mkgroup then, for example, run&quot;
<br>&nbsp; echo &quot;mkpasswd -l [-d] &gt; /etc/passwd&quot;<br>&nbsp; echo &quot;mkgroup&nbsp; -l [-d] &gt; /etc/group&quot;<br>&nbsp; echo &quot;Note that the -d switch is necessary for domain users.&quot;<br>&nbsp; ;;</p>
<p>mkgroup_l_d )<br>&nbsp; echo &quot;Your group name is currently \&quot;mkgroup_l_d\&quot;. This indicates that not&quot;<br>&nbsp; echo &quot;all domain users and groups are listed in the /etc/passwd and&quot;<br>&nbsp; echo &quot;/etc/group files.&quot;
<br>&nbsp; echo &quot;See the man pages for mkpasswd and mkgroup then, for example, run&quot;<br>&nbsp; echo &quot;mkpasswd -l -d &gt; /etc/passwd&quot;<br>&nbsp; echo &quot;mkgroup&nbsp; -l -d &gt; /etc/group&quot;<br>&nbsp; echo<br>&nbsp; echo &quot;This message is only displayed once (unless you recreate /etc/group)&quot;
<br>&nbsp; echo &quot;and can be safely ignored.&quot;</p>
<p>&nbsp; # only display the above once<br>&nbsp; cp -f /etc/group &quot;${HOME}/group.mkgroup_l_d&quot; \<br>&nbsp; &amp;&amp; ( [ -w /etc/group ] || chmod --silent a+w /etc/group ; )\<br>&nbsp; &amp;&amp; sed -e 's/^mkgroup_l_d/mkgroup-l-d/' &quot;${HOME}/group.mkgroup_l_d&quot; &gt; /etc/group \
<br>&nbsp; &amp;&amp; chmod --silent --reference=/etc/passwd /etc/group<br>&nbsp; rm -f &quot;${HOME}/group.mkgroup_l_d&quot;<br>&nbsp; ;;<br>esac<br></p></div>