Re: Monitor display fubarred

2002-03-14 Thread BOF



On Wed, Mar 13, 2002 at 08:37:17PM -0700, Glenn Williams wrote:

I am unable to find such a tool in RH 7.2.  

Have you tried xvidtune?

I don't want to use the controls on the monitor itself, because then other operating 
system 
displays will be fubarred

Many of the newer monitors will store settings. With mine, I can store 
one setting for DOS and another for each OS. Perhaps you could try this 
and see.

BOF 


___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: RedHat 7.2 codename

2002-03-14 Thread BOF

If this is what you want, their monthly newsletter is called Under the 
Brim, and there's a link to subscribe on their home page

www.redhat.com

Glenn Williams wrote:

I still haven't found their mailing list.  Maybe they haven't migrated 
from their last one, yet.  Anyone know how/where to subscribe?



___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: AOL on linux w/o win4lin or vmware

2002-04-18 Thread BOF

Joel Hammer wrote:

Is there a way to get AOL to work on linux without win4lin or vmare?

Yes. Persuade AOL Corporation to release the source code, tweak it as 
needed, and compile it under the Linux libraries. (Sorry! I couldn't 
resist that.;-). Outside of that, AOL is a Windows-based application, 
and there is simply no way to get it to run under Linux without running 
it inside a Windows emulator like WINE, Win4Lin, or VMWare.

There are however, many Linux programs that emulate the functions of 
much of AOL, such as instant messaging and chat (ircii, gnomeicu and 
X-Chat come to mind), if this would help. Additionally, some of AOL's 
sections are accessible using any web browser.

So, while you might not be able to run AOL and have its convenience, you 
could achieve the functional equivalent of much of it under Linux, while 
avoiding ALL of its problems.

BOF





___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Sick RedHat strategy or really 3 iso bloatware?

2002-05-10 Thread BOF

Nate Cole wrote:

Is this some way to force people to buy CDs 

I think it might be an internationally-based (left-winged or 
right-winged, your choice) plot by the CD manufacturers to force people 
to buy CD's. g

Based upon my experience yesterday on my testbed 233 MMX with 128 MB 
RAM, RH 7.3 will need somewhere around 1.9 GB for a custom 
X/KDE+GNOME/emacs/development+kernel development installation. It took 
almost 70 minutes to write the files during the installation. Even a 
stock workstation installation was about 1.8 GB. Other users on the Red 
Hat forums report similar times and sizes.

This compares on the same system with 6.2, which was about 900 MB and 15 
minutes, and 7.2 which was about 1.4 GB and 25 minutes.

So the installation time makes a nice lunch break ...

BOF



___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Directory write permissions -- fail

2002-05-23 Thread bof

I've been trying to understand permissions on directories, but am having 
trouble with the write permission.

As I understand it, read permission (r--r--r--) on a directory allows 
the contents to be listed, write (-w--w--w-) allows files to be 
added/deleted, and execute (--x--x--x) allows access to the file contents.

To test this, I created a directory, foo, and put three files in it: 
foo1, foo2, foo3 (contents: this is foo1/2/3). I gave these files 
rwxrwxrwx permissions to prevent file permission problems.

Then I changed the foo directory permissions to r--r--r--.  I could list 
the files, but not do anything else like add/delete or less the file 
contents. This is as it should be.

Then I changed the directory permissions to --x--x--x. I could list the 
file contents using less, but could not do anything else like ls -al 
foo, or add/delete a file, as should be.

But when I changed the directory permissions to -w--w--w-,  I could not 
add a new file or delete any of the existing files, getting a 
permission denied message. This is not as I understand it: I should be 
able to do this.

Could anyone explain why?

Thanx.

BOF

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Directory write permissions -- fail

2002-05-23 Thread bof

Thanx. Your explanation makes sense.

So the execute permission must be used with the read or write permission 
when dealing with a directory if the user plans on allowing read or 
write access to it.

But no book that I have read, and for that matter, the man/info page 
explains permissions like this: the explanation is simply that the 
write permission allows files to be added or deleted from the 
directory, implying that write alone is all that is needed.

I would hope that your book will take the time to explain this 
permissions business a little better than other's.

David A. Bandel wrote:

On Thu, 23 May 2002 06:32:47 -0600
begin  bof [EMAIL PROTECTED] spewed forth:

I've been trying to understand permissions on directories, but am having

trouble with the write permission.

As I understand it, read permission (r--r--r--) on a directory allows 
the contents to be listed, write (-w--w--w-) allows files to be 
added/deleted, and execute (--x--x--x) allows access to the file
contents.

To test this, I created a directory, foo, and put three files in it: 
foo1, foo2, foo3 (contents: this is foo1/2/3). I gave these files 
rwxrwxrwx permissions to prevent file permission problems.

Then I changed the foo directory permissions to r--r--r--.  I could list

the files, but not do anything else like add/delete or less the file 
contents. This is as it should be.

Then I changed the directory permissions to --x--x--x. I could list the 
file contents using less, but could not do anything else like ls -al 
foo, or add/delete a file, as should be.

But when I changed the directory permissions to -w--w--w-,  I could not 
add a new file or delete any of the existing files, getting a 
permission denied message. This is not as I understand it: I should be

able to do this.

Could anyone explain why?


Directories are special cases.  the execute bit allows you to cd into the
directory.  In order to write a file, you have to be able to enter the
directory.  Reading and running files is a little harder to understand. 
Programs (not scripts) can be run from outside the directory with only the
executable bit set. Scripts cannot be run this way. You must have r-x set
because you have to be able to read the file to run it.

This is one of the more difficult parts of understanding why things work
the way they do.  But this is some of what you need to understand to
create chroot jails with executables that can't be modified (or even
accessed) by the user.

Ciao,

David A. Bandel




___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: database setup on win98

2002-05-24 Thread bof

Have you considered an older version of MS Access --- say 97?

 Keith Antoine wrote:

 So do you want the frontend to run on windoze, or the entire DB?

 It will all have to run on windows.


BOF

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Small mini poll

2002-06-03 Thread bof

stayler wrote:

