Re: [expert] rc files

2000-09-24 Thread Jeff Malka

Great.  Thanks.

Jeff Malka <[EMAIL PROTECTED]>
Registered Linux user  183185

- Original Message -
>
> Most of the system wide rc files are in /etc.
> But this list will vary from a system to another, as those files come with
> the packages they are related to.
> Beside, there are a lot of config files that end with ".conf".
> So, you will find all of them by running :
>   find / -name "*rc" -o -name "*conf"
>
> If you want, you can also automatically create the symlinks :
>   mkdir ~/configfiles
>   find / -name "*rc" -o -name "*conf" -exec ln -s {} ~/configfiles \;
>
> (remove the '-o -name "*.conf"' if you want only the rc files)
>
> HTH
> Flupke





Keep in touch with http://mandrakeforum.com: 
Subscribe the "[EMAIL PROTECTED]" mailing list.



Re: [expert] rc files

2000-09-24 Thread Alexander Skwar

On Sun, Sep 24, 2000 at 03:14:25PM +0200, flupke wrote:
>   mkdir ~/configfiles
>   find / -name "*rc" -o -name "*conf" -exec ln -s {} ~/configfiles \;

To avoid the error message when find is in ~/configfiles use something like

 find / -name "*rc" -o -name "*conf" | grep -v ~/configfiles | \
xargs --replace ln -s {} ~/configfiles

Alexander Skwar
-- 
Homepage:   http://www.digitalprojects.com | http://www.dp.ath.cx
Sichere Mail?   Mail an [EMAIL PROTECTED] fuer GnuPG Keys
ICQ:7328191



Keep in touch with http://mandrakeforum.com: 
Subscribe the "[EMAIL PROTECTED]" mailing list.



Re: [expert] rc files

2000-09-24 Thread flupke

On Sun, 24 Sep 2000, Jeff Malka wrote:

> In my reading I discovered that ...rc stands for "run commands"  Thus .pinerc
> is the file that contains the "commands to run" when you open pine.  .bashrc are
> the list of commands to run when bash starts, etc.  Coming from the
> DOS/Windows world this is sort of like a autoexec.bat-configuration file
> combination.
> 
> What I am having trouble figuring out is the logic as to "where" the various
> rc files are to be found.  Many seem to be in various locations outside the
> home directory.  It does not seem right that one should have to "discover"
> their locations one at a time and then remember where they are for later use  I
> would like to create a folder on my desktop that contains kdelinks (symlinks?)
> to all the important ones so that they would be easily available to look
> at and modify without having to hunt for them.
> 
> To do that, I need a list of where they are and where they can be found or at
> least the logic linux uses to place them here or there.  Could someone help
> provide this list?  At least the important ones that control the functioning of 
> Mandrake 7.1 and the various interfaces such as gnome, kde, etc.?

Most of the system wide rc files are in /etc.
But this list will vary from a system to another, as those files come with
the packages they are related to.
Beside, there are a lot of config files that end with ".conf".
So, you will find all of them by running :
  find / -name "*rc" -o -name "*conf"

If you want, you can also automatically create the symlinks :
  mkdir ~/configfiles
  find / -name "*rc" -o -name "*conf" -exec ln -s {} ~/configfiles \;

(remove the '-o -name "*.conf"' if you want only the rc files)

HTH
Flupke

-- 
<< There's no place like ~ ! >>




Keep in touch with http://mandrakeforum.com: 
Subscribe the "[EMAIL PROTECTED]" mailing list.



[expert] rc files

2000-09-24 Thread Jeff Malka

In my reading I discovered that ...rc stands for "run commands"  Thus .pinerc
is the file that contains the "commands to run" when you open pine.  .bashrc are
the list of commands to run when bash starts, etc.  Coming from the
DOS/Windows world this is sort of like a autoexec.bat-configuration file
combination.

What I am having trouble figuring out is the logic as to "where" the various
rc files are to be found.  Many seem to be in various locations outside the
home directory.  It does not seem right that one should have to "discover"
their locations one at a time and then remember where they are for later use  I
would like to create a folder on my desktop that contains kdelinks (symlinks?)
to all the important ones so that they would be easily available to look
at and modify without having to hunt for them.

To do that, I need a list of where they are and where they can be found or at
least the logic linux uses to place them here or there.  Could someone help
provide this list?  At least the important ones that control the functioning of 
Mandrake 7.1 and the various interfaces such as gnome, kde, etc.?

Thanks.

-- 
Jeff Malka <[EMAIL PROTECTED]>
Registered "novice" Linux User 348854
Still learning!




Keep in touch with http://mandrakeforum.com: 
Subscribe the "[EMAIL PROTECTED]" mailing list.