Re: Mozilla chrome registry problem

2004-03-14 Thread John Habermann
Thank you Kent, I changed the ] to } on both line 68 and 69 and the mozilla
setup completed fine although I still had the errors associated with
libenigmine.so so I guess they are 2 separate problems. 

I will also make sure I look at the debian bug reports today with the package
I am having problems with before I bother the list.

cheers
John

On Sat, Mar 13, 2004 at 10:46:12PM -0600, Kent West wrote:
> John Habermann wrote:
> 
> >The following is what is on line 68 in /usr/bin/update-mozilla-chrome:
> > 
> > touch ${LIBDIR]/chrome/user-skins.rdf
> >
> >I couldn't actually find that file
> > 
> >
> 
> The solution is to edit /usr/bin/update-mozilla-chrome and change the 
> right bracket into a right curly, on both line 68 and line 69.
> 
> -- 
> Kent
> 
> >
> >
> > 
> >
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact 
> [EMAIL PROTECTED]
> 

-- 
John Habermann

[EMAIL PROTECTED]
http://www.ngogeeks.com
jabberid: jhabbers


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Mozilla chrome registry problem

2004-03-13 Thread John Habermann
Hi 

I am running debina on a ibook and just upgraded my mozilla packages
from 1.5 to mozilla 1.6-2 and ran into this problem when the
mozilla-browser package was being setup. 