Hi Guys,

I have been watching the boxen thread with interest.  I noticed that a
few of the the members are using some flavor of Slackware on some of
their systems.  I would like to know, of the members who use Slackware,
what you think of it and how has it worked for you.

I used Slackware for some months, but have recently switch to KRUD 
(www.tummy.com/krdu)

Slack was great. I liked the BSD configuration system; the system setup 
files were clearly written; it was very stable; there wasn't the 
Bug-of-the-day that seems to exist with RedHat; you can download the 
kernel source and recompile/update the kernel without problems because 
Slack doesn't need a lot of improvements in the source that RH and 
SUSE seem to.

It was a nice, tight distribution.

OTOH, you have to compile most everything you use from the source code 
-- which takes time and I was amazed at the amount of programs that had 
some really sloppy coding that called for editing and recompiling; some 
programs did not want to work well (CUPS comes to mind) because their 
developers wrote them for RH; it doesn't use PAM; there is no package 
management program of any utility; getting help can sometimes be 
difficult because the formal support site is not always up, and some of 
the answers to questions weren't always right; there aren't pretty 
configuration tools with it -- you have to edit copnfiguration files by 
had, BUT the files are written very clearly.

On the whole, I was very satisfied with it: if all the other 200+ Linux 
distributions were to disappear, leaving only Slackware, I wouldn't 
complain.

BOF







___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Adobe Acroread default installs is in Chinese

2002-06-06 Thread bof

Yes. I just downloaded and installed it again, with the same problem.

Myles Green wrote:

Are you sure you grabbed the english version? I have version 5.0.5 
installed and it's in english...


___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Adobe Acroread default installs is in Chinese

2002-06-06 Thread bof

OK, I tried the 7.3 .rpm version, although it is for Acroread 4.05, and 
had the same problem: it comes up in Japanese.

The problem does not occur with Slackware 8.0. BTW, as I tried the 5.0.5 
installation there.

So it's got to be something somewhere in the font environment, but I've 
looked at every file in the Acrobat directory and do not see anything 
that has squat to do with fonts.


BOF


Net Llama! wrote:

Its a binary, they are the same in both.

When I run it, here's the error messages:

Warning: Cannot convert string
-*-fixed-medium-i-normal-*-*-120-72-72-*-*-*-* to type FontStruct
Warning: Cannot convert string -*-fixed-*-i-*-*-*-120-72-72-*-*-*-* to
type FontStruct
Warning: Cannot convert string
-*-helvetica-medium-i-*-*-*-120-72-72-*-*-*-* to type FontStruct
Warning: charset of fontList (JISX0208.1983-0) does not match locale
(ISO8859-1).

All the menus come up in Japanese, which I do not speak/read/write.

This problem occurs with both the version downloaded from the web site
and the ftp site.




___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Adobe Acroread default installs is in Chinese

2002-06-06 Thread bof

Because everything else is working, and I did not have a problem until I 
installed Acroread.



Net Llama! wrote:

Why are you assuming its *acrobat* that's horked, when the problem is with
your box?

Youv'e prolly got some fonts missing, or a default font set somewhere to
some kind of japanese charset.

  



___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Adobe Acroread default installs is in Chinese --- Solution

2002-06-06 Thread bof

Like so many other things in life, the problem turned out to be the 
operator, not the system.

The problem arose from the way the fonts were set under KDE. Using the 
Control Center, I tried resetting everything to the default. This did 
not work, but after I reset the Look  Feel - fonts to default and then 
changed the character set to iso8859-1, and Look  Feel - Style - 
Apply fonts and colors to non-KDE apps, it apparently cleared something 
and Acrobat works as it should. BTW, I do not use anti-aliasing.

I have no idea where the system decided to use the Japanese character 
set, but I found it under my Konsole font settings. This, along with the 
fact that Acroread would run in English if I logged as root, but gave an 
error message Warning: charset of fontList (ISO8859-15) does not match 
locale (ISO8859-1) was my clue that something somewhere in the KDE 
settings were awry.

I have no idea how it got this way, for I have never messed with the 
font character sets at all, other than to change the desktop background 
to white and make the icon fonts a little larger.

It would appear that this is one of those cases where the computer set 
itself up without the operator's help, and led to another several hours 
wasted playing with the computer g.

To those of you who took time to answer, thanx.

BOF



bof wrote:

 I posted this on the Adobe site, but have not gotten an answer. I'm 
 posting it here in hopes that someone else might have encountered and 
 solved the problem.

 I'm running RH 7.2

 -

 I think there's an installation problem with the Linux version of 
 Acroreader 5.0.5, in as much as it seems to install by default the 
 Japanese version. When I run it, here's the error messages:

 Warning: Cannot convert string 
 -*-fixed-medium-i-normal-*-*-120-72-72-*-*-*-* to type FontStruct
 Warning: Cannot convert string -*-fixed-*-i-*-*-*-120-72-72-*-*-*-* 
 to type FontStruct
 Warning: Cannot convert string 
 -*-helvetica-medium-i-*-*-*-120-72-72-*-*-*-* to type FontStruct
 Warning: charset of fontList (JISX0208.1983-0) does not match locale 
 (ISO8859-1).

 All the menus come up in Japanese, which I do not speak/read/write.

 This problem occurs with both the version downloaded from the web site 
 and the ftp site.

 So can do I do, other than learn Japanese?



___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Sharing Windows 98 files with Samba-lite under VMware 3.1.1 and RH7.2

2002-06-14 Thread bof

Hello,

I trying to share some of the files on my Linux system using Samba and 
VMware. I'm running RH 7.2 as the host and Windows 98 as the guest under 
VMware-workstation 3.1.1. My computer name is Bill and the directory 
containing the files I want to share is /home/bof/files. When Windows 98 
loads, I can see Bill under network neighborhood, but when I click it, 
nothing comes up.

I followed the instructions that VMware gives under its help file under 
the line for Move files under virtual machines - Sharing files 
between guest and host operating systems to set up sharing. Here's what 
I did.

