Partition Resizing/Re-arranging
I'd like to know if it's possible and if so, HOW, to rearrange my current partitions. Most of the data on /usr/local I am not worried about, as I have it on cd's (most of it's mp3's). My personal home directory I do not want to loose the data. The rest is only important as far as what the system needs. Below is my current partitions. FilesystemSize Used Avail Use% Mounted on /dev/hda3 464M 69M 372M 16% / /dev/hda1 7.6M 4.9M 2.4M 68% /boot /dev/hda5 6.9G 33M 6.5G 1% /tmp /dev/hda6 23G 1.3G 21G 6% /usr /dev/hda7 19G 9.5G 8.0G 55% /usr/local /dev/hda8 14G 9.6G 3.5G 74% /home /dev/hda9 11G 201M 9.7G 2% /var System info returned from: uname -a Linux dragon 2.4.19-k7 #1 Sun Oct 6 20:29:56 EST 2002 i686 AMD Athlon(tm) Processor AuthenticAMD GNU/Linux What I'd like to do it combine /usr and /usr/local and add about half the space from /var to this new one. This is the original setup from my very first install of debian. I didn't have anyone to talk to about how to partition and how much to give each partition. I just picked up a linux book and estimated based on examples from the book. Below is an estimate of what I'd like it to look like when I'm done. FilesystemSize Mounted on /dev/hda3 464M / /dev/hda1 7.6M /boot /dev/hda5 6G /tmp /dev/hda6 44G /usr/local <-- /usr & /usr/local combined /dev/hda817.9G /home /dev/hda9 5G /var ***If you have any suggestions about partition sizes and arrangements, Please ***tell me. Right now I'm aiming for a large partition, to store mp3's on. I would like to move the old /usr/local to the /usr to make a new combined drive I would like to move 3G from /var to the new /usr/local I would like to move 3G from /var to /home I would like to move 0.9G from /tmp to /home The reasoning behind this is that I've found I'm using /usr/local a lot, and I am rarelyusing /usr and /var. I also have found I am using /home more, so would like to add a little more to it. I don't want to have to reinstall, so am wondering if there's a way to move it. I can, if I have to, install an additional 15G hd to use as a backup. I am a novice to linux still, I'm using linux because I learn best when I actually use what I'm trying to learn. -- Michelle Alexia "Jade" Storm P.S. if more information is needed, just ask. (please tell me how to do it also, as I'm still learning, and may not know what you're talking about.) msg08631/pgp0.pgp Description: PGP signature
Re: Partition Resizing/Re-arranging
Ok, was told this would be more useful as far as partition information #parted -s /dev/hda print Disk geometry for /dev/hda: 0.000-76319.085 megabytes Disk label type: msdos MinorStart End Type Filesystem Flags 1 0.031 7.844 primary ext3boot 2 7.844721.669 primary linux-swap 3721.670 1200.168 primary ext3 4 1200.168 76316.594 extended 5 1200.199 8354.113 logical ext3 6 8354.145 32192.753 logical ext3 7 32192.785 51269.941 logical ext3 8 51269.972 65577.832 logical ext3 9 65577.863 76316.594 logical ext3 > Ok. For starters, what you're most likely going to want to use is > parted. (apt-get install parted) Already installed > The link to the homepage should be either in the package description > or the documentation. I'd strongly suggest reading ALL of the documentation. Reading man pages now, looking for homepage, will read it when I find it. > Now, as for recommendations, here are mine. For starters, quit using > /usr/local. I prefer to have all of my users (myself included) store ALL > of their personal files within their home directory. This makes managing > it all much easier. Just my suggestions. Good luck. :) The reasoning behind using /usr/local for storing some files is: 1) Roommate that introduced me to Debian suggested I use my /usr/local for my publicly shared files (mp3's, video's, etc) 2) I add and delete users constantly, and if there's something I want to keep I try to move it to a central location. 3) Putting it in /usr/local has the added benefit that no one can delete it accidentally, unless they have root access. -- Michelle Alexia "Jade" Storm msg08648/pgp0.pgp Description: PGP signature
Re: Partition Resizing/Re-arranging
> Good point. I didn't really think before I blurted out "Yup." :) > > The quick-n-dirty way that I'd do it is: > > mkdir /usr/templocal > cp -rp /usr/local /usr/templocal > umount /usr/local > rmdir /usr/local > mv /usr/templocal /usr/local > > Ok, so it's not really that much quicker. 5 steps vs 6. :) > > -Alex Do I need to edit/update "fstab" after this? (just making sure) Almost done reading up on "parted", so hopfully I can post a solved to this soon. -- Michelle Alexia "Jade" Storm msg08889/pgp0.pgp Description: PGP signature
Re: 3.0: Booting From CD
> Is there a way to boot an installed system from one of the Debian > installation CDs? If you're asking what I believe you're asking. I had the same problem. I damaged my system somehow so it wouldn't boot on it's own, and had to figure a way to start the system from a cd. try booting from the CD then at the prompt type: rescue root=/dev/ -- Michelle Alexia "Jade" Storm msg09944/pgp0.pgp Description: PGP signature
Re: Partition Resizing/Re-arranging *complete*
Ok, Sorry for the LONG reply back on the status of this. 1) I had to reformat, I damaged it to the point it wouldn't start for nothing. 2) I ended up learning a lot, (was down for 4 - 5 days though) When I followed the suggestions given.. It all seemed to work fine.. until I rebooted my computer. Then lilo would give me an error (don't have the error as I got frustrated and just reformated. Thanks for the help though (throws parted back in the garbage <-- my personal feelings, nothing against the people that made it) On Thu, Oct 24, 2002 at 02:26:44AM -0700, Michelle Storm wrote: > Ok, was told this would be more useful as far as partition information > > #parted -s /dev/hda print > > Disk geometry for /dev/hda: 0.000-76319.085 megabytes > Disk label type: msdos > MinorStart End Type Filesystem Flags > 1 0.031 7.844 primary ext3boot > 2 7.844721.669 primary linux-swap > 3721.670 1200.168 primary ext3 > 4 1200.168 76316.594 extended > 5 1200.199 8354.113 logical ext3 > 6 8354.145 32192.753 logical ext3 > 7 32192.785 51269.941 logical ext3 > 8 51269.972 65577.832 logical ext3 > 9 65577.863 76316.594 logical ext3 > > > > Ok. For starters, what you're most likely going to want to use is > > parted. (apt-get install parted) > > Already installed > > > > The link to the homepage should be either in the package description > > or the documentation. I'd strongly suggest reading ALL of the documentation. > > Reading man pages now, looking for homepage, will read it when I find it. > > > > Now, as for recommendations, here are mine. For starters, quit using > > /usr/local. I prefer to have all of my users (myself included) store ALL > > of their personal files within their home directory. This makes managing > > it all much easier. Just my suggestions. Good luck. :) > > The reasoning behind using /usr/local for storing some files is: > 1) Roommate that introduced me to Debian suggested I use my /usr/local for >my publicly shared files (mp3's, video's, etc) > 2) I add and delete users constantly, and if there's something I want to keep >I try to move it to a central location. > 3) Putting it in /usr/local has the added benefit that no one can delete it >accidentally, unless they have root access. > > > -- > Michelle Alexia "Jade" Storm -- Michelle Alexia "Jade" Storm msg09945/pgp0.pgp Description: PGP signature
ls120 (Howto make it a Bootable/Rescue Disk)
I have an ls120 drive. I am still pretty new, and have looked all over, but can't find a way to make an LS-120 bootable. I have found a way to reformat it and all the partitions on it work. It's like having a 120mb hd. (but slower) What I want to do is get a copy of my current kernel (or a new one after I customize it and set it up) and put it on the ls-120 and use the ls-120 as a backup system disk (ie: rescue disks). Any ideas? I've already tried all the things I could find for making boot floppies, rescue disks.. etc.. I just don't know where to go from here. -- Michelle Alexia "Jade" Storm msg10210/pgp0.pgp Description: PGP signature
*thanks, will work on it* Re: ls120 (Howto make it a Bootable/Rescue Disk)
Checking if "/boot/grub/stage2" exists... yes > Checking if "/boot/grub/e2fs_stage1_5" exists... yes > # Running "embed /boot/grub/e2fs_stage1_5 (fd0)"... > failed (this is not fatal) > #because not enough space in MBR when I made no partitions? > # Running "embed /boot/grub/e2fs_stage1_5 (fd0)"... > failed (this is not fatal) > Checking if "/boot/grub/e2fs_stage1_5" exists... no >#response when leave out e2fs_stage1_5 from floppy. > Running "install /boot/grub/stage1 d (fd0) /boot/grub/stage2 p >/boot/grub/menu.lst "... succeeded > Done. > grub> quit > > As I recall, I could then boot from this 1.44MB diskette on my LS-120 drive. > > > On Thu, Oct 31, 2002 at 03:06:20AM -0800, Michelle Storm wrote: > > I have an ls120 drive. I am still pretty new, and have looked all over, > > but can't find a way to make an LS-120 bootable. > > > > I have found a way to reformat it and all the partitions on it work. > > > > It's like having a 120mb hd. (but slower) > > > > What I want to do is get a copy of my current kernel (or a new one after > > I customize it and set it up) and put it on the ls-120 and use the > > ls-120 as a backup system disk (ie: rescue disks). > > > > Any ideas? I've already tried all the things I could find for making > > boot floppies, rescue disks.. etc.. I just don't know where to go from > > here. > > > > -- > > Michelle Alexia "Jade" Storm > > > > -- > Jameson C. Burt, NJ9L Fairfax, Virginia, USA > [EMAIL PROTECTED] http://www.coost.com > (202) 690-0380 (work) -- Michelle Alexia "Jade" Storm msg10500/pgp0.pgp Description: PGP signature
Just some pointers Please (Mouse wheel issues)
I am using: Linux dragon.ursine.dyndns.org 2.4.18-bf2.4 #1 Son Apr 14 09:53:28 CEST 2002 i686 unknown unknown GNU/Linux With AfterStep I have a Logitech Wireless/Optical Mouse. (cordless MouseMan Optical, by Logitech <-- Lable on mouse) It actually has 4 buttons. Normal 2, Mouse Wheel Button, and one button on the side by the thumb. The side button just does the same as the Mouse Wheel Button, so not worried about that, but the mouse wheel doesn't allow me to scroll. My mouse wheel hasn't worked since install. I believe I just have to choose a different mouse driver/settings. But I don't know where to go to do this? Just need a few pointers.. I should be able to figure it out once I know "where" to look. Thanks -- Michelle Alexia "Jade" Storm msg10502/pgp0.pgp Description: PGP signature
Gvim & ColorSchemes
I have these installed: Vi, Vim, ViMacs, gtk-vim I mostly use gvim (when I can) and while I was using KDE instead of AfterStep. It would remember my colorscheme. I switched to AfterStep as it seems to not load down my CPU as much, and also when I login the first time to KDE desktop, it works great, but the first time I log off then back on, all the text is screwed. So until I fix the text issue, I'll use AfterStep. Back to the problem: I use gvim, and I'd like it to automatically start on the "colorschem = elflord" The closest I could get to starting with that scheme is to just use gvim -reverse But this only works when I start gvim myself. I use gvim as my email editor also, and the "-reverse" setting doens't work in .muttrc file. So I'm wondering if there's a way to save the colorscheme setting so that it always uses my prefered colorscheme by default? instead of this white-background one. Which I hate, as it's too bright. -- Michelle Alexia "Jade" Storm msg10503/pgp0.pgp Description: PGP signature
Re: Just some pointers Please (Mouse wheel issues)
Umm.. forgot to mention.. I'm still a novice at this. Where do I do that? what file? BTW: I have no ~/.Xdefaults <--- looked, but it doesn't exist. On Fri, Nov 01, 2002 at 06:51:12PM -0800, nate wrote: > Michelle Storm said: > > I am using: > > Linux dragon.ursine.dyndns.org 2.4.18-bf2.4 #1 Son Apr 14 09:53:28 CEST > > 2002 i686 unknown unknown GNU/Linux > > > > With AfterStep > > afterstep!! not many afterstep users left.. it seems (I still run > afterstep 1.6 on woody) > > > > > I have a Logitech Wireless/Optical Mouse. (cordless MouseMan Optical, by > > Logitech <-- Lable on mouse) > > I have a logitech wireless optical trackball, and this is what I do: > > Section "InputDevice" > Identifier "Mouse2" > Driver "mouse" > Option "Protocol" "IMPS/2" > Option "Device" "/dev/usbmouse" > Option "ZaxisMapping" "4 5" > EndSection > > (on my system this is a 2nd pointer, the first being PS2 connected through > a KVM) > > note the Protocol and the Zaxismapping > > thats all I need. some apps I use imwheel to get the mouse working, > theres a way to do it in your ~/.Xdefaults file I hear, but I've never > touched this file in my 6 years of unix linux, don't plan to start now :) > > if your using a display manager, often times it is not sufficient > to just log out to restart the X server but to restart the display > manager itself (or CTRL+ALT+BACKSPACE) to get the X server to reload > the config. > > > nate -- Michelle Alexia "Jade" Storm msg10507/pgp0.pgp Description: PGP signature
Re: *Solved* Gvim & ColorSchemes
Accidentally found the fix. I was looking through the files and tried some things. mkdir ~/.vim cp /usr/share/vim/vim61/plugin ~/.vim/ cp /usr/share/vim/vim61/doc ~/.vim/ cp /etc/vim/gvimrc ~/.gvimrc cp /etc/vim/vimrc ~/.vimrc None of the above worked directly, but I belive is needed to make this part work. I was looking in the plugin directory and noticed all the files ended in .vim So I took a chance and copied the color scheme I wanted loaded into the plugin directory. cp /usr/share/vim/vim61/colors/ ~/.vim/plugin/ *I'm guessing this'll make it a per-user setting, or you could probably copy it to the main vim plugin directory for an all users color.* It worked. So problem Solved. On Fri, Nov 01, 2002 at 09:03:41PM -0600, Michael Heironimus wrote: > On Fri, Nov 01, 2002 at 06:48:39PM -0800, Michelle Storm wrote: > > So I'm wondering if there's a way to save the colorscheme setting so > > that it always uses my prefered colorscheme by default? instead of this > > white-background one. Which I hate, as it's too bright. > > I'm not familiar with using named colorschemes in gvim, but you might > try setting it in your .gvimrc. There should be an example of the file > in the gvim documentation directory. > > -- > Michael Heironimus > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > -- Michelle Alexia "Jade" Storm msg10512/pgp0.pgp Description: PGP signature
Re: gpg key signing protocol question
On Fri, Nov 08, 2002 at 06:32:01PM +1100, Rob Weir wrote: > On Thu, Nov 07, 2002 at 02:22:40PM -0500, martin f krafft wrote: > > also sprach Robert L. Harris <[EMAIL PROTECTED]> [2002.11.07.1327 -0500]: > > > If I don't though, gpg won't go look it up. Is this normal? Anyone > > > know the fix for this? I've poked around and prodded the options in > > > my muttrc and no-luck. It's not just Martin, anyone who's ID I don't > > > have on my ring already. > > > > try: > > > > echo auto-key-retrieve >> ~/.gnupg/gpg.conf > > I think that's changed to 'keyserver-options auto-key-retrieve' with GPG > 1.2. > > -rob I had to modify the following 2 sections in ~/.gnupg/options I just had to uncomment them, they were already there just commented out. (except the first section, I believe I had to type in the keyserver I use) First Section: # Most users just set the name and type of their preferred keyserver. # Most servers do synchronize with each other and DNS round-robin may # give you a quasi-random server each time. keyserver x-hkp://pgp.mit.edu #keyserver mailto:pgp-public-keys@;keys.nl.pgp.net #keyserver ldap://keyserver.pgp.com Second Section: # Options for keyserver functions # # include-disabled = when searching, include keys marked as "disabled" #on the keyserver (not all keyservers support this). # # include-revoked = when searching, include keys marked as "revoked" # on the keyserver. # # verbose = show more information as the keys are fetched. # Can be used more than once to increase the amount # of information shown. # # use-temp-files = use temporary files instead of a pipe to talk to the # keyserver. Some platforms (Win32 for one) always # have this on. # # keep-temp-files = do not delete temporary files after using them # (really only useful for debugging) # # honor-http-proxy = if the keyserver uses http, honor the http_proxy #environment variable # # auto-key-retrieve = automatically fetch keys as needed from the # keyserver when verifying signatures or when importing # keys that have been revoked by a revocation key that # is not present on the keyring. keyserver-options auto-key-retrieve include-disabled include-revoked -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg11892/pgp0.pgp Description: PGP signature
Apache2 (php not working)
Apache2 says it supports PHP (at least on the website), and I have php4 installed. And it was working when I was just using the normal apache server. I was wondering if it's broken and I just haven't found anything saying it isn't fixed.. or if there's some special fix? I have no problem going back to the apache server but I thought I'd play with the apache2. Just right now I can't view my own webpages cause they are all in .php extentions. I've tried changing it all back to .html extensions.. but then the PHP doesn't work properly. So all I'm looking for is: 1) IS php supposed to work with apache2 (like it says it's supposed to) 2a) IF it is, what might I be doing wrong? 2b) IF NOT, I'd like to know so that I can start the process of removing php, apache2, and all the other stuff that is all linked so I can reinstall apache. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg12446/pgp0.pgp Description: PGP signature
Error while installing apache
Ok, I honestly have no clue what I'm doing. BUT I ran into the following errors while trying to install apache and (additional parts to appache). This is what I ran into. /usr/bin/savelog: line 145: syntax error near unexpected token `)' /usr/bin/savelog: line 145: ` l) COMPRESS="" ;;' couldn't rotate /etc/apache/httpd.conf at /usr/sbin/apacheconfig line 833, line 1. dpkg: error processing libapache-mod-auth-curdir (--configure): subprocess post-installation script returned error exit status 2 /usr/bin/savelog: line 149: syntax error near unexpected token `)' /usr/bin/savelog: line 149: ` h) usage; exit 0 ;;' couldn't rotate /etc/apache/httpd.conf at /usr/sbin/apacheconfig line 833, line 1. dpkg: error processing libapache-mod-auth-pgsql (--configure): subprocess post-installation script returned error exit status 2 All I did to fix it, was add a: ";;" to the end of the line PRIOR to the error. Is this a bug that someone needs to know about to correct it? or is it just something goofy that happened to mine? IT seems to work for me now. But as I said.. I'm clueless about how this works. I just looked how the rest were and made it similar. Hope I didn't do something bad. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg12683/pgp0.pgp Description: PGP signature
Apache (PHP not working)
A little background. jade@dragon:~$ uname -a Linux dragon.ursine.dyndns.org 2.4.18-bf2.4 #1 Son Apr 14 09:53:28 CEST 2002 i686 unknown unknown GNU/Linux **I would be using the newest kernel: 2.4.19-k7, except that I don't know how to install a module to run my network card which uses 8139 drivers.** Mozilla 1.1 I am using the latest of everything. including the unstable stuff. right now my problem is with PHP. I will attach a .tgz file with my httpd.conf and mime.types. (if there's any other info you need. just tell me what (and how to get it)). Before my computer crashed the LAST time. I had everything working. Now I can't get php to work. I get the following error. You have chosen to download a file of type: application/x-httpd/php from http://dragon.ursine.dyndns.org/ What should Mozilla do with this file? **I also try: http://localhost/ with the same result** Last time all I had to do was fix the mime.types this time they are correct (that I can tell) I've done everything I can think of. (I was using apache2, found out that php doesn't work with apache2 yet.. so installed apache again. Then I removed everything related to apache and php then I installed apache and php it still gives me the exact error above. My php files work on roomates apache and as far as I can tell.. mine is setup nearly identical to his. So I don't know what's wrong. 1) I have used /etc/init.d/apache restart (stop, start) 2) I have tried /etc/init.d/apachectl restart (stop, start) 3) I have restarted my computer completely 4) removed apache and php packages 5) reinstalled apache and php packages 6) retried steps 1 - 3. Still not working. So now I'm asking for any help I can get. This has stumped me. And my roommate refuses to help. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. P.S. Attaching the following files just because they are related to php and or Apache: "jades.apache-files.tgz" which contains: /etc/apache "jades.php4-files.tgz" which contains: /etc/php4 "jades.phpmyadmin.tgz" which contains: /etc/phpmyadmin "jades.phppgadmin.tgz" which contains: /etc/phppgadmin jades.apache-files.tgz Description: /etc/apache Files jades.php4-files.tgz Description: /etc/php4 Files jades.phpmyadmin-files.tgz Description: /etc/phpmyadmin Files jades.phppgadmin-files.tgz Description: /etc/phppgadmin Files msg12704/pgp0.pgp Description: PGP signature
Re: signing mails using gnupg
> i did that. now i have to enter my passphrase -everytime- i send my mail out? can >not i ask > mutt to remember my passphrase? Mine remembers it the first time I put in my passphrase, and as long as I'm in the same mbox. if I switch mbox's or quit mutt.. I have to do passphrase again. also: you might want to try: gpg --keyserver --send-keys I think that's the correct syntax.. don't remember.. haven't done it in a while. I can't check your key because it's not on a public key server. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg12712/pgp0.pgp Description: PGP signature
Re: Apache (PHP not working)
On Wed, Nov 13, 2002 at 09:43:48AM -0800, Vince Hillier wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > If you're just installing a precompiled kernel (from a package or something) just >add the > modules name "8139" to /etc/modules > If that's all it takes (adding a line for that module) I'm gonna kill my roommate for being a lazy son-of-a-. > edit your /etc/apache/httpd.conf and uncomment: > #php > AddType application/x-httpd-php .php > AddType application/x-httpd-php-source .phps It was installed that way. I didn't have to change it. I already has that, and the mime.types has the correct parts also. This was the first things I checked. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg12742/pgp0.pgp Description: PGP signature
Re: Apache (PHP not working)
> Install the new kernel, the reboot into it. Run 'depmod' and > 'update-modules', then you can run modconf and select your Ethernet > driver. It's called '8139too' and it should be in 'kernel/drivers/net' > section. I didn't compile the kernel myself. I just choose the one I wanted from dselect. So will that still work? > Open up /etc/apache/httpd.conf and make the following changes: > * uncomment the 'LoadModule php4...' line > * add 'index.php' to the end of the DirectoryIndex line in the > '' section > * uncomment the 'AddType' lines, right where it tells you to do so (you > want the php4 set, not the php3 ones). > > Tell apache to reload it's config files (/etc/init.d/apache reload), and > you should be done. Not trying to be rude, but I attached all the pertaining files. I don't remember if I said I already did all that in the original email, but I figured people would at least read the entire message (including attachments) before they continue stating things that I've already checked. Now as to your suggestiones: 1) I've done all that, it's all there, all of it is setup correctly, it SHOULD be working, but it's not. and I don't know why. 2) I've gone so far as to PURGE all packages that have "apache" or "php" in them. Then I reinstalled just the minimum required to get apache running again. Then I added all the apache modules I was interested in. Then I added the "php" packages. (between the purge and the install's I even restarted my computer) 3) I've checked all my config files against my roommates setup. Mine are identical (EXCEPT) that mine has a few more things in it. Mostly to do with "phpmyadmin" and "phppgadmin" (HIS WORKS) mine doesn't. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg12869/pgp0.pgp Description: PGP signature
Re: Apache (PHP not working)
Thanks for all the help. I finally got my new kernel up and the network card working. This actually fixed the PHP also. (Don't ask me why, I don't know). I never made ANY changes to the PHP or apache stuff yet, it was still in the last state from when I first emailed the list witht he problem. I loaded the new kernel (which was already installed, and working I just had not inet connect with it cause the network card driver was missing and I didn't know how to put a driver module in). And walla, everything works. I have inet on the new kernel now. AND PHP is working like it's supposed to. Again, thanks for the help. I got help fixing the network problem for my new kernel, and when I reloaded with the new kernel PHP worked. jade@dragon:~$ uname -a Linux dragon.ursine.dyndns.org 2.4.19-k7 #1 Sun Oct 6 20:29:56 EST 2002 i686 unknown unknown GNU/Linux On Wed, Nov 13, 2002 at 03:32:15AM -0800, Michelle Storm wrote: Content-Description: body > A little background. > > jade@dragon:~$ uname -a > Linux dragon.ursine.dyndns.org 2.4.18-bf2.4 #1 Son Apr 14 09:53:28 CEST 2002 i686 >unknown unknown GNU/Linux > > **I would be using the newest kernel: 2.4.19-k7, except that I don't > know how to install a module to run my network card which uses 8139 > drivers.** > > Mozilla 1.1 > > I am using the latest of everything. including the unstable stuff. > right now my problem is with PHP. > > I will attach a .tgz file with my httpd.conf and mime.types. (if there's > any other info you need. just tell me what (and how to get it)). > > Before my computer crashed the LAST time. I had everything working. > Now I can't get php to work. I get the following error. > > > You have chosen to download a file of type: application/x-httpd/php from > http://dragon.ursine.dyndns.org/ > > What should Mozilla do with this file? > > > **I also try: http://localhost/ with the same result** > > Last time all I had to do was fix the mime.types > this time they are correct (that I can tell) > > I've done everything I can think of. (I was using apache2, found out > that php doesn't work with apache2 yet.. so installed apache again. > > Then I removed everything related to apache and php > then I installed apache and php > > it still gives me the exact error above. > > My php files work on roomates apache and as far as I can tell.. mine is > setup nearly identical to his. So I don't know what's wrong. > > > 1) I have used /etc/init.d/apache restart (stop, start) > 2) I have tried /etc/init.d/apachectl restart (stop, start) > 3) I have restarted my computer completely > 4) removed apache and php packages > 5) reinstalled apache and php packages > 6) retried steps 1 - 3. > > Still not working. So now I'm asking for any help I can get. This has > stumped me. And my roommate refuses to help. > > -- > Michelle Alexia "Jade" Storm > Dragon Impersonating a Human and failing. > > P.S. Attaching the following files just because they are related to php > and or Apache: > > "jades.apache-files.tgz" which contains: /etc/apache > "jades.php4-files.tgz" which contains: /etc/php4 > "jades.phpmyadmin.tgz" which contains: /etc/phpmyadmin > "jades.phppgadmin.tgz" which contains: /etc/phppgadmin > -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg12951/pgp0.pgp Description: PGP signature
xine-ui error
I'm new to linux. Only been using it a little ove 2 months. I was trying to install xine, and got this error: (Reading database ... 79600 files and directories currently installed.) Unpacking xine-ui (from .../xine-ui_0.9.13-2_i386.deb) ... dpkg: error processing /var/cache/apt/archives/xine-ui_0.9.13-2_i386.deb (--unpack): trying to overwrite `/usr/bin/xine', which is also in package xine dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/xine-ui_0.9.13-2_i386.deb Can someone point me in the right direction to figure this out or fix it. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg13589/pgp0.pgp Description: PGP signature
Various Questions
Just a few questions: 1) Whenever I restart my system. My /tmp dir is cleared. Is there a way to stop this from happening so that tmpreaper will deal with it. 2) I'm running apache with php4. It's working just fine. My domain is currently redirected to my webserver. The first problem is: - Domain = www.storms-elite.net When I open mozilla and enter: http://www.storms-elite.net it opens up: http://ursine.dyndns.org/~jade IF I open a web-browser on a different computer and enter: http://www.storms-elite.net it opens to: http://12.241.211.228 This is the correct one. What is on my system that might be causing it to not update. (I think something is cached or stored and won't let the old one go.) The second problem is: -- When I open mozilla and enter: http://12.241.211.228/~jade it occasionally changes the ip to http://127.0.0.1/~jade I know it works fine that way, I just am not used to it doing that. It didn't used to do that. OR it does says contacting: http.com <-- this always fails, and I don't know why it's doing that. --- I've tried looking at everything I could, and haven't found anything that might fix it, so I figured I'd ask here to see if anyone has any suggestions. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg13626/pgp0.pgp Description: PGP signature
Spamassassin (reply to: admin@storms-elite.net)
Roommate installed Spamassassin on my computer yesterday. And I'm not sure I'm recieving all my emails anymore. I've completely stopped recieving everything from the Debian User List. Can someone help me out with finding out what's wrong with it, what I need to setup, where, and etc etc. Since it's installed, I'd like to figure out how to make it work. But if it all comes down to it. I'll remove it. Please reply to [EMAIL PROTECTED] so that I know I'll get the responce to this. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg14334/pgp0.pgp Description: PGP signature
Questions before installing w2k or XP Dual-Boot
I'm planing on installing Windows 2k Pro or XP, on a 15gb HD. But I want to know the proper way to do this before I try it, as I can't really afford to reformat and start over with my entire system. Currently I have the following setup. FilesystemTypeSize Used Avail Use% Mounted on /dev/hda3 reiserfs 24G 1.5G 22G 7% / proc proc 0 0 0 - /proc devpts devpts 0 0 0 - /dev/pts /dev/hda1 ext37.6M 4.8M 2.5M 67% /boot /dev/hda5 reiserfs 49G 15G 34G 31% /home /dev/hda6 reiserfs2.4G 33M 2.3G 2% /tmp /dev/hdb1 reiserfs 15G 33M 15G 1% /data usbdevfs usbdevfs 0 0 0 - /proc/bus/usb /dev/hdb1 will be what I'm going to install Windows 2k Pro or XP on. What I need to know is, when I install Windows 2k Pro or XP, what will I need to do to ensure that my Linux is still bootable. Is there something I need to do PRIOR to installing windows? Only reason I am installing windows is that there are some programs that I just can't get running on linux (games mostly, my stress relief), but also this is a learning experience for me. I'm in no rush to install windows. If I could play all my games I like on Linux, I'd never go back to windows. Thanks in advance, -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg14478/pgp0.pgp Description: PGP signature
GPG Ascii-Armour Syntax please
My mind went blank, reading "man gpg" wasn't helping, just a little confused. I figured it out once, ages ago, but today just isn't happening. Could someone please give me the syntax to create an ascii-armoured file of my gpg key to put in my ".pgpkey" Thanks, -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg14487/pgp0.pgp Description: PGP signature
samba question
I don't want to remove samba, I just want to change it so that it no longer auto-starts on system restart. What would I do to stop it from auto-starting. Thanks, -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg14527/pgp0.pgp Description: PGP signature
Re: samba question *Solved*
> being a lazy sys admin i like rcconf > install it using : apt-get install rcconf > run it and just choose what you wish to run and what not . > Moti Thanks, worked wonderfully. Glad I did it this way. The other way would have been a pain.. (if I'm reading this correctly, there were 7 spots to modify to stop samba from auto-loading) update-rc.d: /etc/init.d/samba exists during rc.d purge (continuing) Removing any system startup links for /etc/init.d/samba ... /etc/rc0.d/K19samba /etc/rc1.d/K19samba /etc/rc2.d/S20samba /etc/rc3.d/S20samba /etc/rc4.d/S20samba /etc/rc5.d/S20samba /etc/rc6.d/K19samba Thanks to all that replied. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg14561/pgp0.pgp Description: PGP signature
proftpd questions
I'm interested in restricting what directories proftp will show to users. I know that on the /home/* I can just do a chmod o-rwx /home/* and that fixes that.. but I want proftpd limited to /home/ currently I only want proftpd to be able to access /home/shared but I want it's base to be /home/ what's the easiest way to do this? I've already limited it to only being able to access /home/shared in the /home/ dir... but people can still cd / and at least view the rest of the filesystem. I want to prevent any viewing except in /home/ Sorry if I repeated a lot, but I am a little out of it today. Thanks in advance, -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg14733/pgp0.pgp Description: PGP signature
Re: proftpd questions *solved*
> > I'm interested in restricting what directories proftp will show to > > users. I know that on the /home/* I can just do a chmod o-rwx /home/* > > and that fixes that.. but I want proftpd limited to /home/ > > > > currently I only want proftpd to be able to access /home/shared > > but I want it's base to be /home/ > > > > what's the easiest way to do this? I've already limited it to only being > > able to access /home/shared in the /home/ dir... but people can still cd > > / and at least view the rest of the filesystem. I want to prevent any > > viewing except in /home/ > > Sounds like you need to look into chroots, if that's what proftpd calls > them too. Actually you saying that is what gave me the hint: here's how I fixed it. # Set the user and group that the server normally runs at. Usernobody <- unchanged Group netaccess <- customized DefaultRoot /home/ netaccess,!users <- limits access to everyone except those added to the group: users You can also use ~ to limit to their own directory. But I couldn't get it to work, but I also didn't want that, limiting to /home/ is fine by me. Thanks for the hint that pointed me in the right direction. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg14745/pgp0.pgp Description: PGP signature
Questions about mirror'ing a website
I am just after suggestions on the best and/or most efficient means to mirror my website (exactly) from one location to another (currently on same computer, but eventually multiple computers). /var/www/ LIVE<- Actual site location /home/jade/public_html/ WORKING <- Modifications and verification prior to copying to /var/www I want to "mirror" Working --> Live A few things to keep in mind. 1) LIVE has a different "owner:group" than WORKING. 2) If I move/rename files or diretories, I need this updated. 3) It only has to update once every 24 hours. <- Probably cron to do this. 4) I will eventually have them on seperate computers so I can't just use the following which is what I am currently doing: ON a daily basis, I just manually copy and paste the following, as I don't trust this in a cronjob yet as I need to do it as root right now. a) rm -rf /var/www/* b) cp -vR /home/jade/public_html/* /var/www/ c) chown -cR www-data:www-data /var/www I've searched through "dselect" and found the following, and am just looking for recommendations, or any suggestions for something better. The choices that look like they might work for what I want. 1) mirror - Keeps FTP archives up-to-date 2) fmirror - memory efficient ftp mirror program 3) ftpmirror - Mirroring directory hierarchy with FTP Almost but I can see a few problems here. 1) mirrordir - duplicate a directory by making a minimal set of changes -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg14762/pgp0.pgp Description: PGP signature
Spammassassin errors
Nov 29 16:44:14 dragon fetchmail[1026]: awakened at Fri Nov 29 16:44:14 2002 Nov 29 16:44:19 dragon fetchmail[1026]: 2 messages for jade at ursine (5707 octets). Nov 29 16:44:19 dragon fetchmail[1026]: reading message jade@ursine:1 of 2 (1883 octets) Nov 29 16:44:20 dragon fetchmail[1026]: flushed Nov 29 16:44:20 dragon fetchmail[1026]: reading message jade@ursine:2 of 2 (3824 octets) Nov 29 16:44:20 dragon fetchmail[1026]: flushed Nov 29 16:44:22 dragon spamc[9463]: connect() to spamd at 127.0.0.1 failed, retrying (1/3): Connection refused Nov 29 16:44:22 dragon spamc[9469]: connect() to spamd at 127.0.0.1 failed, retrying (1/3): Connection refused Nov 29 16:44:23 dragon spamc[9463]: connect() to spamd at 127.0.0.1 failed, retrying (2/3): Connection refused Nov 29 16:44:23 dragon spamc[9469]: connect() to spamd at 127.0.0.1 failed, retrying (2/3): Connection refused Nov 29 16:44:24 dragon spamc[9463]: connect() to spamd at 127.0.0.1 failed, retrying (3/3): Connection refused Nov 29 16:44:24 dragon spamc[9469]: connect() to spamd at 127.0.0.1 failed, retrying (3/3): Connection refused Nov 29 16:44:25 dragon spamc[9463]: connection attempt to spamd aborted after 3 retries Nov 29 16:44:25 dragon spamc[9469]: connection attempt to spamd aborted after 3 retries I am getting the above errors. Roommate tried to setup spamassassin on my system last week. I think it was bouncing everything back cause I stopped recieving emails, so I removed it. (I had to re-subscribe to deb-user list afterwards). I am trying to get it setup and working. I am getting the above error, and I'm not sure if it's cause I'm missing something or what? Any suggestions? -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16136/pgp0.pgp Description: PGP signature
Re: Spammassassin errors *SOLVED*
> > I am getting the above errors. Roommate tried to setup spamassassin on > > my system last week. I think it was bouncing everything back cause I > > stopped recieving emails, so I removed it. (I had to re-subscribe to > > deb-user list afterwards). > > I don't know if it bounces the mail either, but that would explain a > lot on my system. Anyway, if you had to re-subscribe to debian-user, > then it probably did bounce everything. > It was bouncing them. *I checked by using hotmail account to send myself about 10 messages* > > > > I am trying to get it setup and working. I am getting the above error, > > and I'm not sure if it's cause I'm missing something or what? > > It's missing spamd. Run 'spamd -d' (as root) and it'll work. To fix > it permanently, edit /etc/default/spamassassin and on the line that > says 'ENABLED=0', change 0 to 1. That's what did it for my system > after I had that problem. > Fixed one of the problems, and it's finally working. (just had to fix other problems along with this one. Thanks for all the help, Finally got it working. But I'm gonna keep a close eye on it, as I really don't need to be missing messages. Some of them are semi-important. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16205/pgp0.pgp Description: PGP signature
SpamAssassin Config Questions
in /usr/share/spamassasin/ There are a lot of files. 10_misc.cf 25_body_tests_es.cf 40_spam_phrases.cf 20_anti_ratware.cf 25_body_tests_pl.cf 50_scores.cf 20_body_tests.cf25_head_tests_es.cf 60_whitelist.cf 20_compensate.cf25_head_tests_pl.cf 65_debian.cf 20_head_tests.cf30_text_de.cflanguages 20_meta_tests.cf30_text_es.cftriplets.txt 20_ratware.cf 30_text_fr.cfuser_prefs.template 20_uri_tests.cf 30_text_pl.cf Do I need to? or Should I? Copy those files into my /etc/spamassassin folder? I've finally got my spamassassin working to the point that I'm actually recieving my mail, even with it running. But I don't think it's currently filtering. All that I currently have in /etc/spamassassin is: local.cf # This is the right place to customize your installation of SpamAssassin. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be # tweaked. # ### # #rewrite_subject 0 #report_header 1 #defang_mime 0 Any other suggestions would be helpful also. Just trying to learn how this all works and get it setup. (want to do this before I start getting important emails. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16255/pgp0.pgp Description: PGP signature
Re: SpamAssassin Config Questions
> Take a look at the headers of your email - there's an X-Spam-Status header > added by spamassassin if it's running. If you see it, it's working. It's > up to you what you want to do with meassages marked as SPAM, though - I > don't trust spamassassin enough to delete them yet, so I just save them all > to a spam mbox, which I check every once in a while. The tests in > /usr/share/spamassassin are the defaults, and they will be used without > moving them to /etc/, AFAIK. The local.cf is in case you want to tweak any > settings (scores, etc) - check the manpage for all the options. I don't > have much in there, but the little tweaks help. Yes.. the header is there. Just wanted to make sure. And if they are defaults and used automatically then cool. -- Could someone tell me why this bounced? This didn't start until I installed spamassassin. This is what I sent and it did arrive at the list, but I also got a bounce back? I'd like to fix it, just can't find out where to look or what's doing it. --- From [EMAIL PROTECTED] Sat Nov 30 12:21:26 2002 Received: from mail by dragon with spam-scanned (Exim 3.36 #1 (Debian)) id 18IE77-00053w-00 for ; Sat, 30 Nov 2002 12:21:25 -0800 Received: from [12.241.208.53] (helo=ursine ident=mail) by dragon with esmtp (Exim 3.36 #1 (Debian)) id 18IE77-00053r-00 for ; Sat, 30 Nov 2002 12:21:21 -0800 Received: from mail by ursine with spam-scanned (Exim 3.36 #1 (Debian)) id 18IE6Z-5Q-00 for <[EMAIL PROTECTED]>; Sat, 30 Nov 2002 12:20:50 -0800 Received: from [216.226.138.99] (helo=5thelement.lowcostdomains.com) by ursine with esmtp (Exim 3.36 #1 (Debian)) id 18IE6Y-5K-00 for <[EMAIL PROTECTED]>; Sat, 30 Nov 2002 12:20:46 -0800 Received: from green.hartshorne.net (12-233-126-36.client.attbi.com [12.233.126.36]) by 5thelement.lowcostdomains.com (8.9.0/8.9.0) with ESMTP id PAA22393 for <[EMAIL PROTECTED]>; Sat, 30 Nov 2002 15:20:58 -0500 (EST) Received: from green (localhost [127.0.0.1]) by green.hartshorne.net (Postfix) with SMTP id 576BE2ECF0 for <[EMAIL PROTECTED]>; Sat, 30 Nov 2002 12:16:34 -0800 (PST) Date: Sat, 30 Nov 2002 12:16:34 -0800 (PST) From: [EMAIL PROTECTED] (Mail Delivery System) To: [EMAIL PROTECTED] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MGT51322.954276617/green" Message-Id: <20021130121634.0ac4d9cf6@green> Subject: Undelivered Mail Returned to Sender X-Spam-Status: No, hits=-2.9 required=7.0 tests=MAILER_DAEMON,MAILTO_WITH_SUBJ,PGP_SIGNATURE, SIGNATURE_SHORT_SPARSE,SPAM_PHRASE_00_01 version=2.43 X-Spam-Level: This is a MIME-encapsulated message. --MGT51322.954276617/green Content-Description: Notification Content-Type: text/plain The attached message is being returned to you because it could not be delivered to one or more of the destination e-mail addresses. The reason the mail was not delivered at this time is: <[EMAIL PROTECTED]>: unknown user: "debian_user" --MGT51322.954276617/green Content-Description: Undelivered Message Content-Type: message/rfc822 CONTENT-DISPOSITION: inline X-SPAM-STATUS: No, hits=-13.8 required=5.0 tests=AWL,PGP_SIGNATURE_2,SIGNATURE_SHORT_DENSE, SPAM_PHRASE_00_01,USER_AGENT,USER_AGENT_MUTT,X_LOOP, X_MAILING_LIST version=2.41 FROM: Michelle Storm <[EMAIL PROTECTED]> RESENT-MESSAGE-ID: USER-AGENT: Mutt/1.4i X-OPERATING-SYSTEM: Linux dragon 2.4.19-k7 #1 Tue Nov 19 03:01:13 EST 2002 i686 unknown unknown GNU/Linux CONTENT-TYPE: multipart/signed; boundary=VS++wcV0S1rZb1Fb; protocol="application/pgp-signature"; micalg=pgp-sha1 DATE: Sat, 30 Nov 2002 12:15:45 -0800 X-LOOP: [EMAIL PROTECTED] RESENT-SENDER: [EMAIL PROTECTED] X-OPERATING-SYSTEM-UPTIME: 11:59:39 up 8 days, 19:48, 4 users, load average: 0.00, 0.01, 0.00 LIST-SUBSCRIBE: <mailto:[EMAIL PROTECTED]?subject=subscribe> LIST-POST: <mailto:[EMAIL PROTECTED]> X-SPAM-LEVEL: PRECEDENCE: list DELIVERED-TO: [EMAIL PROTECTED] RETURN-PATH: <[EMAIL PROTECTED]> OLD-RETURN-PATH: <[EMAIL PROTECTED]> MIME-VERSION: 1.0 LIST-UNSUBSCRIBE: <mailto:[EMAIL PROTECTED]?subject=unsubscribe> MAIL-FOLLOWUP-TO: Debian User List <[EMAIL PROTECTED]> RESENT-FROM: [EMAIL PROTECTED] MESSAGE-ID: <20021130201545.GA18976@dragon> TO: Debian User List <[EMAIL PROTECTED]> LIST-HELP: <mailto:[EMAIL PROTECTED]?subject=help> RESENT-DATE: Sat, 30 Nov 2002 14:15:52 -0600 (CST) X-MAILING-LIST: <[EMAIL PROTECTED]> archive/latest/248585 --VS++wcV0S1rZb1Fb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable
Bounced Message but still sent to list
This was: Spamassassin Config Questions, as it originated after I installed spamassassin. But I'm splitting it off now for 2 reasons. 1) Cause it's sort of it's own problem now. 2) Testing to see if it causes another bounce. --- My email headers look like this in mutt prior to hitting "y" to send this email. --- From: To: Debian User List <[EMAIL PROTECTED]> Cc: Bcc: Subject: Bounced Message but still sent to list Reply-To: Fcc: Mix: PGP: Sign sign as: --- > > -- > > Could someone tell me why this bounced? This didn't start until I > > installed spamassassin. This is what I sent and it did arrive at the > > list, but I also got a bounce back? I'd like to fix it, just can't find > > out where to look or what's doing it. > > --- > > > > The reason the mail was not delivered at this time is: > ^ > > <[EMAIL PROTECTED]>: unknown user: "debian_user" > ^ > > It sounds like you're mailing it off to 'debian_user', rather than > debian-user (which I'm guessing is an alias for the list in your MUA). > Your MTA sees no domain, and assumes it must be a local address, but > then there's no local user name that matches, so it fails and bounces. This is the alias I have in ".muttalias" alias deb-user Debian User List <[EMAIL PROTECTED]> I've checked everything at these locatins for ANY reference to "debian_user" /etc/defaults/* /etc/aliases /etc/exim/* /etc/spamassassin/* /usr/share/spamassassin/* /home/jade/.muttrc /home/jade/.muttalias /home/jade/.procmailrc I still can't find a reference to "debian_user" -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16269/pgp0.pgp Description: PGP signature
Re: SpamAssassin Config Questions
> > -- > > Could someone tell me why this bounced? This didn't start until I > > installed spamassassin. This is what I sent and it did arrive at the > > list, but I also got a bounce back? I'd like to fix it, just can't find > > out where to look or what's doing it. > > --- > > > > The reason the mail was not delivered at this time is: > ^ > > <[EMAIL PROTECTED]>: unknown user: "debian_user" > ^ > > It sounds like you're mailing it off to 'debian_user', rather than > debian-user (which I'm guessing is an alias for the list in your MUA). > Your MTA sees no domain, and assumes it must be a local address, but > then there's no local user name that matches, so it fails and bounces. I created another thread for this, to test again. It seems it only causes a bounced email when I create a new email to "debian-user". If I reply to an email from "debian-user" it works fine. *** See: Bounced message but still sent to list *** -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16270/pgp0.pgp Description: PGP signature
Re: Bounced Message but still sent to list *partly solved, not on my side*
> The mail bounced because it was attempted to be delivered to > [EMAIL PROTECTED] However, the server handling the > domain green.hartshorne.net can't find a user named "debian_user". > > This is only half of the story, though. The mail server for > green.hartshorne.net is horridly broken. There are two locations in > an email for the sender and two for the recipient(s). One location, > which you are familiar with, is the message headers. The other is the > envelope. Just like snail-mail, the message has contents (headers and > body) and an envelope. Snail-mail works like this : > 1) The postoffice reads the envelope to determine where to deliver it. > 2) If delivery can't succeed, the postoffice reads the envelope to > see where to return the package with notification of the > problem. > Email is works the same way. However, some systems decide that the > envelope isn't good enough. They rip open and read mail that isn't > theirs, and then decide to deliver the bounce to the sender mentioned > in the headers, not the one on the envelope. > > The rest of the story is this : somehow, at some time, the address > [EMAIL PROTECTED] was subscribed to the list. Later > that user no longer exists at that domain. Now you send a message to > the list, and the list dutifully passes it on to all subscribees. One > thing the list manager does is change the envelope sender so that > bounces will automatically be handled by it. Instead, that broken > mail server sent the bounce to you since your address is in the "From:" > header. Ah, ok.. so I guess that means it's not a fault on my side. *wipes away sweat from forehead* I hate that. Why don't the list maintainers wipe the faulty address? -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16290/pgp0.pgp Description: PGP signature
Re: SpamAssassin Config Questions *Done*
On Sat, Nov 30, 2002 at 12:15:45PM -0800, Michelle Storm wrote: > in /usr/share/spamassasin/ > > There are a lot of files. > 10_misc.cf 25_body_tests_es.cf 40_spam_phrases.cf > 20_anti_ratware.cf 25_body_tests_pl.cf 50_scores.cf > 20_body_tests.cf25_head_tests_es.cf 60_whitelist.cf > 20_compensate.cf25_head_tests_pl.cf 65_debian.cf > 20_head_tests.cf30_text_de.cflanguages > 20_meta_tests.cf30_text_es.cftriplets.txt > 20_ratware.cf 30_text_fr.cfuser_prefs.template > 20_uri_tests.cf 30_text_pl.cf > > > Do I need to? or Should I? Copy those files into my /etc/spamassassin > folder? > > I've finally got my spamassassin working to the point that I'm actually > recieving my mail, even with it running. But I don't think it's > currently filtering. > > All that I currently have in /etc/spamassassin is: local.cf > > # This is the right place to customize your installation of SpamAssassin. > # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be > # tweaked. > # > ### > # > #rewrite_subject 0 > #report_header 1 > #defang_mime 0 > > Any other suggestions would be helpful also. > Just trying to learn how this all works and get it setup. (want to do > this before I start getting important emails. > > > -- > Michelle Alexia "Jade" Storm > Dragon Impersonating a Human and failing. Guess I got all my answers for now.. Thanks for the help. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16291/pgp0.pgp Description: PGP signature
how to change shells
Ok, I just updated with dselect, and when I went to su, I got: Stand-alone shell (version 3.4) > I'm guessing that it's "sash" I normally use "bash" how do I change back? Thanks -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16505/pgp0.pgp Description: PGP signature
pam_limits error
I hate being such a newbie to this, but what's this mean? Security Violations =-=-=-=-=-=-=-=-=-= Dec 1 19:23:07 dragon pam_limits[987]: setrlimit limit #7 to soft=-1, hard=-1 failed: Operation not permitted; uid=0 +euid=0 Dec 1 19:39:09 dragon pam_limits[1171]: setrlimit limit #6 to soft=-1, hard=-1 failed: Operation not permitted; uid=1008 +euid=1008 Dec 1 19:39:09 dragon pam_limits[1171]: setrlimit limit #7 to soft=-1, hard=-1 failed: Operation not permitted; uid=1008 +euid=1008 It didn't start till a recent update, and I found a /lib/security/pam_limits.so (can't edit this) Trying to find out where else I might have to edit to fix this problem, but I'm not sure exactly what it's trying to do? Thanks -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16506/pgp0.pgp Description: PGP signature
pam_limits error *updated*
I did find /etc/security/limits.conf <--- but it's totally commented out right after I sent this email. On Sun, Dec 01, 2002 at 09:09:21PM -0800, Michelle Storm wrote: > I hate being such a newbie to this, but what's this mean? > > Security Violations > =-=-=-=-=-=-=-=-=-= > Dec 1 19:23:07 dragon pam_limits[987]: setrlimit limit #7 to soft=-1, hard=-1 >failed: Operation not permitted; uid=0 > +euid=0 > Dec 1 19:39:09 dragon pam_limits[1171]: setrlimit limit #6 to soft=-1, hard=-1 >failed: Operation not permitted; uid=1008 > +euid=1008 > Dec 1 19:39:09 dragon pam_limits[1171]: setrlimit limit #7 to soft=-1, hard=-1 >failed: Operation not permitted; uid=1008 > +euid=1008 > > It didn't start till a recent update, and I found a > /lib/security/pam_limits.so (can't edit this) > > Trying to find out where else I might have to edit to fix this problem, > but I'm not sure exactly what it's trying to do? > > Thanks > > -- > Michelle Alexia "Jade" Storm > Dragon Impersonating a Human and failing. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16508/pgp0.pgp Description: PGP signature
Re: how to change shells *solved*
On Sun, Dec 01, 2002 at 09:02:36PM -0800, Michelle Storm wrote: > Ok, I just updated with dselect, and when I went to su, I got: > Stand-alone shell (version 3.4) > > > > I'm guessing that it's "sash" > > I normally use "bash" > > how do I change back? > > Thanks > > -- > Michelle Alexia "Jade" Storm > Dragon Impersonating a Human and failing. Solved this one myself. I just started guessing what the command might be. Knowing that chmod, chown, etc etc.. I started doing "man ch" till I found "chsh" Thanks Anyways. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16509/pgp0.pgp Description: PGP signature
Re: how to change shells *solved*
> Next time, try "apropos" first. For example, "apropos shell", or even > better, "apropos -r change.*shell" would help save you a lot of time. Thanks, new command for me. Didn't know about that one. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16512/pgp0.pgp Description: PGP signature
Error: inetd[597]: auth/tcp: bind: Address already in use
I keep getting this error repeated. Anyone tell me what is causing it so I can look into fixing it? System Events =-=-=-=-=-=-= Dec 2 10:02:41 dragon inetd[597]: auth/tcp: bind: Address already in use Thanks, -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16627/pgp0.pgp Description: PGP signature
*solved* Re: Error: inetd[597]: auth/tcp: bind: Address already in use
On Mon, Dec 02, 2002 at 02:31:27PM -0800, nate wrote: > Michelle Storm said: > > I keep getting this error repeated. Anyone tell me what is causing it so I > > can look into fixing it? > > > > > > System Events > > =-=-=-=-=-=-Dec 2 10:02:41 dragon inetd[597]: auth/tcp: bind: Address > > already in use > > 1) stop inetd (/etc/init.d/inetd stop) > 2) check processes to be sure it is stopped > 3) run fuser -n tcp 113 > 4) see if any processes are returned, if so, stop them > 5) if not, check netstat -an | grep 113 and see if anything comes up, > if something comes up in TIME_WAIT then you should wait until it goes away > before starting inetd again(or at least starting inetd with that service) > 6) start up inetd again > > auth(ident) is most often used for IRC. If you do not use IRC I reccomend > turning it off. It provides no real benefit otherwise, since ident responses > are easily spoofed. I personally run oidentd for my identd needs. > > nate > > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > Thanks This fixed it. ( I am on IRC all the time ) Will this error return if I have to reboot? Just wanting to know cause I'd rebooted recently, and I don't want to have to do this every time I reboot. BTW: I do remember something about a bind/auth update when I did dselect a few days ago. Could that be the cause? -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16686/pgp0.pgp Description: PGP signature
Re: pam_limits error *probably cause located, now need to eliminate it*
> I posted a similar message several days ago with no responses. > > I noticed the message as a consequence of connecting to my (sid) box > from another (non-sid) linux box via ssh/scp. It does not seem to cause > any problems, but I do not know the source of the problem. Running ssh > in verbose mode does not seem to reveal anything unusual. Yes, a friend was ssh'd to my box when this was happening. He was using Win XP at the time. Need to track down why this is happening and put an end to it. *still looking around for everything using pam_limits.so* -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16689/pgp0.pgp Description: PGP signature
inetd error (I believe identd is the cause. How to fix?)
*** Sorry for this being so long, but I'm trying to be thorough *** > yes most likely it will. depending on what was using ident, if it was > another process, or if it was a hung socket in TIME_WAIT .. as another > poster noted you may have 2 copies of ident trying to run. I reccomend I just removed "gidentd" and replaced it with "ident2" doing this didn't solve the problem, it just sort of changed the error a little. It did make me notice something else. I do like ident2 as it will allow me to change ident from my home directories instead of creating a new user just to get a different ident. 1) Dec 2 23:33:47 dragon inetd[20855]: ident2/tcp: unknown service 2) Dec 2 23:37:15 dragon inetd[20861]: auth/tcp server failing (looping), service terminated - 1) I think I corrected it. I entered the new ident2 into the inetd.conf incorrectly. Made that go away by correcting it. 2) I noticed something in "man ident2" -p, --daemon-port Daemon-only: Bind this port, instead of 'auth' aka 113 *** Back to my vague memory *** I remember something during an update with dselect that said something about changing auth/bind or some such. It said it was changing my "/etc/group" *** End vague memory *** Could this be the problem? Could it be trying to use auth, but that update made it so auth is no longer called auth or something? *wish I remembered exactly what the error was. Or if I'm on a totally wrong track? Any ideas what to do. I use IRC a lot, and some of the servers I connect to require ident to be running. > dpkg -l | grep ident > > to see what packages are installed for ident, if there is more then > one, remove one of them(sounds like the case), if theres only one, > either prevent it from starting on boot(it should have an init script) > or comment it out of inetd.conf This is what is running now: dragon:/etc# dpkg -l | grep ident ii discover 1.5-1.4hardware identification system ii ident2 1.03-4 An advanced ident daemon ii libdiscover1 1.5-1.4hardware identification library ii libident 0.22-2 simple RFC1413 client library - runtime - A little more info just in case: Dec 2 22:11:31 dragon inetd[18456]: getpwnam: identd: No such user Dec 2 22:11:31 dragon inetd[14887]: /usr/sbin/identd: exit status 0x1 Dec 2 22:11:31 dragon inetd[18457]: getpwnam: identd: No such user Dec 2 22:11:31 dragon inetd[14887]: /usr/sbin/identd: exit status 0x1 the above 4 lines repeated alot only the [#] changed, then it ended with the below line. Dec 2 22:11:31 dragon inetd[14887]: auth/tcp server failing (looping), service terminated -- this is the only error I'm getting at since I replaced "gidentd" with "ident2" and after correcting the entry in "inetd.conf" Dec 2 23:37:15 dragon inetd[20861]: auth/tcp server failing (looping), service terminated *** Final note *** I am really tired right now, so I might have made this unneccessarily long. But I'm pretty sure that the issue I'm having has to do with one or all of the following: inetd.conf (incorrect entry): ident stream tcp wait identd /usr/sbin/ident2 ident2 -i -n -o 60 -i = allow ~/.ident -n = allow ~/.noident -o = Clients timeout after this many seconds ident2 (something to do with "auth") bind (I don't have bind installed, but I do have bind9-host installed. I DID about 2 weeks ago, install bind9, but it was removed less than an hour after I installed it.) -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg16718/pgp0.pgp Description: PGP signature
What to change for eth0 (Direct PC connection)
I want to be able to transfer a LOT of data from my linux box to a friends WinXP box. I have a cross-over cable. I need to know what I have to change on my computer (if anything) so that they can see each other. Even if I just ftp to an IP assigned on his box. What's the easiest way? We are on a network with a cable modem connected to a switch, and then the computers are all connected to the switch. The problem is that each computer is on a different IP (and I was told different subnets), so that when I try to ftp the files to his computer it goes OUT through the modem to find his computer, instead of just going straight to the switch and then to his computer. -- Michelle Alexia "Jade" Storm Dragon Impersonating a Human and failing. msg17063/pgp0.pgp Description: PGP signature
Re: What to change for eth0 (Direct PC connection)
> Use RFC1918 addresses; they are intended for use in private networks. > So, if no-one connected to the switch is using 192.168.20.0/24 (it's > way too huge, but oh well), you can use addresses from that network. Before we eliminated the computer we used as a gateway. We all had ip's assigned, we can probably go back to using them. 192.168.0.20 <-- was mine (linux) 192.168.0.30 <-- was friends (XP Box) > Win2k can assign multiple IPs to a NIC, so I assume XP can do that > too. For sake of argument, let's choose 192.168.20.10. Windows: "route print" -- C:\DOCUME~1\CRONUS>route print === Interface List 0x1 ... MS TCP Loopback interface 0x2 ...00 20 78 02 08 0c .. Linksys NC100 Fast Ethernet Adapter - Packet Scheduler Miniport === === Active Routes: Network Destination Netmask Gateway Interface Metric 0.0.0.0 0.0.0.0 12.211.27.1 12.211.27.254 20 12.211.27.0 255.255.255.0 12.211.27.254 12.211.27.254 20 12.211.27.254 255.255.255.255 127.0.0.1 127.0.0.1 20 12.255.255.255 255.255.255.255 12.211.27.254 12.211.27.254 20 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1 224.0.0.0 240.0.0.0 12.211.27.254 12.211.27.254 20 255.255.255.255 255.255.255.255 12.211.27.254 12.211.27.254 1 Default Gateway:12.211.27.1 === Persistent Routes: None > Your linux box can do multiple addresses too, though it's not as > obvious. For older kernels you need IP Aliasing compiled in or loaded > as a module. 2.4 kernels can do this out of the box. The iproute2 > command "ip" (debian pkg iproute) makes this really easy: > > ip addr add 192.168.20.11 brd + dev eth0 > > This adds the address 192.168.20.11 to eth0 (which I am assuming > already has an address). Linux: "route" -- dragon:/home/jade# route Kernel IP routing table Destination Gateway Genmask Flags Metric RefUse Iface 12.241.208.0* 255.255.240.0 U 0 00 eth0 default 12-241-208-1.cl 0.0.0.0 UG0 00 eth0 > At this point the two boxes should be able to ping each other using > the RFC1918 addresses, unless there's something funky going on in the > switch. So, let me make sure I have this clear. My Current system: Linux dragon 2.4.19-k7 #1 Tue Nov 19 03:01:13 EST 2002 i686 AMD Athalon GNU/Linux On Linux Box: - 1) if I don't already have it installed. Install the package: iproute 2) do from #: ip addr add 192.168.0.20 brd + dev eth0 On Windows XP box: -- 1) Do you know how to add multiple IP's to NIC on XP (tell me how on Win2k and I can probably figure it out on XP.) <-- never knew about this. 2) add: 192.168.0.30 to XP nick Then just tell the computers to look for IP: msg17096/pgp0.pgp Description: PGP signature
Re: What to change for eth0 (Direct PC connection)
> So, let me make sure I have this clear. > My Current system: Linux dragon 2.4.19-k7 #1 Tue Nov 19 03:01:13 EST 2002 i686 AMD >Athalon GNU/Linux > > On Linux Box: > - > 1) if I don't already have it installed. Install the package: iproute > 2) do from #: ip addr add 192.168.0.20 brd + dev eth0 > > On Windows XP box: > -- > 1) Do you know how to add multiple IP's to NIC on XP (tell me how on >Win2k and I can probably figure it out on XP.) <-- never knew about >this. > 2) add: 192.168.0.30 to XP nick > > Then just tell the computers to look for IP: msg17116/pgp0.pgp Description: PGP signature