Setting up mozilla-browser (1.6-2) ...
Updating mozilla chrome registry...nsNativeComponentLoader:
SelfRegisterDll(libenigmime.so) Load FAILED with
error:/usr/lib/mozilla/components/libenigmime.so: ELF file data encoding
not big-endian 
enigmail.js: Registering components
enigmail.js: Registered components
nsNativeComponentLoader: SelfRegisterDll(libenigmime.so) Load FAILED
with error: /usr/lib/mozilla/components/libenigmime.so: ELF file data
encoding not big-endian
/usr/sbin/update-mozilla-chrome: line 68: unexpected EOF while looking
for matching `}'

The following is what is on line 68 in /usr/bin/update-mozilla-chrome:

touch ${LIBDIR]/chrome/user-skins.rdf

I couldn't actually find that file so I am not sure if the problem is
because that file doesn't exist or because it could not be created or it
is a problem with the mozilla 1.6 package on powerpc. I read the most
pc's use the little-endian system while the powerpc uses big-endian
because it can read both.

Thanks for any clues in how to fix this 

John Habermann



-- 
John Habermann

The Wilderness Society, Cairns
Tel: 0417 783 642
Email: [EMAIL PROTECTED]
http://www.wilderness.org.au

jabber: [EMAIL PROTECTED]
msn: [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



changing permissions of files in directories

2003-10-07 Thread John Habermann
Hi

I am just wondering if there is anything out there that lets you change permissions of 
all files in a directory tree but not the directories. I need the directories to stay 
executable but want to set the files to be read only. 

Thanks for any for any pointers

John


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: sed question

2003-09-03 Thread John Habermann
thanks Carlos, that works great. I think I am beginning to get grasp regular 
expression syntax now. 

Thanks very much for you help

John

On Sun, 31 Aug 2003 14:05:38 +0100
Carlos Sousa <[EMAIL PROTECTED]> wrote:

> On Sun, 31 Aug 2003 22:38:58 +1000 John Habermann wrote:
> > I tried": 
> > 
> > cat temp | sed 's/^[[:alpha:]]*[[:space:]]*//' > log
> > 
> > Where temp is: 
> > 
> > test.wilderness.org.au/about_us/whatistwsck 203.48.59.163 - -
> > [26/Aug/2003 08:14:01] "GET
> > http://test.wilderness.org.au/about_us/whatistws HTTP/1.0" 200 20872
> > "-" "Dillo/0.7.3" TCP_MISS:DIRECT
> > 
> > but that just removes the test from .wilderness 
> 
> That's right, [:alpha:] only gets letters, and [:alnum:] letters and
> digits, missing the dots, slashes, etc. This will work:
> 
>sed 's/^[^[:space:]]*[[:space:]]*//'
> 
> meaning 'scrap all non-blanks and following blanks, from the start of
> the line.
> 
> > I thought I would
> > be able to use grep and sed to do the job for me and I can use grep to
> > filter them in separate log files but I now need to delete that first
> > virtual host entry so I can use webalizer to analyse the seperate log
> > files. I have read the info page for sed and looked at tutorials and
> > the faq but haven't seen been able to really understand the options.
> 
> Don't worry, it comes with practice
> 
> Cheers,
> 
> -- 
> Carlos Sousa
> http://vbc.dyndns.org/
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
> 



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: sed question

2003-08-31 Thread John Habermann
Hi Carlos

Thanks for your help.


On Sun, 31 Aug 2003 02:10:14 +0100
Carlos Sousa <[EMAIL PROTECTED]> wrote:

> On Sun, 31 Aug 2003 10:20:46 +1000 John Habermann wrote:
> > I have tried things like the following:
> > 
> > sed -e 's/^w.*\s//' > log
> > 
> > thinking that it would delete from the beginning of the line to the
> > first white space but it deletes all matched expressions.
> 
> (man sed, man grep)
> 
> It seems you mean 's/^\w*\s//'
> 
> Unfortunately, it seems sed doesn't understand the \w and \s escape
> sequences, unlike grep. Better try:
> 
>sed 's/^[[:alnum:]]*[[:space:]]*//'

I tried": 

cat temp | sed 's/^[[:alpha:]]*[[:space:]]*//' > log

Where temp is: 

test.wilderness.org.au/about_us/whatistwsck 203.48.59.163 - - [26/Aug/2003 08:14:01] 
"GET http://test.wilderness.org.au/about_us/whatistws HTTP/1.0" 200 20872 "-" 
"Dillo/0.7.3" TCP_MISS:DIRECT

but that just removes the test from .wilderness 

What I want to do is to go through a log file and delete all the virtual host entries 
at the front of each log entry so I end up with something like this. 

203.48.59.163 - - [26/Aug/2003 08:14:01] "GET 
http://test.wilderness.org.au/about_us/whatistws HTTP/1.0" 200 20872 "-" "Dillo/0.7.3" 
TCP_MISS:DIRECT

I just can't seem to figure out how to match that first virtual host path and delete. 
I have seen perl scripts written to sort virtual hosts into separate log files for 
apache but they don't seem to work for the logs that are produced by squid and I don't 
have any perl knowledge so looking at the scripts didn't help me. I thought I would be 
able to use grep and sed to do the job for me and I can use grep to filter them in 
separate log files but I now need to delete that first virtual host entry so I can use 
webalizer to analyse the seperate log files. I have read the info page for sed and 
looked at tutorials and the faq but haven't seen been able to really understand the 
options.



> 
> -- 
> Carlos Sousa
> http://vbc.dyndns.org/
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
> 



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



sed question

2003-08-31 Thread John Habermann
Hi 

I am just beginning to learn how to use sed in order to sort my squid log files by 
virtualhost and am having trouble getting my head around how the regular expression 
works. 

I can sort my log files into the different virtual hosts using grep eg "grep '^test' 
access-sed.txt > test.wilderness.log" as I have got squid to write the logs with the 
virtualhost entry added to the front of every log entry as illustrated below. What I 
am having problems with is using sed to strip the virtualhost entry from the front of 
the log entrys once they have been sorted so I can then use webalizer to analyse the 
logs for me and get different webalizer reports for different virtual hosts.

www.sydney.wilderness.org.au/docs/node.php? 203.48.59.163 - - [26/Aug/2003 08:09:56] 
"GET http://www.sydney.wilderness.org.au/docs/node.php? HTTP/1.1" 200 8719 
"http://www.sydney.wilderness.org.au/docs/module.php?mod=book"; "Mozilla/5.0 (X11; U; 
Linux ppc) Gecko/20030714 Galeon/1.3.7 Debian/1.3.7.20030723-1" TCP_MISS:DIRECT

I have tried things like the following:

sed -e 's/^w.*\s//' > log

thinking that it would delete from the beginning of the line to the first white space 
but it deletes all matched expressions. I was wondering how I could get sed to just 
match the first expression or is there a better way to do this. I am having a bit of 
trouble understanding exactly how regular expressions work in sed.

Thanks for any help

John



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



mozilla url tab autocomplete

2003-07-01 Thread John Habermann
Hi 

I have been playing around with the different mozilla based browsers for linux and 
have found one thing that I would really love to know how to configure. When you start 
typing a url in the address bar in mozilla previous urls that match will show and you 
can simply press tab to select the one that you want and press enter. Galeon 1.2 used 
to be similar except that it worked more like autocomplete on the command line in that 
when you pressed tab it would just complete till it got to a difference and then you 
would enter another letter and press tab again to get it to complete which was really 
cool.
Now with epiphany and galeon 1.3 when I start typing in a url a list of urls appears 
but pressing tab doesn't autocomplete or let me select from the list of urls that 
appear. With mozilla-firebird pressing tab lets you select from the list that appears 
but when you press tab the cursor jumps to the front of the url which is quite 
annoying if I want to continue adding to the url string.

Can anyone point me to which setting in about:config or the config files that this 
behaviour is configured. I have looked but nothing seems to stand out as being 
associated with this behaviour.

Thanks for your help

John


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



mozilla url tab autocomplete

2003-07-01 Thread John Habermann
Hi 

I have been playing around with the different mozilla based browsers for linux and 
have found one thing that I would really love to know how to configure. When you start 
typing a url in the address bar in mozilla previous urls that match will show and you 
can simply press tab to select the one that you want and press enter. Galeon 1.2 used 
to be similar except that it worked more like autocomplete on the command line in that 
when you pressed tab it would just complete till it got to a difference and then you 
would enter another letter and press tab again to get it to complete which was really 
cool.
Now with epiphany and galeon 1.3 when I start typing in a url a list of urls appears 
but pressing tab doesn't autocomplete or let me select from the list of urls that 
appear. With mozilla-firebird pressing tab lets you select from the list that appears 
but when you press tab the cursor jumps to the front of the url which is quite 
annoying if I want to continue adding to the url string.

Can anyone point me to which setting in about:config or the config files that this 
behaviour is configured. I have looked but nothing seems to stand out as being 
associated with this behaviour.

Thanks for your help

John


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



logging apt-get/dpkg activity

2003-06-19 Thread John Habermann
Hi

I am just wondering if anyone can tell me how I can set logging in 
apt-get or rather dpkg. I would like to keep track of what packages have 
been installed or removed but I can't seem to find any information on 
how to turn logging on in apt-get or dpkg. Is this possibe? I looked in 
syslog.conf but could see any mention of how this could be set up and 
there is nothing in the apt howto or the man pages of apt and dpkg and I 
couldn't find anything in google. Is there another easy way of doing 
this perhaps.

Thanks for any help

John



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



virtual servers vs dedicated servers

2003-06-02 Thread John Habermann
Hi

I am just wondering if anyone has any advice on hosting using virtual 
dedicated servers. I have found a few companies that offer this service 
and am curious as to how it compares to dedicated servers in terms of 
performance. I see that most of them offer RedHat as the OS although 
Aktiom Networks offers a choice of Debian or Redhat and JohnCompanies 
notes that you can run debian in a chroot environment on there Redhat 
based virtual servers. We are building a midgard based content 
management system for our website and I am currently looking for hosting 
options for this. The system is being built and tested on a debian 
system and I would like to run the finished system on a debian box. 
Initially we thought that we would have to go with a dedicated server 
but as our site is not that huge, we had a max of about 6 Gig of uploads 
in our biggest month. The new midgard cms runs on a mysql backend so 
there will probably make a reasonably demand on system resources but I 
wouldn't think that that amount of traffic would result in it making 
full use of a dedicated server so I thought that it might be worth 
considering a virtual private server.
I was wondering if anyone has any experience with running a database 
driven website on a virtual dedicated server and could offer any advice 
concerning hosting companies and whether this option is worth 
considering over a dedicated server.

Thanks for any advice

Cheers
John
The Wilderness Society, Sydney
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Content management systems evaluation

2003-03-27 Thread John Habermann
Just been evaluating open source Content Management Systems for the last 
couple of months. They have all been installed and are being tested on a 
debian system. I have been documenting the issues involved with the 
installation of the various systems and these are on the web at 
www.sydney.wilderness.org.au/docs along with an evaluation of the 
features of the different systems.

12 CMSs were reviewed in total being APC Action Apps, BackEnd, 
Bricolage, Drupal, EzPublish 2 and 3, Midgard and its different CMS 
interfaces, MySource, Plone, PostNuke, OpenACS, OpenEffec and WebGUI. 
Some have only got the installation documented but others have been 
looked at in more detail. More content will be added as the evaluation 
and system installation progresses. If anyone is looking at open source 
content management systems they might find it worth a read.

Cheers

John

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: /dev/video

2002-05-06 Thread John Habermann
Have you tried mknod
mknod /dev/video0 c 81 0
ln -s /dev/video0 /dev/video
see linuxusbguide.sourceforge.net and read the USB-guide for more information

John Habermann

On Sat, 4 May 2002 09:11, David Wright wrote:
> I am running sid. I just plugged a Logitech Pro 3000 QuickCam into my
> USB bus. After
># modprobe usbcore
># modprobe usb-uchi
># modprobe pwc
># lsusb
> shows it being there, but there is no /dev/video0, which is what
> applications like gnomemeeting look for. If I
># cd /dev
># ./MAKEDEV -v update
> it says (after lots else)
>./MAKEDEV: don't know what "tts" is
>./MAKEDEV: don't know what "video_capture" is
>./MAKEDEV: don't know what "drm" is
> but doesn't generate any /dev/video entries. What do I need to do to get
> video capture working?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: 2.4.17 kernel for debian

2002-05-01 Thread John Habermann

On Wed, 1 May 2002 00:15, [EMAIL PROTECTED] wrote:

> I have 2.2r5 release CD, which has 2.2.19 kernel, can
> I upgrade it 2.4.17 kernel. Are there patches,etc ?

yes you can upgrade and there are patches.

> Can someone please tell the site and the procedure for
> kernel upgrades.

I suggest that you go to http://www.au.debian.org/doc/ and read the 
installation manual at http://www.au.debian.org/releases/stable/i386/install 
which will give you a good introduction to what debian is and how to install 
it. 

Particular information about apt and debians package management system can be 
found at
http://www.debian.org/doc/manuals/quick-reference/ch-system.en.html#s-uptodate 
and http://www.debian.org/doc/manuals/apt-howto/index.en.html

> 3. Where can one find the CD image of debian LINUX with kernel 2.4.17
> and above ?
> Any help on this would be helpful!!

You can obtain snapshots of testing and unstable from various places 
apparently. If you want to do it that way I suggest searching on google. 
Personally I just install the stable distribution, which is what you have and 
upgrade over the internet. You can simply install the kernel image that you 
want from the debian servers or even install the source and compile the 
kernel yourself!

Have fun

John Habermann


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: alpha-release of a bug-report & some questions

2002-04-28 Thread John Habermann
Here is a copy of /etc/apt/sources.list. I run unstable and although I am in 
Australia often find that it is quicker to run it of the main US servers 
which is why they are the uncommented ones. If you want to get your system to 
woody (ie testing) just uncomment the lines pointing to testing and comment 
out the lines pointing to unstable and then run apt-get update to update your 
package list and then apt-get upgrade.
This will upgrade everything to testing and hopefully pull in the packages 
you are missing. If you then want to get any packages from unstable edit the 
sources.list file again and comment out testing and uncomment unstable. Then 
run apt-get install whatever the name of the package/packages. If you try and 
install something using dselect it will try to upgrade all your other 
packages as well. I am sure there probably is a way to stop it doing this but 
I haven't taken the time to figure it out and just install use apt-get if I 
want to install a particular package without upgrading everything. 

If you do have a new hardware you might consider running unstable as that 
will give you access to the latest xfree86 and also the newest kernels. To 
see what kernel versions are available try apt-cache search kernel.

Hope this is some use.

# See sources.list(5) for more information, especialy
# Remember that you can only use http, ftp or file URIs
# CDROMs are managed through the apt-cdrom tool.
#deb http://http.us.debian.org/debian stable main contrib non-free
#deb http://non-us.debian.org/debian-non-US stable/non-US main contrib 
non-free
#deb http://security.debian.org stable/updates main contrib non-free

# Uncomment if you want the apt-get source function to work
#deb-src http://http.us.debian.org/debian stable main contrib non-free
#deb-src http://non-us.debian.org/debian-non-US stable non-US

#deb cdrom:[Debian GNU/Linux 2.2 r2 _Potato_ - Official i386 Binary-1 
(20001207)]/ unstable contrib main non-US/contrib non-US/main

#deb http://http.us.debian.org/debian testing main contrib non-free
#deb http://non-us.debian.org/debian-non-US testing/non-US main non-free

deb http://http.us.debian.org/debian unstable main contrib non-free
deb http://non-us.debian.org/debian-non-US unstable/non-US main non-free

#deb ftp://ftp.us.debian.org/debian woody main non-free contrib
#deb http://non-us.debian.org/debian-non-US woody/non-US main contrib non-free

#deb http://ftp.au.debian.org/pub/debian woody main contrib non-free
#deb http://ftp.au.debian.org/pub/debian-non-US woody/non-US main non-free

#deb http://ftp.au.debian.org/pub/debian sid main contrib non-free
#deb http://ftp.au.debian.org/pub/debian-non-US sid/non-US main non-free


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: "mirror"

2002-04-24 Thread John Habermann
On Tue, 23 Apr 2002 06:56, dave mallery wrote:
> hi
>
> i have a second machine with a minimal woody install.  my main deb machine
> has been upgraded daily for a long time now.  i just copied the contents
> of is /var/cache/apt/archive (loads) to the minimal machine.
>
> how do i get the minimal machine to recognize that all that stuff is now
> there so it can go ahead and install?  apt-get update does not do it.
>
> thank you
>
> dave

You can just copy the contents of /var/cache/apt/archive the 
/var/cache/apt/archive of the minimal machine and then run apt-get upgrade to 
upgrade all the packages that you have installed on your minimal machine. If 
there are any packages required for your minimal machine that you haven't 
copied across apt will seek to download them from the server you have pointed 
to in your sources list. I use this method to upgrade or install stuff on my 
laptop from my main desktop machine. I have had a look at apt-proxy and will 
also have a look apt-move, as suggested by Greg Madden, as they both seem 
like they would make things easier once you had figured out how to set them 
up. It would certainly save the buildup of different versions of the same deb 
packages in the archive directory.

John


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: make-kpkg

2002-04-19 Thread John Habermann
On Fri, 19 Apr 2002 05:04, dave mallery wrote:

>
> question:  can i simply: dpkg -r kernel-image-2.4.18_custom1.0_i386.deb ??
>
>
> it needs to be obliterated, since it can't use the monitor.  will the
> above -r also re-arrange my /etc/lilo.conf? or do i have to do that by
> hand?

You can just remove the kernel package using dpkg or apt, but then, as far as 
I know you will have to edit your lilo.conf to point to the kernel that you 
want to boot with and then run lilo (ie as root enter the command lilo). I 
generally use the command dpkg --purge "package name" in order to remove any 
configuration files for the package as well.

> whatever happens, i don't want the existing 2.4.18_custom1.0 to be a lilo
> boot option.
>
> thank you
>
> dave


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



netscape bus error

2002-04-18 Thread John Habermann

Hi

Do some support for a community group that recycles computers, installs 
debian and then gives them to low income people. One of the recipients has 
issues with Netscape. Netscape (4.77-2) doesn't open at all and when netscape 
is entered into an xterm he receives only a line saying "Bus error".
Anyone have any ideas, I haven't come across this before. He is one of our 
early recipients and has just bought a new computer with money he received 
from an accident claim. It is a 1.4 ghz athlon 256 ddr memory and has got 
debian unstable with kde as the desktop environment, bit different to potato 
with gnome as the desktop, which is what he started with. I am really 
impressed that he has stuck with linux, shows you what happens when people 
start learning computers on linux.

Thanks for any help

John Habermann


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



netscape bus error

2002-04-18 Thread John Habermann
Hi

Do support for a community group that recycles computers installs debian and 
gives them to low income people. One of the recipients is issues with 
Netscape. Netscape (4.77-2) doesn't open at all and when netscape is entered 
into an xterm he receives only a line saying "Bus error".
Anyone have any ideas, I haven't come across this before. He is one of our 
early recipients and has just bought a new computer 1.4 ghz athlon 256 ddr 
memory and has got debian unstable with kde as the desktop environment, bit 
different to potato with gnome as our desktop which is what he started with.

Thanks for any help

John Habermann


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: compilation problems

2002-04-17 Thread John Habermann
On Sun, 14 Apr 2002 12:23, Vivek Bharathan wrote:
> Hello, I recently reformatted my hard drive and upgraded from potato to
> woody. Previously, under potato, when I upgraded and recompiled my
> kernel, I simply set the config file, typed make dep, and make install
> and configured lilo and everything worked fine after that.
>
> Under Woody, however, I did the following:
> make menuconfig, entered my choices
> make clean
> make dep
> make bzImage
> make modules
> make modules_install
> then I configured lilo
>
> When I reboot with the new kernel, the network cannot be accessed. I
> double-checked the configuration with the old kernel and have all of the
> net device settings the same. I don't think this is the problem. When I
> reboot using the old kernel I can get a connection. I have my network
> card (3c59x) set to run as a module. I suspect that the modules are not
> being read correctly...
>
> Help please?
> Thank you,
> Vivek

You can check to see if the 3c59x module has been loaded with the "lsmod" 
command. If it isn't run modconf (as root type modconf) and chose the 3c59x 
module. 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Dual Boot with Win2k

2002-04-12 Thread John Habermann
Not sure how useful this will be to you but have included an attachment of my 
effort to get WIn2k and Linux dual booting. That was off different partitions 
on the same disk though. There is a couple of howtos at the ldp (see 
www.linux.org in the minihowtos section that might be a bit more useful.

On Fri, 12 Apr 2002 23:44, Matthew Daubenspeck wrote:
> Has anyone had any dual-boot experience with Windows 2000? I currently
> have linux on one drive and 2K on another, and am looking for a viable
> way of dual booting the two...
>
> Thanks!
This is a record of my attempt to install windows 2000 after installing Linux

Partitions are 
hda1prim2300mb  fat 16  
hda2prim950mb   swap
hda5logi3100mb  linux   boot
hda6logi3000mb  linux
hda7logi11000mb linux

I intend to use hda6 for /home and hda7 for /usr.
I had been having a problem on the previous installation of linux that I had on 
this 
harddisk. I was getting on error message "hda: lost interrupt".
I thought this was initially due to a firewall script that I had installed as 
it was only 
happening when I tried to log into gnome when I had used this script to set up 
my 
iptable rules. I had been unable to find any problems by running bad block 
scans 
on the disk so thought that I would take advantage of the excuse to redo my 
partition tables and check the disk more thoroughly. I decided to put win2000 
on as 
I to be able to play around with networking windows with lin using samba on my 
laptop.

I made tar archives of the directories in / and copied them over to my laptop. 
Then I 
put a debian potato disk in and began the installation process. Using cfdisk I 
partitioned the disk as noted above. 

The reason why I began with linux was that I wanted lilo to be the boot loader 
as 
having used the win2k bootloader in my previous dual boot arrangement I was not 
happy with the way it defaulted in booting into windows. I couldn't seem to 
change 
this even through playing with boot.ini. I therefore decided to follow the 
instructions 
given in Linux+WindowsNT minihowto at www.linux.org for installing linux first 
followed by windows NT.

I continued with the debian installation process and installed the minimum 
installation of debian. I then copied the mbr to a floppy using the 
dd if=/dev/hda of=/dev/fd0 bs=512 count=1

I then put the windows 2000 disk in the cdrom drive and rebooted. The 
installation 
began and I chose to install it on /dev/hda1. According to the Linux+WindowsNT 
minihowto it is supposed to reboot at some stage through the install to lilo.
It didn't.

I continued on with the Win2k install and then logged into it when it had 
completed 
and made windows bootdisks. I then rebooted to linux using the debian bootdisk 
that I had made during the linux install. The next step was to edit lilo.conf 
and add 
an entry to Win2k.
other=/dev/hda1
label=Win2k
Save lilo.conf and then run the lilo command: /sbin/lilo 
That then recopys lilo to the mbr as the initial copy was wiped by the win2k 
install. 
Lilo does not however delete the Win2k boot record so to boot to Win2k simply 
interrupt lilo as it is booting and chose Win2k and it will boot into 
Windows2000.





Re: exim config b0rken

2002-04-12 Thread John Habermann
I had a similar problem with kmail when I set exim up. I was able to send 
mail out using balsa or mail but all I got from kmail was unrecognised 
protocol. I ended up deleting kmails mail folder and then setting kmail up 
again. It then seemed to work fine with exim so I thought there must have 
been something corrupted in kmails mail folder. You might want to back up any 
mail you want to keep before you do this though. 
 
On Fri, 12 Apr 2002 15:44, [EMAIL PROTECTED] wrote:
> greetings to all,
>
>
> a wee bit of an intro of my setup:
> a powermac 7500, running potato --> woody upgrade (i.e., woody),
> with a 2.4.18 kernel.
>
> my problem is that exim isn't sending out *any* email,
> and kmail keeps giving me an error message of "unrecognised
> protocol, cannot send message". this has been going on for
> several days, and the mail is backlogged quite a bit (subbed
> to several email lists). i can receive email, through fetchmail,
>  and i'm trying to run exim an SMTP server. the weird thing is,
> a few days ago, exim was sending mail.
>
> i'm attaching my exim.conf file, and hopefully it can help you
> help me.
>
> eric


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: alternative web browser to netscape

2002-04-10 Thread John Habermann
Thanks for that Karsten. I just hadn't installed the kdebase-crypto package 
for some reason. Still find that it had some difficulty with some of the 
government department sites that use active server pages. But then I have to 
tell opera to identify itself as MSIE 5.0 in order for it to load those pages 
anyway. Otherwise I get a little message saying error and telling me to close 
the application and try again. Changing the id konqueror gives to the site 
hasn't made any difference. In galeon the first time you load the page you 
get the same error message but then if you just reload the page it will work. 
Have emailed the webmaster for the site so will see what they have to say.

On Wed, 10 Apr 2002 18:42, Karsten M. Self wrote:
> on Tue, Apr 09, 2002, John Habermann ([EMAIL PROTECTED]) wrote:
> > On Tue, 9 Apr 2002 18:32, Tim Dijkstra wrote:
> > > On Tue, 9 Apr 2002 07:49:01 +0100
> > >
> > > "Phillip Deackes" <[EMAIL PROTECTED]> wrote:
> > > > Depends whether you do 'real-world' bowsing or not. There is no
> > > > browser in Linux which can correctly display all web sites thrown at
> > > > it. AFAIK Konqueror, for example, can't display secure web pages,
> > >
> > > That's not true. I'm using it for all my https:// browsing, although it
> > > is a little strict on what it thinks is a valid certificate.
> >
> > How have you done that. I just seem to get told that https is not
> > supported when I try to use konqueror (2.2.2 in Debian Unstable) to view
> > https pages.
>
> You need non-US in /etc/apt/sources-list and the kdebase-crypto package
> installed.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: alternative web browser to netscape

2002-04-09 Thread John Habermann
On Tue, 9 Apr 2002 18:32, Tim Dijkstra wrote:
> On Tue, 9 Apr 2002 07:49:01 +0100
>
> "Phillip Deackes" <[EMAIL PROTECTED]> wrote:
> > On Mon, 8 Apr 2002 14:22:25 +0200
> >
> > Luca Pasquali <[EMAIL PROTECTED]> wrote:
> > > Galeon is the only substitute that I've in mind by now, links rox
> > >
> > > :-) keta
> >
> > Depends whether you do 'real-world' bowsing or not. There is no
> > browser in Linux which can correctly display all web sites thrown at
> > it. AFAIK Konqueror, for example, can't display secure web pages,
>
> That's not true. I'm using it for all my https:// browsing, although it is
> a little strict on what it thinks is a valid certificate.

How have you done that. I just seem to get told that https is not supported 
when I try to use konqueror (2.2.2 in Debian Unstable) to view https pages. I 
can't quite figure out how I am supposed to get the crypto working. View --> 
Security just tells me that SSL is not supported in this build of KDE.
I use konqueror for most of my browsing but always have to switch when I view 
any encrypted sites. In fact the only thing I can get my banking to work in 
is Netscape 4.77 and in getting True Type fonts to work all text in the 
netscape menus is now just little squares. Not that it worries me that much.
I would be quite interested in hearing what you have to do to get ssl to work 
in Konqueror.



> > ruling it out for things like on-line banking etc.. I need to use
> > Opera, Galeon and Netscape 6 to cover most sites, and Netscape 4 is an
>
> Unfortunately this is true, you need multiple browsers if you want to see
> everything (konqueror helps to give you a bigger range), but then you've
> also got sites that refuse to work with anything other than ie. That's only
> because there are a lot of worthless/lazy web builders out there. If you
> try it isn't really that hard to let something comply with w3c standards
> and to write a script that works on both ie and mozilla (and the sort). But
> it's a fact that most web builders only think ie. The one thing you can do
> is try to make the people who paid for such a site understand that they
> paid for a broken product.
>
> > Galeon is probably the best at the moment - but it has a way to
> > go.
>
> I personally like konqueror, but it too isn't there yet...
>
> Grts,
>
> Tim


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]