Under Linux, I configured the /etc/vmware/vmnet1/smb/smb.conf file by 
doing the following:

   1. Comment out the line starting with interfaces=IP addresses.
   2. Below this line, add interfaces=vmnet1 vmnet8.
   3. Provide a network workgroup name. Set workgroup=workgroup.
   4. If you do not want to use the standard DNS name for the Linux
  system, set netbiosname=Linux system name.
   5. You can leave security=user, unless you cannot connect, in which
  case you would use security=share.
   6. Set encrypt passwords=yes.
   7. In the [global] section, define a different shared memory access
  key. Add this line:
  sysv shm key=/dev/vmnet8
   8. For better performance, at this line:
  socket options = TCP_NODELAY
  edit the line to state:
  socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
   9. To create the share, add the following:
  [SHARE_NAME]
  /home/bof/files
  public = no
  writable = yes
  printable = noHello,
  10. Comment out the line starting with interfaces=IP addresses.
  11. Below this line, add interfaces=vmnet1 vmnet8.
  12. Provide a network workgroup name. Set workgroup=workgroup.
  13. If you do not want to use the standard DNS name for the Linux
  system, set netbiosname=Linux system name.
  14. You can leave security=user, unless you cannot connect, in which
  case you would use security=share.
  15. Set encrypt passwords=yes.
  16. In the [global] section, define a different shared memory access
  key. Add this line:
  sysv shm key=/dev/vmnet8
  17. For better performance, at this line:
  socket options = TCP_NODELAY
  edit the line to state:
  socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
  18. To create the share, add the following:
  [SHARE_NAME]
  /home/bof/files
  public = no
  writable = yes
  printable = no
  I then restarted vmware. 



When Windows started, I configured Control panel - Networking as follows:

Added the Client for Microsoft Networks, and enabled file sharing. 
Once I did this, a line appeared for File and printer sharing for 
Microsoft Networks. It has the properties Browse Master - Automatic, 
and LM announce - No
Added NetBUI. It has bindings for Client for Microsoft Networks and 
for file and printer sharing for Microsoft Networks
Added TCP/IP with it set up for obtaining an IP address automatically

Of course, I had to restart Windows 98 after doing this.

When Windows 98 starts, I may have to click several times in Windows 
Explorer on Network Neighborhood to get Bill to show up under it. 
(Sometimes this happens, sometimes it doesn't.) While doing this, I get 
a dialog box stating Unable to browse the network. If I close this 
box, and then click Entire network, then Workgroup, Bill will show up. 
When I click on Bill, nothing shows as being shared.

Under properties for Network Neighborhood, the tab Identification is set 
with computer name - Bill, and workgroup - WORKGROUP. The tab Access 
Control is set to Shared-level access control. If I try to set it to 
User-level access control, the word WORKGROUP appears in the box for 
Obtain list of users and groups from and when I click the OK button, I 
get a dialog box  stating Windows could not find the specified security 
provider on the network. Do you want to use the name you typed anyway? 
Yes or No. If I click Yes,  I then get a dialog box asking me to 
select the kind of authenticator you typed and choose in a drop-down 
box between Windows NT domain and Windows NT server. I've tried 
using Windows NT domain instead of using Shared-level access control, 
and then changed the smb.conf file security line to user = shared, 
without avail: all it seems to do is make Windows take longer to load.

It was my understanding that I should at least get as shared my /home 
directory from Linux as the default from the lines in smb.conf

; Home directories
[homes]
  comment = Home directories
  browseable = no
  writable = yes

If I set the line browsable to = yes, I still don't have /home/bof show up.

It was also my understanding from the help file mentioned above that

if you use the same user name and password to log in to the guest as
you do the Linux host, then you are not prompted to log in when you
browse the Linux host

Re: Sharing Windows 98 files with Samba-lite under VMware 3.1.1 andRH 7.2

2002-06-15 Thread bof

Keith Antoine wrote:

I have no idea where that convulated instructions came from but it is all 
VERY WRONG.

OK, I tried a fresh installation and now have my computer present under 
Network Neighbor. But when I click on it, nothing appears.

Could you send a copy of your smb.conf file off-list. I'd like to see it.

Thanx.

BOF

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Sharing Windows 98 files with Samba-lite under VMware 3.1.1 andRH7.2

2002-06-15 Thread bof

William F. Day wrote:

On a win9x .. viewed thru win9x nn?  if so that is either because the shares
are not viewable/browesable or you dont have any shares setup yet.


This must be the problem, but I was under the impression that my home 
directory would show up automatically as part of the VMware Samba setup. 
It's not. I even went in and added browsable = yes to the [homes] 
section without success.

So how do I set up shares for my home directory so that I can see it -- 
seeing it is all I want anyway, as that is where the files that I need 
to access under Win98 are.

BOF



___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Sharing Windows 98 files with Samba-lite under VMware 3.1.1 andRH 7.2

2002-06-15 Thread bof

Keith Antoine wrote:

When making the initial install of vmware, what networking are you choosing.
Also you are trying to use samba itself to setup the net whilst i use the 
vmware system to setup the network. At no time do i use samba other than what 
vmware does to samba.



I'm taking the stock installation of a downloaded version 3.1.1, made 
available to me as a purchaser of 3.0, saying yes to the do you want 
to access the local host file system question, and using the bridged 
option for networking. At all times, I took the default for everything, 
including setting up Samba. Networking is set up, and I can access the 
Internet.

I just can't see my home directory. The computer icon is there, but 
there is nothing in it.

BOF

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: diff OpenOffice StarOffice

2002-07-02 Thread bof

Michael Hipp wrote:

Does anyone know what the certain file filters is? Specifically, will SO 
be a better drop-in replacement for MSOfc than OO?

For one, SO has a filter to import WordPerfect documents, while 
OpenOffice does not (altho it is being worked on).

BOF


___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: United Linux: why MandrakeSoft will not join

2002-07-03 Thread bof

Lee wrote:

Then there is this great bug-a-boo of splintering. So what? That's what
Linux is all about. The only unsplintered OS around is M$. 

And just how unsplintered is a company that offers

DOS
Windows 95
Windows 98
Windows 98SE
Windows ME
Windows NT
Windows 2000
Windows XP

in various versions of each?

At least the core of Linux is still the Linus kernel. g



___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Anyone try Lindows yet?

2002-07-05 Thread bof

Jay Nugent wrote:

   Do you feel that dumping a Lindows box on my 76 year-old Dad 

 From some of the reviews, I wonder if you wouldn't be better off with 
one of the Mandrake-powered systems.

BOF

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Console program

2002-07-16 Thread bof

Richard R. Sivernell wrote:

  Looking for a replacement to xfterm. No kde x.x on system.
Have eterm now and do not like it much. Would like something 
like kde konsole, but I am kde free. Any ideas out there?

I rather like multi-gnome-terminal (http://multignometerm.sourceforge.net/).

BOF

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: tabbed text editor

2002-10-07 Thread bof

ronnie gauthier wrote:

Anyone know of a decent tabbed text editor?


Glimmer is nice, if/when you can get it to compile.

See

http://glimmer.sourceforge.net/
   

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users



Re: Hard drive upgrades

2002-10-22 Thread bof
David Aikema wrote:


I've currently got Windows 98 SE (on a 10 gig drive) installed alongside SuSE 
7.3 Pro (on an 8.4 gig drive) using a motherboard about 2 1/2 years old.  If 
I were to replace these two drives with a single 60 gig+ drive should I 
expect to encounter any problems?


My experience is that the two do not always co-exist together. I've had 
Linux eat my Windows 98 data drive and turn it into one big swap file. 
There's also been problems with the Linux version of Disk Druid not 
ending partitions on a cylinder boundary (or something like that, IIRC).

I'd really advise keeping one or the other one its own drive, depending 
upon which one you want to have the most space.

Most larger drives come with a DOS-bootable disk with a utility on it 
that allows you set up the drive to insure that whole thing is usable 
when you install it  --- its a one-time operation.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: [ot] pronoun for countries

2002-11-21 Thread bof
Robert Black Eagle wrote:


Now you want confusion, try to explain how and where to use the in 
English.  If you say you live int THE Paris, you mean you live in 
Paris, France and not, let us say, Paris, Texas.  However, how would 
you make that reference to The Hague (where The is part of the name)? 
And there are other confusing uses for the, some of which are 
dialect variations.


As my wife, who is not a native English-speaker says, English is sure a 
f**ked up language. You say you are going to the store, but you are 
also going to church. You go shopping, but you don't go eating. Etc., 
etc..

BOF


___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Server Distros

2002-12-24 Thread bof
Condon Thomas A KPWA wrote:


I'd be interested in what distros the folks on this list use for servers and
why.



Have you considered KRUD Server? It's based on Red Hat, but designed 
strictly for servers, so it doesn't have a lot of extraneous 
applications on it and installs in a footprint about 450 MB in size.

See www.tummy.com for more information.

And of course, there's always Slackware or Debian for a very stable, 
minimal installation.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Server Distros

2002-12-24 Thread bof
Condon Thomas A KPWA wrote:


Do they have a download version?  I didn't find one on the website.



No download, they're strictly by subscription, which is updated monthly 
if you subscribe, otherwise you can buy a copy whenever you want at the 
single copy price.

I've been using their desktop version for about a year now and their 
server for about six months.and am very pleased with them.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Microsoft gets an *F* from CNN (and others...) in security

2003-02-03 Thread bof
Jerry McBride wrote:

 Bill Gates, a classic example of a successful american capitalist.


The term robber baron, an appelation applied to 19th-century railroad 
and oil tycoons of incredible wealth and no scruples whatsoever, might 
be a better description.

BOF


___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Slackware 9.0

2003-03-27 Thread bof
Collins Richey wrote:

OK, I've freed up a partition to experiment with this, but how do I
download and burn a CD?
The readme file on the Slack site suggests using mkisofs to do this and
has the complete mkisofs command, but how do you get there from here?
The readme says get into the top level Slackware directory.  Does this
mean you have first to download and duplicate the complete directory
tree as it appears on the ftp site before you can do the mkisofs? 

From the README file,

   To make a bootable Slackware install CD, get into the top level
   Slackware
   directory (The one with ChangeLog.txt in it) and issue a command
   like this
   to build the ISO image in /tmp:
   mkisofs -o /tmp/slackware.iso \
   -R -J -V Slackware Install \
   -x ./bootdisks \
   -x ./extra \
   -x ./slackware/gnome \
   -x ./pasture \
   -x ./rootdisks \
   -x ./source \
   -x ./zipslack \
   -hide-rr-moved \
   -v -d -N -no-emul-boot -boot-load-size 32 -boot-info-table \
   -sort isolinux/iso.sort \This is for a 10 speed burner, adjust it
   for the speed you can burn at.
   -b isolinux/isolinux.bin \
   -c isolinux/isolinux.boot \
   -A Slackware Install CD .
   Then use 'cdrecord' to burn it.  (See 'man cdrecord')

   Notice that to fit the install image on one CD, you must exclude GNOME:

   -x ./slackware/gnome \

   or exclude KDE:

   -x ./slackware/kde \
   -x ./slackware/kdei \
   or, leave them both off:

   -x ./slackware/gnome \
   -x ./slackware/kde \
   -x ./slackware/kdei \
   or, leave off the KDEI series (KDE translations):This is for a 10
   speed burner, adjust it for the speed you can burn at.
   -x ./slackware/kdei \

What I found is that the top level was the directory that had all the 
README, UPGRADE, FILE-LIST, and PACKAGE files in it along with the 
directories for source, slackware, rootdisk, etc., in it.

In order to get everything on one CD, you have to leave off some things, 
as is suggested above with all the -x listings and the advice to leave 
off either GNOME, KDE, or KDEI. I left off KDEI and all the -x listings 
as suggested.  This fit nicely on one CD.

But since the -x listings need not be burned onto the CD, they also do 
not need be downloaded --- why take time to download something you will 
not use? I did download the rootdisk and extra directories, as there was 
stuff on them that I wanted even if I did not put them on the CD. So you 
do not need download the entire directory tree, just the stuff you want 
to use. As a minimum, you'll need the isolinux, kernels and slackware 
directories.

I ended up issuing this command to make the .iso image

   mkisofs -o /tmp/slackware.iso \
   -R -J -V Slackware Install \
   -hide-rr-moved \
   -v -d -N -no-emul-boot -boot-load-size 32 -boot-info-table \
   -sort isolinux/iso.sort \
   -b isolinux/isolinux.bin \
   -c isolinux/isolinux.boot \
   -A Slackware Install CD .
Note the . at the end of the command. This created an .iso image 
called slackware.iso in the /tmp directory and put the base 
installation on it along with Gnome and KDE in the CD image. Make sure 
that /tmp has enough room for the .iso image (about 700 MB).

To burn the CD, issue

   cdrecord -v speed=10 dev=0,0,0 -data /tmp/slackware.iso

This is for a 10 speed burner as the first burner in the system, adjust 
it for the speed you can burn at and for your burner placement.

Good luck.

BOF





___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Slackware 9.0

2003-03-28 Thread bof
Collins Richey wrote:

OK, I've freed up a partition to experiment with this, but how do I
download and burn a CD?
There are now Slackware 9.0 .iso's out. See

   http://www.abnormalpenguin.com/slackware-mirrors.php

If you can get onto any of the sites, that is. ;-)

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: OT anyone looking to sell their laptop?

2003-04-01 Thread bof


my trusty (really) old Sony Vaio died over the weekend (won't power on
at all), so i'm looking to purchase a replacement, but i'm on a
You can get remanufactured systems from

Dell at  http://www.dell.com/us/en/dfh/products/line_notebooks.htm

and Gateway at  http://www.gateway.com/reman/hm_notebook_matrix.shtml

These are the pages for home users. There are also ones available for 
business; search remanufactured or refurbished at the main site.

These systems usually come with a warrantee that is the same as a new 
system. I've bought a used Dell Desktop at about 50% the cost of a new 
one and had great service from it.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: [OT] Slackware List

2003-04-01 Thread bof
Ken Moffat wrote:

Is it necessary to remove the old ones, or can an upgrade be done?


I downloaded all the files in the directory mentioned earlier, except 
the KDEI subdirectory, and then, as root, went to the directory where I 
had downloaded everything, and typed upgradepkg *.tgz.

This updated all the KDE packages and so far it has been working without 
problems.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: bootable Redhat based CD?

2003-06-05 Thread bof
Net Llama! wrote:

Anyone know of a bootable Redhat based CD, similar to the Knoppix 
concept?  I need to integrate some stuff into a bootable redhat 
environment, and i'd rather not have to make it myself if i don't have 
to. 


I don't know of a full version of Red Hat on one CD, but there is a 
rescue disk for 8.0 here

   ftp://ftp.redhat.de/pub/rh-addons/rescue-cd/

and for 7.3 here

   ftp://ftp.redhat.de/pub/rh-addons/rescue-cd/old

These fit onto a business card-sized CD and I have found them to be useful.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Redhat 9 and KDE

2003-06-17 Thread bof


Roger Oberholtzer wrote:

I remember seeing that redhat did some wild integration of KDE and Gnome in
their latest release. I never did get a feel for whether you could still
run KDE with its own look. Is this possible? If so, is it so without hassle?
IIRC, there is an option under KDE to set it to the default KDE look. I 
can't provide more specific info as I no longer have access to a
RH 9.0 system, but I do recall seeing it as an option somewhere.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Morse

2003-07-01 Thread bof
Shawn Tayler wrote:

Not Slackware version 8.1!  That's what I am running here and no joy. 
I'll dig in the CD.


You can get it from sourceforge at 

	http://sourceforge.net/project/showfiles.php?group_id=34241

Run make install to put it into /usr/local/bin.

Or at least it did for Red Hat 7.3 for me.
 

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: ksh93 on Caldera

2003-07-01 Thread bof
Roger Oberholtzer wrote:

I need to run ksh93 on Caldera 3.1.1. The pdksh that comes with 3.1.1 lacks
features used in some test scripts that we want to run on Linux.
I downloaded the compiled ksh93 for Linux from ATT, only to see that it
uses glibc 2.3, which I do not have installed.
My question is, would I be able to simply make the glibc 2.3 binary
available for the program and have it run? I do not want to do a real
install of a new glibc as I expect it to be a potential problem. I 
know I can try and see, but I was curious if anyone had any warnings of
bits of wisdom to impart for this.

(I am also looking for the source on the ATT site. It is mentioned as being
available, but the link seems illusive.)
I never had any luck with compiling the ATT version, so I used the 
binary that comes with Slackware. It runs just fine under Red Hat 7.3, 
and AFAIK is completely standards compliant with the KSH93 specs.

Have you considered trying it?

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Zaire still won't connect

2003-07-14 Thread bof
Joel Hammer wrote:

Still trying to get my Zaire to connect via usb. Just love progress!

snip

All I get is this:
  J-Pilot: press the hotsync button on the cradle or kill 4181


I have the same problem with my Sony CLIE NX60 under RH 7.3.

From what I have gleaned from the j-pilot list archives, I believe that 
the problem is that the usb software does not recognize Palm OS 5.0 for 
the Zire and Clie. The problem, I think, is in the structures as defined 
in visor.c and visor.h in drivers/usb/serial/visor for the kernel, in 
that the definitions there are for OS 4.1 and not for 5.0.

Which means that there is not much you can do until someone updates 
these. (Or write them yourself, as I am sure some will say ;-) ).

Perhaps you could post to the j-pilot mailing list and see if any else 
has this problem and has solved it. I intend to (someday), but for  
right now I am using an old Windows machine for supporting my NX60 --- a 
lot of the medical software I use has to have Windows to install or run 
and so I am stuck with it.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: RH and XP

2003-07-14 Thread bof
Michael Hipp wrote:

Joel Hammer wrote:

Regarding Net Llama's comment, if you want to learn linux, there is 
nothing wrong with using an older distribution.
All true, but I'd still recommend he go ahead and download RH 9.0. By 
having a boxed set he has manuals, and I assume that might be the draw 
of it. And the RH manuals are quite good for the most part. But 98% of 
the stuff in the in the older manuals will still apply and the rest 
can be gleaned from the online RH docs. I still use my RH 7.3 books 
when fiddling with RH 9.0. 


Of course, he can download the documentation for older versions also: 
all of the manuals should be available as .rpm files. They might be 
available as an .iso image called the documentation CD, if he can find 
an older ftp site, but I think that they were also available as 
individual files.

As an aside, this is the second comment this morning on this list about 
which distro to use when learning Linux. It used to be (even up to last 
year) that for those who wanted to REALLY, REALLY learn Linux were 
pointed towards Slackware as so much of it had to be set up manually via 
configuration files --- which was considered to be a good learning 
experience. Of course, one problem with this is that Slackware uses the 
BSD-style init scripts, and uses the .tgz package manager so that 
those using it as a learning tool would not get the knowledge of the Sys 
V init setup and .rpm that seems to have become the de facto standard 
for Linux distributions.

But has Red Hat really become so dominant that it is now the standard 
when it comes to learning Linux?

And more importantly to me, when I dump RH 7.3 at the end of the year 
from RH not supporting it any more and go back to Slackware, will I 
someday be the only Slackware user left in the world? g

BOF





___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: So do I need to start learning SuSE?

2003-07-22 Thread bof
Michael Hipp wrote:

This whole thing smacks of We have no interest in you unless you're a 
deep pockets enterprise that will throw money at us in basketfuls.

A year or two from now, will there even be a RHL that has 
documentation, support, security updates, QA testing, etc. etc.?

In the end, how will RHL be any different than the other hundred 
half-baked volunteer distro projects?

Somebody tell me I've got this all wrong. 


You may not have it wrong. I suspect that RH will move away from the 
individual user and the desktop as it concentrates more on the 
enterprise --- they've certainly said as much over the past few months.

Which will leave a HUGE gap (RH is about 50% of US distro usage) for 
someone to fill, maybe Mandrake.

Or, unless the Linux community countersues SCO to offset its FUD and 
begins winning the war of public opinion, FreeBSD.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Unknown host error message when trying to ping Internet

2003-08-01 Thread bof
I am trying to set up a Suse 8.2 desktop box, (Bob, address 
192.168.1.33) but am having trouble connecting to the Internet. I am 
not running a firewall on it.

I can ping an Internet address by IP address without problem. When I 
try to ping by hostname I receive the error message unknown host.

I can ping other machines local to my network by both IP address and 
hostname without problem. One of the other machines in the network 
(Sam, address 192.168.1.2, RH 7.3) has no problems when pinging the 
Internet, either by IP address or hostname, and it can ping the Suse 
box without problem.

My Internet access is through a NAT gateway/firewall box with address 
192.168.1.1 (Bill) on the internal net card, and whatever address 
assigned to tthe external card by my ISP using DHCP. From the firewall 
box, I can ping the Suse box, the RH box, and the Internet using both 
IP address and hostname, all without problems,

The configuration files for the Suse box are set up as follows:

/etc/hosts
127.0.0.1   localhost
192.168.1.1 bill.mynet.net  bill
192.168.1.2 sam.mynet.net   sam
192.168.1.33bob.mynet.net   bob
# special IPv6 addresses
::1 localhost ipv6-localhost ipv6-loopback
fe00::0 ipv6-localnet
ff00::0 ipv6-mcastprefix
ff02::1 ipv6-allnodes
ff02::2 ipv6-allrouters
/etc/host.conf
order hosts, bind
multi on
/etc/resolv.conf
nameserver 216.229.33.250
nameserver 216.229.33.251
search local local
/etc/nsswitch.conf
passwd: compat
group:  compat
hosts:  files dns
networks:   files dns
services:   files
protocols:  files
rpc:files
ethers: files
netmasks:   files
netgroup:   files
publickey:  files
bootparams: files
automount:  files nis
aliases:files
The output of netstat -nr

Kernel IP routing table
Destination  Gateway  Genmask   Flags   MSS Window  irtt face
192.168.1.0  0.0.0.0  255.255.255.0 U   0 0  0 eth0
0.0.0.0  192.168.1.1  0.0.0.0   UG  0 0  0 eth0
Can anyone help me figure out what is going on?

BOF







___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Unknown host error message when trying to ping Internet

2003-08-01 Thread bof
Yes. I can ping 216.229.33.250 and get a reply. But if I try and ping 
pcisys.net (216.229.33.250 is the nameserver for pcisys.net), I get 
the unknown host pcisys.net error message.

So how do I correct this?

BOF

Net Llama! wrote:

Can you ping the IPs in resolv.conf from the SuSE-8.2 box?  If not, then
that's your problem.
On Fri, 1 Aug 2003, bof wrote:


I am trying to set up a Suse 8.2 desktop box, (Bob, address
192.168.1.33) but am having trouble connecting to the Internet. I am
not running a firewall on it.
I can ping an Internet address by IP address without problem. When I
try to ping by hostname I receive the error message unknown host.
I can ping other machines local to my network by both IP address and
hostname without problem. One of the other machines in the network
(Sam, address 192.168.1.2, RH 7.3) has no problems when pinging the
Internet, either by IP address or hostname, and it can ping the Suse
box without problem.
My Internet access is through a NAT gateway/firewall box with address
192.168.1.1 (Bill) on the internal net card, and whatever address
assigned to tthe external card by my ISP using DHCP. From the firewall
box, I can ping the Suse box, the RH box, and the Internet using both
IP address and hostname, all without problems,
The configuration files for the Suse box are set up as follows:

/etc/hosts
127.0.0.1   localhost
192.168.1.1 bill.mynet.net  bill
192.168.1.2 sam.mynet.net   sam
192.168.1.33bob.mynet.net   bob
# special IPv6 addresses
::1 localhost ipv6-localhost ipv6-loopback
fe00::0 ipv6-localnet
ff00::0 ipv6-mcastprefix
ff02::1 ipv6-allnodes
ff02::2 ipv6-allrouters
/etc/host.conf
order hosts, bind
multi on
/etc/resolv.conf
nameserver 216.229.33.250
nameserver 216.229.33.251
search local local
/etc/nsswitch.conf
passwd: compat
group:  compat
hosts:  files dns
networks:   files dns
services:   files
protocols:  files
rpc:files
ethers: files
netmasks:   files
netgroup:   files
publickey:  files
bootparams: files
automount:  files nis
aliases:files
The output of netstat -nr

Kernel IP routing table
Destination  Gateway  Genmask   Flags   MSS Window  irtt face
192.168.1.0  0.0.0.0  255.255.255.0 U   0 0  0 eth0
0.0.0.0  192.168.1.1  0.0.0.0   UG  0 0  0 eth0
Can anyone help me figure out what is going on?

BOF



___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Unknown host error message when trying to ping Internet

2003-08-01 Thread bof
pcisys.net uses 216.229.32.173 as their mail server. Their DNS server is 
216.229.33.250.

If I try to dig or nslookup pcisys.net I get a connection timed out. 
no servers could be reached message.

Wil McGilvery wrote:

I performed an nslookup and this is what I got.

pcisys.net. A 216.229.32.173

Regards,

Wil McGilvery
Manager
Lynch Digital Media Inc


416-744-7949
416-716-3964 (cell)
1-866-314-4678
416-744-0406  FAX
www.LynchDigital.com


-Original Message-
From: Net Llama! [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 01, 2003 2:16 PM
To: [EMAIL PROTECTED]

You sure that's the right IP for the nameserver?  What happens if you try
to dig or nsloopkup?
On Fri, 1 Aug 2003, bof wrote:


Yes. I can ping 216.229.33.250 and get a reply. But if I try and ping
pcisys.net (216.229.33.250 is the nameserver for pcisys.net), I get
the unknown host pcisys.net error message.
So how do I correct this?

BOF

Net Llama! wrote:


Can you ping the IPs in resolv.conf from the SuSE-8.2 box?  If not, then
that's your problem.
On Fri, 1 Aug 2003, bof wrote:



I am trying to set up a Suse 8.2 desktop box, (Bob, address
192.168.1.33) but am having trouble connecting to the Internet. I am
not running a firewall on it.
I can ping an Internet address by IP address without problem. When I
try to ping by hostname I receive the error message unknown host.
I can ping other machines local to my network by both IP address and
hostname without problem. One of the other machines in the network
(Sam, address 192.168.1.2, RH 7.3) has no problems when pinging the
Internet, either by IP address or hostname, and it can ping the Suse
box without problem.
My Internet access is through a NAT gateway/firewall box with address
192.168.1.1 (Bill) on the internal net card, and whatever address
assigned to tthe external card by my ISP using DHCP. From the firewall
box, I can ping the Suse box, the RH box, and the Internet using both
IP address and hostname, all without problems,
The configuration files for the Suse box are set up as follows:

/etc/hosts
127.0.0.1   localhost
192.168.1.1 bill.mynet.net  bill
192.168.1.2 sam.mynet.net   sam
192.168.1.33bob.mynet.net   bob
# special IPv6 addresses
::1 localhost ipv6-localhost ipv6-loopback
fe00::0 ipv6-localnet
ff00::0 ipv6-mcastprefix
ff02::1 ipv6-allnodes
ff02::2 ipv6-allrouters
/etc/host.conf
order hosts, bind
multi on
/etc/resolv.conf
nameserver 216.229.33.250
nameserver 216.229.33.251
search local local
/etc/nsswitch.conf
passwd: compat
group:  compat
hosts:  files dns
networks:   files dns
services:   files
protocols:  files
rpc:files
ethers: files
netmasks:   files
netgroup:   files
publickey:  files
bootparams: files
automount:  files nis
aliases:files
The output of netstat -nr

Kernel IP routing table
Destination  Gateway  Genmask   Flags   MSS Window  irtt face
192.168.1.0  0.0.0.0  255.255.255.0 U   0 0  0 eth0
0.0.0.0  192.168.1.1  0.0.0.0   UG  0 0  0 eth0
Can anyone help me figure out what is going on?

BOF


___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users




___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Unknown host error message when trying to ping Internet

2003-08-01 Thread bof
Apparently they have changed their systems, for 216.229.33.250 was their 
DNS server for some time and I did not look it up.

At any rate, I plugged in your values into /etc/resolv.conf and still 
get the same unknown host message.

BTW, I was under the impression that Suse had changed Yast so that it 
would accept values entered manually, which is how I have been editing 
the configuration files. But when I tried using Yast2 it was still 
calling up the older values and was not picking up the ones I had 
manually entered.  So I changed them using Yast2  also.

Still same problem  unknown host: pcisys.net

BOF

Tom Wilson wrote:

On Fri, 2003-08-01 at 14:50, bof wrote:

pcisys.net uses 216.229.32.173 as their mail server. Their DNS server is 
216.229.33.250.

If I try to dig or nslookup pcisys.net I get a connection timed out. 
no servers could be reached message.

Here are the results of my dig.  Looks like your name servers are 
ns1.pcisys.net. 216.229.32.170 and  ns2.pcisys.net.   216.229.32.166
 

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Unknown host error message when trying to ping Internet

2003-08-01 Thread bof
ronnie gauthier wrote:

Just curious
xxx.xxx.32.xxx
xxx.xxx.33.xxx
is there a typo or just a coincidence?

Coincidence.

After further investigation, it would appear that the problems that I 
have been having may be in the machine that I am using as a NAT gateway.

Which is just wonderful, as it was working fine last week.

So my thanks to all you who took the time to respond and when I find 
something out (I am tired of playing with computers today), I'll let 
y'all know.

And, BTW, ain't computers grand? g

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Unknown host error message when trying to ping Internet

2003-08-01 Thread bof
Kurt Wall wrote:

How about:

search pcisys.net local

Kurt

Yes, that was changed, but the problem still exists. I now believe that 
it is in my gateway machine, so I will have to take a look at it when 
the spirit inspires me.

Thanx to all for your help.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Why all this- Undeliverable Mail

2003-09-02 Thread bof
Replies and notices  --- lots and lots of them: probably 60 in the past 
two days.

Douglas J Hunley wrote:

Are you guys actually getting the virus or just notices that a virus was caught?

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Kwrite is taking over my desktop

2003-09-03 Thread bof
When I load KDE, I am finding that no less than four copies of Kwrite 
are also starting. Nothing I am doing will stop this.

I have set Control Center Session Manager to confirm and save sessions 
on logout. I have then closed all the instances of Kwrite that were 
running, saved the session and quit KDE. When I restart it, kdeinit 
reloads the same four copies of Kwrite.

At this stage I am not sure what else to do, because I do not know what 
or where Kwrite is saving itself. I've looked in both the global and my 
local .kde/share/config directory for the kwrite files and see nothing 
in them that would autostart it.

What need I do to stop this -- it is very annoying.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Kwrite is taking over my desktop

2003-09-03 Thread bof
Myles Green wrote:

I haven't used KDE in quite a while now but:

You might try moving or renaming your ~/.kde directory and then, after
re-login copying over your previous config files from your moved/renamed
~/.kde to the newly created directory. Copy one file at a time if you
want to see which file is the offender
I forgot to mention that this problem is occuring under both RH 7.3 and 
RH 9.0.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Kwrite is taking over my desktop

2003-09-03 Thread bof
Bruce Marshall wrote:

There also should be an 'Autostart' icon on your desktop.  
Click on it to see what's in there.

No such icon. The Autostart directory under .kde is empty other than a 
file named .directory.

Under .kde/share/config/session there is a file 
kwin_117f010001021526542024928 that contains the following. 
I thought that this was where KDE stored its settings to restore a 
session under a new login, but I don't see anything here that looks like 
it would start Kwrite.

[LegacySession]
clientMachine1=localhost
command1=/usr/local/mozilla/mozilla-bin
count=1
[Session]
count=4
desktop1=1
desktop2=1
desktop3=4
desktop4=2
geometry1=0,744,1024,24
geometry2=0,0,1016,716
geometry3=0,0,1016,716
geometry4=0,0,1016,716
iconified1=false
iconified2=false
iconified3=false
iconified4=false
maximize1=0
maximize2=0
maximize3=3
maximize4=3
resourceClass1=kicker
resourceClass2=Glimmer
resourceClass3=navigator:browser
resourceClass4=mail:3pane
resourceName1=kicker
resourceName2=glimmer
resourceName3=Mozilla
resourceName4=Mozilla
restore1=0,0,0,0
restore2=0,0,1024,744
restore3=171,124,682,496
restore4=171,124,682,496
sessionId1=11c0a8010b0001062595218520001
sessionId2=11c0a8010b00010625952280008520007
sessionId3=
sessionId4=
shaded1=false
shaded2=false
shaded3=false
shaded4=false
skipPager1=false
skipPager2=false
skipPager3=false
skipPager4=false
skipTaskbar1=false
skipTaskbar2=false
skipTaskbar3=false
skipTaskbar4=false
staysOnTop1=true
staysOnTop2=false
staysOnTop3=false
staysOnTop4=false
sticky1=true
sticky2=false
sticky3=false
sticky4=false
windowRole1=Panel
windowRole2=
windowRole3=
windowRole4=
wmClientMachine1=localhost
wmClientMachine2=localhost
wmClientMachine3=localhost
wmClientMachine4=localhost
wmCommand1=kicker
wmCommand2=/usr/local/bin/glimmer
wmCommand3=/usr/local/mozilla/mozilla-bin
wmCommand4=/usr/local/mozilla/mozilla-bin


___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Netscape help

2003-09-10 Thread bof
Collins Richey wrote:

In order to change the user agent setting, you need to get the Mozilla
extension User Agent Toolbar Widget from
http://texturizer.net/firebird/extensions.html (may be slightly
different for regular Mozilla.


I'm using Mozilla 1.4 and have Javascript enabled but going to that page 
is a dead end. I found a paragraph for Available extension with one line 
To view and download extensions, you must enable JavaScript. Is your 
extension missing on this page? Report it! 
http://texturizer.net/thunderbird/contact.html

There is however another page that does list extensions for Mozilla, 
Firebird and Thunderbird. It is at

   http://extensionroom.mozdev.org/#

There is a User Agent widget on it for mozilla. It is also at

   http://uabar.mozdev.org/

I'll try installing it an d letting you know how it works.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: Kwrite is taking over my desktop

2003-09-12 Thread bof
Matthew Carpenter wrote:

This sounds like you have something in your startup directory which used to
look like an application link (.desktop or .kdelink or something) but now is
associted with KWrite.  Did you happen to change the associations for KWrite
recently (or relatively recently to when this started).
I did not AFAIK change any associations for KWrite, and I never found 
what was causing it to start up to four times when KDE loaded. The 
problem was occuring on both RH 7.3 and RH 9.0.

What I finally did that solved the problem was to delete the directory 
.kde under my home directory. This worked although I did have to go back 
and reconfigure some of my desktop.

So while I am at a loss to say what was going on, I did resolve the issue.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://www.linux-sxs.org/mailman/listinfo/linux-users


Re: [Fwd: Red Hat Linux end-of-life update and transition planning]

2003-11-04 Thread BOF
Michael Hipp wrote:

My plan (at this moment anyway) is to use RH Enterprise WS for 
smallish servers and Fedora for workstations.

My biggest dilemma are those systems running 7.3 - 9 that will still 
need security updates for months/years to come. I'm not about to 
reload them anytime soon. Rumor is Fedora will supply security updates 
to take up the slack left by RH, but I haven't seen it confirmed.


The Fedora legacy project can be reached at 
http://www.fedora.us/wiki/FedoraLegacy. So far it looks like they'll 
still getting organized, but their plans are to support 7.3 and 9.0.

Fedora support itself will run for three months after the release of a 
new version, which should make its life about nine months.

BOF

___
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc - http://smtp.linux-sxs.org/mailman/listinfo/linux-users