Re: [newbie] Home partition too small

2003-06-08 Per discussione Gil Katz
Mount the new HD and the mount point will be /home
the wizard will copy all data to the new HD.
Gil
On Friday 06 June 2003 08:07, Aron Smith wrote:
 Hey gang anyone know of a way to increase the size of your home
 partition after adding a new (2nd HD) I only have about 1Gb free out out
 20 Gb


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Need Cable-modem help!

2003-06-05 Per discussione Gil Katz
When you start the dhcp service open in another console 
tail -f /var/log/messages
and you will see what the kernel tels you
Gil
On Tuesday 03 June 2003 23:21, Ronald J. Hall wrote:
 On Tuesday 03 June 2003 10:53 am, Derek Jennings wrote:
  Is the connection via Ethernet?
  If so just turn on DHCP and thats it done!
 
  derek

 Yes, its hooked to eth0. This is odd, I just went into MCC - services and
 according to that, dhcp is turned on, set to run at boot, but is currently
 stopped. None of the buttons from the MCC services section would start it.

 I also tried (as su) service dhcpd start...and stop, and restart. Also
 used dhcp. Still no difference.

 Any ideas? Thanks! :-)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] Telnet problem

2003-02-27 Per discussione Gil Katz
Hi
when i try to connect to telnet 127.0.0.1 23 i get 
Trying 127.0.0.1... telnet: Unable to connect to remote host: Connection  
refused
in /var/log/messages i get 
socket creation failed (Address family not supported by protocol (errno = 
97)). service = telnet
What is the problem ?
-- 
=
So long, And thanks for all the fish.
=

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Telnet

2003-02-26 Per discussione Gil Katz
On Tuesday 25 February 2003 17:30, Raffaele Belardi wrote:
Raffaele when i run tail -f on /var/log/messages i get the following
Feb 26 13:35:38 katz xinetd[18006]: socket creation failed (Address family not 
supported by protocol (errno = 97)). service = telnet
any idea?
Gil

 Gil,

 you should provide more details in your message for us to be helpful! A
 cut and paste of the output of shell commands, in particular, could help
 understand what's going on on your machine.

 Does ping 127.0.0.1 work? You should see something like 64 bytes from
 127.0.0.1:... repeated on the screen until you press CTRL-C.

 Understand that telnet is composed by a client (invoked as # telnet) and
 a server (named telnetd, note the final 'd'). Normally the server is
 _not_ installed  by default. On MDK9.0 the server package is named
 telnet-server-krb5-1.2.5-1mdk

 To make sure the server is installed, type
 # urpmi telnet-server-krb5
 You should get a message like everything already installed.

 I installed the telnet server on my MDK to check. First of all, it's a
 xinetd service, so it will not normally be shown by ps (I was wrong on
 this regard in my previous message). xinetd is a daemon that monitors
 the incoming calls on all ports and starts the registered services on
 request.

 So, try this:
 # service xinetd start
 Do you get an OK? To double check, type
 # ps -ax | grep xinetd
 you should see two lines.

 Then, go to /etc/xinetd.d and do an ls. Do you see there a file named
 telnet? This is the telnet server configuration file read by xinetd
 daemon when it detects an incoming request on the telnet port. Open it
 with a text editor and check that it contains the line disable = no
 (it means that the telnet server is enabled).

 Finally, open /etc/xinetd.conf and check that it _does_not_ contain any
 only_from lines. If it does, delete them.

 There's not much more to telnetd configuration.

 good luck,

 raffaele

 [EMAIL PROTECTED] wrote:
  On Tuesday 25 February 2003 09:36, Raffaele Belardi wrote:
  Raffaele
  it seems that i can't start telnet service
  when i do service telnet start i get ok but in mcc the status is stop
  hosts.allow and hosts.deney are empty.
  Gil
 
 I would:
 1. make sure interface is up (ping 127.0.0.1)
 2. make sure you have the telnet server package installed (Mandrake
 Control Center)
 3. make sure telenet server is up and running (ps -axl)
 4. check /etc/xinetd.conf for any ONLY_FROM lines
 5. check that /etc/hosts.allow and /etc/hosts.deny are empty
 
 The last two are the least probable causes, unless you have messed up
 with the security scripts. What level of security are you running?
 
 raffaele
 
 [EMAIL PROTECTED] wrote:
 On Monday 24 February 2003 11:33, Raffaele Belardi wrote:
 Didn't work
 any other idea's?
 Gil
 
 Assuming that you have the telnet server installed, you need to start
  it (Mandrake Control Center, System tab, Services icon).
 
 Also, I had a similar problem on the MDK PC I use at home, where I have
 a modem Internet connection. I looks like if you don't connect to
 internet, loopback port is not enabled by default, so you get the error
 below. I had to issue a
 
 # ifup lo
 
 as root, then it worked ok.
 
 raffaele
 
 [EMAIL PROTECTED] wrote:
 Hi
 when ever i try to connect to telnet 127.0.0.1 port i get
 Trying 127.0.0.1...
 telnet: Unable to connect to remote host: Connection refused
 in /etc/hosts.allow i wrote
 telnet : 127.0.0.1
 what should i do?
 Gil
 
 
 --
 --
 
 Want to buy your Pack or Services from MandrakeSoft?
 Go to http://www.mandrakestore.com

-- 
=
So long, And thanks for all the fish.
=

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Telnet

2003-02-25 Per discussione Gil Katz
On Tuesday 25 February 2003 09:36, Raffaele Belardi wrote:
Raffaele
it seems that i can't start telnet service 
when i do service telnet start i get ok but in mcc the status is stop
hosts.allow and hosts.deney are empty.
Gil
 I would:
 1. make sure interface is up (ping 127.0.0.1)
 2. make sure you have the telnet server package installed (Mandrake
 Control Center)
 3. make sure telenet server is up and running (ps -axl)
 4. check /etc/xinetd.conf for any ONLY_FROM lines
 5. check that /etc/hosts.allow and /etc/hosts.deny are empty

 The last two are the least probable causes, unless you have messed up
 with the security scripts. What level of security are you running?

 raffaele

 [EMAIL PROTECTED] wrote:
  On Monday 24 February 2003 11:33, Raffaele Belardi wrote:
  Didn't work
  any other idea's?
  Gil
 
 Assuming that you have the telnet server installed, you need to start it
   (Mandrake Control Center, System tab, Services icon).
 
 Also, I had a similar problem on the MDK PC I use at home, where I have
 a modem Internet connection. I looks like if you don't connect to
 internet, loopback port is not enabled by default, so you get the error
 below. I had to issue a
 
 # ifup lo
 
 as root, then it worked ok.
 
 raffaele
 
 [EMAIL PROTECTED] wrote:
 Hi
 when ever i try to connect to telnet 127.0.0.1 port i get
 Trying 127.0.0.1...
 telnet: Unable to connect to remote host: Connection refused
 in /etc/hosts.allow i wrote
 telnet : 127.0.0.1
 what should i do?
 Gil
 
 
 
 
 Want to buy your Pack or Services from MandrakeSoft?
 Go to http://www.mandrakestore.com

-- 
=
So long, And thanks for all the fish.
=

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Matrix Screensaver for Mandrake 9

2003-02-23 Per discussione Gil Katz
On Sunday 23 February 2003 17:02, Digdaya Panelindo wrote:
Install KDE3.1 it is there
Gil
 I very interested with matrix screensaver on Redhat Linux. where is the
 right place i can find it. and maybe all off you have another way to
 installed this. thanks for your help

 Teddy Widhi Laksono

-- 
=
So long, And thanks for all the fish.
=

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Telnet

2003-02-22 Per discussione Gil Katz
On Saturday 22 February 2003 07:22, Larry Williams wrote:
Stephan the answer to your 2 q is no and i'll be tahnkfull if you will e-mail 
them to me
Larry
i have enteries in /etc/services 
one of them is telnet 23/tcp
i tried to cennect to port 23 and nothing, i installed telnet server on the 
comp but not sure if it works.
the whole problem started when i try to use hotwayd and could'nt connect to 
hotwayd via telnet.
Gil
 On Friday 21 February 2003 03:35, Gil Katz wrote:
  Hi
  when ever i try to connect to telnet 127.0.0.1 port i get
  Trying 127.0.0.1...
  telnet: Unable to connect to remote host: Connection refused
  in /etc/hosts.allow i wrote
  telnet : 127.0.0.1
  what should i do?
  Gil

 Hi Gil.

 I get the same thing here, but I didn't allow the telnet service when I
 installed.  Do you have telnet entries in /etc/services?  Do you have a
 telnet server installed?

-- 
=
So long, And thanks for all the fish.
=

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] Telnet

2003-02-21 Per discussione Gil Katz
Hi
when ever i try to connect to telnet 127.0.0.1 port i get
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused
in /etc/hosts.allow i wrote
telnet : 127.0.0.1 
what should i do?
Gil
-- 
=
So long, And thanks for all the fish.
=


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] KDE 3.1

2003-02-16 Per discussione Gil Katz
OK
I'm starting a new thread because this is a big problem
I downloaded all the rpm's from textar and did what the readme file instructed 
to do , that is logout login to gnome remove kde and then start to install.
after doing that i reboot and login to kde
now i don't have my desktop i.e i cant create shortcuts on it nor change 
wallpaper, the konqueror crush each time i start it, the screensaver doesn't 
work etc.
help please
Gil
-- 
=
So long, And thanks for all the fish.
=


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] Lovin' KDE 3.1

2003-02-15 Per discussione Gil Katz
On Saturday 15 February 2003 15:44, Daniel Anderson wrote:
 On Friday 14 February 2003 02:09 pm, Gil Katz wrote:
  On Friday 14 February 2003 04:58, Miark wrote:
   Anne  Jordan,
  
   I downloaded the RPMs from the following location to a single folder:
  
  
   http://ftp.ibiblio.org/pub/Linux/distributions/contrib/texstar/linux/di
  st ri butions/mandrake/9.0/KDE-3.1/
  
   Then in runlevel 3 from within that folder I did a
  
 urpmi ./*.rpm
  
   and that was it. When I started KDE, not only did everything work, but
   it kept all my bookmarks and settings. It was the epitome of
   effortless.
  
   Miark
  
  
   On Fri, 14 Feb 2003 01:07:39 +
  
   Jordan Elver [EMAIL PROTECTED] wrote:
On Thursday 13 Feb 2003 10:45 pm, Anne Wilson wrote:
 On Thursday 13 Feb 2003 10:41 pm, Miark wrote:
  I gotta report that I just installed Texstar's KDE 3.1 on my MDK
  9.0 box and I just love it. The look is beautiful with
  alpha-blending, the new Keramik theme, and new icons; and I
  really dig tabbed browsing in Konq.
 
  Another nail in M$'s coffin, I think.

 How easy is this install for a newbie, Miark?
   
I'd be interested too. I downloaded the rpms and then lost my nerve
:)
   
--
Jordan Elver
The office is like an army, and I'm the field general. You're my
footsoldiers and customer quality is the WAR!!! -- David Brent (The
Office)
 
  I run urpmi ./*.rpm on the rpm from texstar and got
  Installation failed:
  libarts == 1.1.0-1tex is needed by arts-1.1.0-1tex
  kdelibs == 3.1-3tex is needed by kdelibs-devel-3.1-3tex
  libarts == 1.1.0-1tex is needed by libarts-devel-1.1.0-1tex
 
  Why?
  G

 I did this and got Installation failed. Some files are missing. You may
 want to update your urpmi database. I'm running the 9.0 download edition.

 MtnMan
Ok i succeeded in upgrading to KDE 3.1 i did what the README file said and 
walla KDE 3.1 but i have one big problem my Desktop is empty and when ever i 
try to create shortcut on the Desktop i get Couldn't start process Unable to 
create io-slave: Too many open files
and when i try to start konqueror it crash.
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] Lovin' KDE 3.1

2003-02-14 Per discussione Gil Katz
On Friday 14 February 2003 04:58, Miark wrote:
 Anne  Jordan,

 I downloaded the RPMs from the following location to a single folder:

  
 http://ftp.ibiblio.org/pub/Linux/distributions/contrib/texstar/linux/distri
butions/mandrake/9.0/KDE-3.1/

 Then in runlevel 3 from within that folder I did a

   urpmi ./*.rpm

 and that was it. When I started KDE, not only did everything work, but
 it kept all my bookmarks and settings. It was the epitome of effortless.

 Miark


 On Fri, 14 Feb 2003 01:07:39 +

 Jordan Elver [EMAIL PROTECTED] wrote:
  On Thursday 13 Feb 2003 10:45 pm, Anne Wilson wrote:
   On Thursday 13 Feb 2003 10:41 pm, Miark wrote:
I gotta report that I just installed Texstar's KDE 3.1 on my MDK 9.0
box and I just love it. The look is beautiful with alpha-blending,
the new Keramik theme, and new icons; and I really dig tabbed
browsing in Konq.
   
Another nail in M$'s coffin, I think.
  
   How easy is this install for a newbie, Miark?
 
  I'd be interested too. I downloaded the rpms and then lost my nerve :)
 
  --
  Jordan Elver
  The office is like an army, and I'm the field general. You're my
  footsoldiers and customer quality is the WAR!!! -- David Brent (The
  Office)
I run urpmi ./*.rpm on the rpm from texstar and got
Installation failed:
libarts == 1.1.0-1tex is needed by arts-1.1.0-1tex
kdelibs == 3.1-3tex is needed by kdelibs-devel-3.1-3tex
libarts == 1.1.0-1tex is needed by libarts-devel-1.1.0-1tex

Why?
G
-- 

  So long,And thanks for all the fish.



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] Lovin' KDE 3.1

2003-02-14 Per discussione Gil Katz
On Friday 14 February 2003 21:56, Robert Wideman wrote:
  libarts == 1.1.0-1tex is needed by arts-1.1.0-1tex
  kdelibs == 3.1-3tex is needed by kdelibs-devel-3.1-3tex
  libarts == 1.1.0-1tex is needed by libarts-devel-1.1.0-1tex

 go to rpmfind.net and find them, install them, then retry the kde install
 Rob
Rob 
no such file in rpmseek or rpmfind
Gil
-- 

  So long,And thanks for all the fish.



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] webmin

2003-02-13 Per discussione Gil Katz
On Wednesday 12 February 2003 14:19, Anne Wilson wrote:
 On Wednesday 12 Feb 2003 10:41 am, Gil Katz wrote:
  On Wednesday 12 February 2003 11:52, Anne Wilson wrote:
   On Wednesday 12 Feb 2003 8:49 am, Gil Katz wrote:
Hi
when i try to enter to webmin i only get the user password
when i enter root and the password nothing happens
and i get again the login window.
any idea
Gil
  
   Does the user password let you in?  If so, there's a screen for Webmin
   users. Make sure that root is on the list, and try again.  When you're
   sure it's working properly you can remove the user if you want to.
  
   Anne
 
  No when using the user i get login failed
  Gil

 Sounds to me like a corrupt installation.  Wait a few hours to see if
 anyone else has any ideas.  If nothing comes, uninstall and start again. 
 Are you using the Mandrake install from the cds?

 Anne
Hi
i tried to reinstall but got the same results.
i got the CDś that i downloaded from the internet.
any ideaś
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] webmin

2003-02-13 Per discussione Gil Katz
On Thursday 13 February 2003 20:51, Anne Wilson wrote:
 On Thursday 13 Feb 2003 6:39 pm, Gil Katz wrote:
  On Wednesday 12 February 2003 14:19, Anne Wilson wrote:
   On Wednesday 12 Feb 2003 10:41 am, Gil Katz wrote:
On Wednesday 12 February 2003 11:52, Anne Wilson wrote:
 On Wednesday 12 Feb 2003 8:49 am, Gil Katz wrote:
  Hi
  when i try to enter to webmin i only get the user password
  when i enter root and the password nothing happens
  and i get again the login window.
  any idea
  Gil

 Does the user password let you in?  If so, there's a screen for
 Webmin users. Make sure that root is on the list, and try again.
 When you're sure it's working properly you can remove the user if
 you want to.

 Anne
   
No when using the user i get login failed
Gil
  
   Sounds to me like a corrupt installation.  Wait a few hours to see if
   anyone else has any ideas.  If nothing comes, uninstall and start
   again. Are you using the Mandrake install from the cds?
  
   Anne
 
  Hi
  i tried to reinstall but got the same results.
  i got the CDś that i downloaded from the internet.
  any ideaś
  Gil

 Not really.  Which method did you use for uninstall/reinstall?  It might
 give someone another idea.

 Anne
Anne
urpme and urpmi like Greg sugested
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] mdk installation

2003-02-12 Per discussione Gil Katz
On Wednesday 12 February 2003 11:03, Gil Katz wrote:
 Hi
 my friend try to install mdk 9.0 he got Matrox G200 8MB and unknown monitor
 the installation recognize the Matrox and sets the monitor as generic
 1024x768 65milion colors when the installation ends and the computer
 restarts when starting X server the computer stuck.
 Has anyone got idea what to do?
 Gil
Fals allarm we had to choose XFree without 3d accelaration
Thanks



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] webmin

2003-02-12 Per discussione Gil Katz
On Wednesday 12 February 2003 11:52, Anne Wilson wrote:
 On Wednesday 12 Feb 2003 8:49 am, Gil Katz wrote:
  Hi
  when i try to enter to webmin i only get the user password
  when i enter root and the password nothing happens
  and i get again the login window.
  any idea
  Gil

 Does the user password let you in?  If so, there's a screen for Webmin
 users. Make sure that root is on the list, and try again.  When you're sure
 it's working properly you can remove the user if you want to.

 Anne
No when using the user i get login failed
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] easy to use HTML editor?

2003-02-11 Per discussione Gil Katz
On Tuesday 11 February 2003 23:59, Graham Watkins wrote:
 Angus Auld wrote:
 Greetings, I would like to ask the list for recommendations on an easy to
  use HTML editor.
 
 One that is designed for beginners and is user friendly. I have Bluefish,
  and also Screem and Quanta Plus, but they don't appear to be oriented
  toward the inexperienced user.
 
 TIA for any feedback on this.

 As others here have mentioned, easy to use is a somewhat relative term
 when dealing with html editors.  If you want something with a wysiwyg
 type interface, Netscape Composer is probably as good as it gets under
 Linux (won't do frames, though).  If you know some html and just want to
 take some of the donkeywork (i.e. typing) out of it, you could do worse
 than have a look at Arachnophilia - I've used it for pages with tables -
 it will turn csv text into a table.  This saved me a lot of work. It's a
 java program which will run under Windows or Linux provided you have the
 1.4 virtual machine.

 The guy's philosophy is interesting also - see his careware licensing
 terms and also his damning critique of Windows XP.

 Go to http://www.arachnoid.com/arachnophilia/ to find out more.

 Hope this helps
Try CoffeeCup from www.coffeecup.com
Gil 



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] HTML e-mail client

2003-02-08 Per discussione Gil Katz
Hi
is there any HTML e-mail client like outlook express?
Gil


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] HTML e-mail client

2003-02-08 Per discussione Gil Katz
On Saturday 08 February 2003 11:04, Paul wrote:
 In reply to Gil's mail, d.d. Sat, 8 Feb 2003 10:58:30 +0200:
 Hi
 is there any HTML e-mail client like outlook express?
 Gil

 Evolution should be what you look for.
 Paul
Evolution got POP or IMAP what i need is a e-mail client to connect to hotmail
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] HTML e-mail client

2003-02-08 Per discussione Gil Katz
Ok
i didnṫ express myself ouite clear enough
i got several accounts in hotmail and the easiest way to handel them is by 
outlook express so that what i need.
Gil
On Sunday 09 February 2003 06:11, Hendrik Boom wrote:
 On Sat, Feb 08, 2003 at 09:04:20PM -0500, Todd Slater wrote:
  On Sat, Feb 08, 2003 at 05:35:43PM -0700, FemmeFatale wrote:
   I'm going to risk abolishment to M$hits camp here or excommunication
   from the Linux community by saying this... but what else is new?
  
   Russ I have to agree with you luvy.  Most ppl love eye candy.  I know I
   do.  I use Evolution for now but I love Sylpheed too.  For the avg
   person, HTML mail is wonderfully put together eye candy.  People are
   visually inclined mostly.  (Men moreso than women;  women are more
   auditorially oriented).  OTOH, there are still tons of ppl out there on
   very lowed comps with very simple email programs on those computers. 
   For them, HTML email is a PITA  just chokes their bandwidth/computers.

 Only one in the past year have I received email in HTML form that was not
 spam.

 -- hendrik.

  snip
 
  You must have some artistic/creative/designer-type friends, because all
  of the HTML mail eye candy I get is spam. And from all the spam, most is
  not eye candy but really poorly designed (I know from seeing the wife's
  spam in Mozilla).
 
  But I do get HTML mail from some friends, and it is just plain--they
  don't spend hours designing a mail template, or spend any time doing
  anything remotely interesting with the mail. In fact, most don't have
  any idea they're sending HTML mail because they use Outhouse or
  something and they just go with the default settings. For that reason,
  I think HTML is a waste. I mean, if you're going to waste the bandwidth,
  at least spend some time designing a nice stylesheet or something! And,
  no tables--if you can't design columns using a stylesheet, you shouldn't
  be allowed to send HTML mail!
 
  But it is indeed wonderful for spam.
 
  Todd
 
 
  Want to buy your Pack or Services from MandrakeSoft?
  Go to http://www.mandrakestore.com



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] KDE 3.1

2003-02-06 Per discussione Gil Katz
Hi
wher can i download KDE 3.1 ?
Gil


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] HD

2003-02-02 Per discussione Gil Katz
On Saturday 01 February 2003 21:20, civileme wrote:
   udma2 is safe--it is only 33Mhz which is in the range of 32-byte CRCs
   which the drives can do.  The 57-byte CRCs required by udma3 and up
   66-133MHz are beyond the capabilities of the 102 and maybe beyond the
   80Mb as well; I have not kept up on the product through its most recent
   cycles since they seemed unwilling to change their policies.
  
   Civileme

 The bottom line is that the disk is probably safe and kdf needs overhaul.
 Certainly on that platform with no more than 33MHz udma you are on firm
 ground, but don't move the disk to a newer platform using 66-133MHz and
 80-pin cables.  It is OK to move it to a newer platform if you stick with a
 40 pin cable.

 Somewhere a few generations ago like 8.1 there was a utility called drakopt
 which would run a thorough test of your HD speeds and optimize the setup...
 It still works, if you have hdparm loaded.

 But let's make double-sure and run one more test

 fdisk -l /dev/hdd

 should show a partition with an 80 G capacity

 I would recommend using smaller partitions in several categories.  SWAP is
 always good to have on both disks of a pair and The possibility of IDE RAID
 with RAID0 for /usr to optimize for speed of program loading might not be a
 bad idea.

 http://www.geocities.com/civileme/raiddoc.html

 is a good link for an intro to linux software RAID

 The computer that made those png diagrams is still in use as my firewall.

 Civileme
fdisk -l /dev/hdd gives

Disk /dev/hdd: 16 heads, 63 sectors, 155061 cylinders
Units = cylinders of 1008 * 512 bytes

   Device BootStart   EndBlocks   Id  System
/dev/hdd1   * 1155061  78150712+  83  Linux

When i try to use VMWare and create a 10 GB disk i get error.
Gil
-- 

Fair well and thanks for all the fish



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] HD

2003-02-01 Per discussione Gil Katz
On Saturday 01 February 2003 10:09, civileme wrote:
 On Friday 31 January 2003 06:12 pm, Dennis Myers wrote:
  On Friday 31 January 2003 02:33 pm, Gil Katz wrote:
   On Friday 31 January 2003 20:20, civileme wrote:
On Friday 31 January 2003 02:47 am, Gil Katz wrote:
 On Thursday 30 January 2003 10:45, Gil Katz wrote:
  Hi
  I bought a new WD 80GB disk and mount it with HardDrake and made
  one partition but when i look in KDiskFree i see that i got only
  25 GB. What is wrong?
  Gil

 I'll refine the problem
 DiskDrake see the disk as is (74 GB)
 but KDiskFree see only 2.5 HD
 Gil
   
Well WD is not a brand to buy since trhey OFFICIALLY support only
Solaris and Windows, and besides they are hardware deficient on what
it takes to do udma3 or higher and dangerous to use for your data at
higher rates. Others can supply the info and links, but I will give
you one...
   
http://kt.zork.net/kernel-traffic/kt2214_54.html#2
   
Basically WD disks are bad juju for linux.
   
The real problem here may be one of mathematics, though.  WD has this
penchant for producing single-platter disks with one rack of heads
each side (weigh it on a scale against competitive products and you
will find the WD disk lighter)
   
This means that the track number may be overflowing what Kdiskfree
has available for track numbers with a resulting problem in viewing
the disk. At one time the linux kernel would carve up big WD drives
differently than the BIOS would with results that were just
fantastic, but no other drives had ANY problems.  This was true in
Mandrake 7.1 and 7.2 for certain, but was corrected in kernel 2.2.19.
   
Now, stop trusting kdf and let's see what dmesg says.  Post the
results and we'll see what the kernel says about free space.  If
there is still a problem, most likely the kernel's math will have to
be adjusted for the most recent WD cheapness shortcut and another
item will have to be added to the kernel's internal blacklist of
cantankerous drives requiring special handling.
   
Civileme
  
   This is the dmesg say
  
   Linux version 2.4.19-16mdk ([EMAIL PROTECTED]) (gcc version
   3.2 (Mandrake Linux 9.0 3.2-1mdk)) #1 Fri Sep 20 18:15:05 CEST 2002
   BIOS-provided physical RAM map:
BIOS-e820:  - 0009fc00 (usable)
BIOS-e820: 0009fc00 - 000a (reserved)
BIOS-e820: 000f - 0010 (reserved)
BIOS-e820: 0010 - 13ffc000 (usable)
BIOS-e820: 13ffc000 - 13fff000 (ACPI data)
BIOS-e820: 13fff000 - 1400 (ACPI NVS)
BIOS-e820:  - 0001 (reserved)
   319MB LOWMEM available.
   Advanced speculative caching feature not present
   On node 0 totalpages: 81916
   zone(0): 4096 pages.
   zone(1): 77820 pages.
   zone(2): 0 pages.
   Kernel command line: auto BOOT_IMAGE=linux ro root=305 quiet
   devfs=mount hdb=ide-scsi hdc=ide-scsi
   ide_setup: hdb=ide-scsi
   ide_setup: hdc=ide-scsi
   Local APIC disabled by BIOS -- reenabling.
   Found and enabled local APIC!
   Initializing CPU#0
   Detected 453.179 MHz processor.
   Console: colour dummy device 80x25
   Calibrating delay loop... 904.39 BogoMIPS
   Memory: 321644k/327664k available (1176k kernel code, 5632k reserved,
   444k data, 136k init, 0k highmem)
   Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
   Inode cache hash table entries: 32768 (order: 6, 262144 bytes)
   Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
   Buffer-cache hash table entries: 16384 (order: 4, 65536 bytes)
   Page-cache hash table entries: 131072 (order: 7, 524288 bytes)
   CPU: Before vendor init, caps: 0383fbff  , vendor = 0
   CPU: L1 I cache: 16K, L1 D cache: 16K
   CPU: L2 cache: 512K
   CPU: After vendor init, caps: 0383fbff   
   Intel machine check architecture supported.
   Intel machine check reporting enabled on CPU#0.
   CPU: After generic, caps: 0383fbff   
   CPU: Common caps: 0383fbff   
   CPU: Intel Pentium III (Katmai) stepping 03
   Enabling fast FPU save and restore... done.
   Enabling unmasked SIMD FPU exception support... done.
   Checking 'hlt' instruction... OK.
   POSIX conformance testing by UNIFIX
   enabled ExtINT on CPU#0
   ESR value before enabling vector: 
   ESR value after enabling vector: 
   Using local APIC timer interrupts.
   calibrating APIC timer ...
   . CPU clock speed is 453.1857 MHz.
   . host bus clock speed is 100.7078 MHz.
   cpu: 0, clocks: 1007078, slice: 503539
   CPU0T0:1007072,T1:503520,D:13,S:503539,C:1007078
   mtrr: v1.40 (20010327) Richard Gooch ([EMAIL PROTECTED])
   mtrr: detected mtrr type: Intel
   PCI: PCI BIOS revision 2.10 entry at 0xf0890, last bus=1
   PCI: Using

Re: [newbie] HD

2003-01-31 Per discussione Gil Katz
On Thursday 30 January 2003 10:45, Gil Katz wrote:
 Hi
 I bought a new WD 80GB disk and mount it with HardDrake and made one
 partition but when i look in KDiskFree i see that i got only 25 GB.
 What is wrong?
 Gil

I'll refine the problem
DiskDrake see the disk as is (74 GB)
but KDiskFree see only 2.5 HD
Gil
-- 

Fair well and thanks for all the fish



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] HD

2003-01-31 Per discussione Gil Katz
On Friday 31 January 2003 20:20, civileme wrote:
 On Friday 31 January 2003 02:47 am, Gil Katz wrote:
  On Thursday 30 January 2003 10:45, Gil Katz wrote:
   Hi
   I bought a new WD 80GB disk and mount it with HardDrake and made one
   partition but when i look in KDiskFree i see that i got only 25 GB.
   What is wrong?
   Gil
 
  I'll refine the problem
  DiskDrake see the disk as is (74 GB)
  but KDiskFree see only 2.5 HD
  Gil

 Well WD is not a brand to buy since trhey OFFICIALLY support only Solaris
 and Windows, and besides they are hardware deficient on what it takes to do
 udma3 or higher and dangerous to use for your data at higher rates.  Others
 can supply the info and links, but I will give you one...

 http://kt.zork.net/kernel-traffic/kt2214_54.html#2

 Basically WD disks are bad juju for linux.

 The real problem here may be one of mathematics, though.  WD has this
 penchant for producing single-platter disks with one rack of heads each
 side (weigh it on a scale against competitive products and you will find
 the WD disk lighter)

 This means that the track number may be overflowing what Kdiskfree has
 available for track numbers with a resulting problem in viewing the disk. 
 At one time the linux kernel would carve up big WD drives differently than
 the BIOS would with results that were just fantastic, but no other drives
 had ANY problems.  This was true in Mandrake 7.1 and 7.2 for certain, but
 was corrected in kernel 2.2.19.

 Now, stop trusting kdf and let's see what dmesg says.  Post the results and
 we'll see what the kernel says about free space.  If there is still a
 problem, most likely the kernel's math will have to be adjusted for the
 most recent WD cheapness shortcut and another item will have to be added
 to the kernel's internal blacklist of cantankerous drives requiring special
 handling.

 Civileme
This is the dmesg say

Linux version 2.4.19-16mdk ([EMAIL PROTECTED]) (gcc version 3.2 
(Mandrake Linux 9.0 3.2-1mdk)) #1 Fri Sep 20 18:15:05 CEST 2002
BIOS-provided physical RAM map:
 BIOS-e820:  - 0009fc00 (usable)
 BIOS-e820: 0009fc00 - 000a (reserved)
 BIOS-e820: 000f - 0010 (reserved)
 BIOS-e820: 0010 - 13ffc000 (usable)
 BIOS-e820: 13ffc000 - 13fff000 (ACPI data)
 BIOS-e820: 13fff000 - 1400 (ACPI NVS)
 BIOS-e820:  - 0001 (reserved)
319MB LOWMEM available.
Advanced speculative caching feature not present
On node 0 totalpages: 81916
zone(0): 4096 pages.
zone(1): 77820 pages.
zone(2): 0 pages.
Kernel command line: auto BOOT_IMAGE=linux ro root=305 quiet devfs=mount 
hdb=ide-scsi hdc=ide-scsi
ide_setup: hdb=ide-scsi
ide_setup: hdc=ide-scsi
Local APIC disabled by BIOS -- reenabling.
Found and enabled local APIC!
Initializing CPU#0
Detected 453.179 MHz processor.
Console: colour dummy device 80x25
Calibrating delay loop... 904.39 BogoMIPS
Memory: 321644k/327664k available (1176k kernel code, 5632k reserved, 444k 
data, 136k init, 0k highmem)
Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
Inode cache hash table entries: 32768 (order: 6, 262144 bytes)
Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
Buffer-cache hash table entries: 16384 (order: 4, 65536 bytes)
Page-cache hash table entries: 131072 (order: 7, 524288 bytes)
CPU: Before vendor init, caps: 0383fbff  , vendor = 0
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 512K
CPU: After vendor init, caps: 0383fbff   
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: After generic, caps: 0383fbff   
CPU: Common caps: 0383fbff   
CPU: Intel Pentium III (Katmai) stepping 03
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
enabled ExtINT on CPU#0
ESR value before enabling vector: 
ESR value after enabling vector: 
Using local APIC timer interrupts.
calibrating APIC timer ...
. CPU clock speed is 453.1857 MHz.
. host bus clock speed is 100.7078 MHz.
cpu: 0, clocks: 1007078, slice: 503539
CPU0T0:1007072,T1:503520,D:13,S:503539,C:1007078
mtrr: v1.40 (20010327) Richard Gooch ([EMAIL PROTECTED])
mtrr: detected mtrr type: Intel
PCI: PCI BIOS revision 2.10 entry at 0xf0890, last bus=1
PCI: Using configuration type 1
PCI: Probing PCI hardware
Unknown bridge resource 0: assuming transparent
PCI: Using IRQ router VIA [1106/0596] at 00:04.0
Activating ISA DMA hang workarounds.
isapnp: Scanning for PnP cards...
isapnp: Card 'U.S. Robotics 56K FAX INT'
isapnp: 1 Plug  Play card detected total
Linux NET4.0 for Linux 2.4
Based upon Swansea University Computer Society NET3.039
Initializing RT netlink socket
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16)
Starting

[newbie] HD

2003-01-30 Per discussione Gil Katz
Hi
I bought a new WD 80GB disk and mount it with HardDrake and made one partition
but when i look in KDiskFree i see that i got only 25 GB.
What is wrong?
Gil
-- 

Fair well and thanks for all the fish



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] windev

2003-01-29 Per discussione Gil Katz
Hi
is there a place for linux like windev?
Gil
-- 

Fair well and thanks for all the fish



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] Firewire e.g. 1394

2003-01-25 Per discussione Gil Katz
Yes i got Firewire IEEE1394 working on my mdk9.0
you should install 
libavc1394, libraw1394, libraw1394-devel.
after you do that you should modprobe raw1394 and video1394
i got adaptec card and Sharp MiniDV and it works fine
Gil
On Saturday 25 January 2003 16:06, et wrote:
 On Saturday 25 January 2003 08:16 am, Benjamin Jeeves wrote:
  Hi all
 
  Has anyone get firewire to work on mdk9.0 I have look at and read
  www.linux1394.org and done what it says to do but still not work
 
  anyone help
 
  sorry for the spelling have a problem and can not spell what it is
 
  Cheers
  Ben

 I ain't all that sure about how well it works (not much to connect to it to
 test differnt stuff) but for me, my Audigy ieee1394 port was found and
 setup by the installer out of the box, with a clean install... can you try
 and describe your poblem? or post your /var/log/dmesg.

-- 

Fair well and thanks for all the fish



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] modem problems

2003-01-20 Per discussione Gil Katz
Hi
I installed new modem
the problem is that when i connect to the internet 0 packets are going in and 
out or the modem hangs up and i get error 16 (i put the max timeout).
now i only can connect through a network card that is connected to WinXP that 
is connected to the internet.
i'm using Mandrake 9.0
Gil


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] install modem

2003-01-16 Per discussione Gil Katz
Ok
its working with one bug
when running kppp from mandrake center it works but
when running kppp with my credentials sometimes it connects but with no 
packets in or out.
Gil

On Wednesday 15 January 2003 22:06, Gil Katz wrote:
 doesn't help
 any more idea's
 Gil

 On Wednesday 15 January 2003 16:33, Peter Watson wrote:
  On Wednesday 15 Jan 2003 14:04, Gil Katz wrote:
   Hi
   i got new modem rockwell HSF
   i downloaded the driver from the site and install it
   after wards i run the configuration program and in the end i got a
   message that the modem is ok and i can access it via /dev/ttySHSF0
   but when i try to configure kppp i cant see /dev/ttySHSF0 in the device
   list. any help?
   Thanks
   Gil
 
  Have you tried
 
  ln -s /dev/ttySHSF0 /dev/modem
 
  then use /dev/modem in kppp, this is what I do in similar circumstances.
 
  HTH
 
  Pete
  ArdnamurchanScotland



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] PATH

2003-01-16 Per discussione Gil Katz
Hi
where do i add path to the PATH ?
Gil


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] PATH

2003-01-16 Per discussione Gil Katz
Hi
where do i add path to the PATH ?
Gil

---



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] install modem

2003-01-15 Per discussione Gil Katz
Hi
i got new modem rockwell HSF
i downloaded the driver from the site and install it
after wards i run the configuration program and in the end i got a message 
that the modem is ok and i can access it via /dev/ttySHSF0
but when i try to configure kppp i cant see /dev/ttySHSF0 in the device list.
any help?
Thanks
Gil


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] install modem

2003-01-15 Per discussione Gil Katz
doesn't help
any more idea's
Gil
On Wednesday 15 January 2003 16:33, Peter Watson wrote:
 On Wednesday 15 Jan 2003 14:04, Gil Katz wrote:
  Hi
  i got new modem rockwell HSF
  i downloaded the driver from the site and install it
  after wards i run the configuration program and in the end i got a
  message that the modem is ok and i can access it via /dev/ttySHSF0
  but when i try to configure kppp i cant see /dev/ttySHSF0 in the device
  list. any help?
  Thanks
  Gil

 Have you tried

 ln -s /dev/ttySHSF0 /dev/modem

 then use /dev/modem in kppp, this is what I do in similar circumstances.

 HTH

 Pete
 Ardnamurchan  Scotland



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] CD

2003-01-09 Per discussione Gil Katz
Hi
When i enter a music cd into the cdrom i get no cd loaded
or when i try to browse the cd from mnt i get premission denied
( i root)
what should i do?
Thanks 
Gil


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] CD

2003-01-09 Per discussione Gil Katz
Ok
now i see that this is worst
i canṫ see anything in the cd even data cdś
Gil
On Thursday 09 January 2003 19:46, Anne Wilson wrote:
 On Thursday 09 Jan 2003 5:21 pm, Gil Katz wrote:
  Hi
  When i enter a music cd into the cdrom i get no cd loaded
  or when i try to browse the cd from mnt i get premission denied
  ( i root)
  what should i do?
  Thanks
  Gil

 Audio cds are not browsed.  You need to open a cdplayer.  XMMS is very
 good, though some people need help changing a plugin to make it work on
 their system.  Try it.  If it doesn't play your cds, go to Derek's linux
 page

 www.jennings.homelinux.net

 and read the section there.  One warning, though, the article implies that
 it only is needed if you have no audio cable attached.  This is not so. 
 For some of us the cable may be there and still need this fix.

 Anne



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] bin file

2003-01-03 Per discussione Gil Katz
i downloaded the j2re-1_4_1_01-linux-i586-rpm.bin
now how do i install it?
Gil


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] modprobe

2002-12-25 Per discussione Gil Katz
Hi
i install firewire and all the necessary files.
each time i start the computer i have to do modprobe raw1394 and modprobe
video1394 to start the driver.
what to do so the system will do that authomaticaly?
Thanks
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] resolution

2002-12-25 Per discussione Gil Katz
Hi
i run 768x1024 some of the programs like GnomeToaster is bigger then the
screen area and i cann't do a thing.
help pls.
Thanks
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Using Internet

2002-12-19 Per discussione Gil Katz
Hi
I got mandrake 9.0 and when I connect to the internet I can do nothing I
mean
I cant surf I can't send and receive mail I cant even ping.
Does anyone got an idea?
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Using Internet

2002-12-19 Per discussione Gil Katz
I'm using modem and the modem connects to the internet and from then nothing
And I not using Firewall.

 -Original Message-
From:   Brian Parish [mailto:[EMAIL PROTECTED]] 
Sent:   Thursday, December 19, 2002 1:22 PM
To: [EMAIL PROTECTED]
Subject:Re: [newbie] Using Internet

On Thu, 2002-12-19 at 21:53, Gil Katz wrote:
 Hi
 I got mandrake 9.0 and when I connect to the internet I can do nothing I
 mean
 I cant surf I can't send and receive mail I cant even ping.
 Does anyone got an idea?
 Gil
 
You'll need to give some details on what you have set up.  Is this a
dial-up connection, cable, DSL?  Firewalled?  What seems to work and
what doesn't?  Does it seem to establish a connection?  What's the
output of: ifconfig?

Lots of help available here, but not without something to go on.

cheers
Brian




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Using Internet

2002-12-19 Per discussione Gil Katz
Here is the output of lfconfig
eth0  Link encap:Ethernet  HWaddr 00:50:04:EE:03:88
  inet addr:192.168.0.2  Bcast:192.168.0.255  Mask:255.255.255.0
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:559 errors:0 dropped:0 overruns:0 frame:0
  TX packets:1472 errors:0 dropped:0 overruns:0 carrier:1028
  collisions:0 txqueuelen:100
  RX bytes:123381 (120.4 Kb)  TX bytes:126049 (123.0 Kb)
  Interrupt:5 Base address:0xb400

loLink encap:Local Loopback
  inet addr:127.0.0.1  Mask:255.0.0.0
  UP LOOPBACK RUNNING  MTU:16436  Metric:1
  RX packets:1217 errors:0 dropped:0 overruns:0 frame:0
  TX packets:1217 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0
  RX bytes:109314 (106.7 Kb)  TX bytes:109314 (106.7 Kb)

ppp0  Link encap:Point-to-Point Protocol
  inet addr:204.141.45.8  P-t-P:204.141.45.121  Mask:255.255.255.255
  UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
  RX packets:4 errors:3 dropped:0 overruns:0 frame:0
  TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:3
  RX bytes:82 (82.0 b)  TX bytes:131 (131.0 b)
Gil

-Original Message-
From: Brian Parish [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 19, 2002 1:22 PM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Using Internet


On Thu, 2002-12-19 at 21:53, Gil Katz wrote:
 Hi
 I got mandrake 9.0 and when I connect to the internet I can do nothing I
 mean
 I cant surf I can't send and receive mail I cant even ping.
 Does anyone got an idea?
 Gil

You'll need to give some details on what you have set up.  Is this a
dial-up connection, cable, DSL?  Firewalled?  What seems to work and
what doesn't?  Does it seem to establish a connection?  What's the
output of: ifconfig?

Lots of help available here, but not without something to go on.

cheers
Brian




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Using internet

2002-12-19 Per discussione Gil Katz
OK
i play a little bit with mandrake center and change the default to the
network card and i can surf via the Ethernet, but when i try to connect
via the modem i get error message
Timeout expired while waiting for the PPP interface to come up!
any idea
Thanks gil





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [newbie] Using internet

2002-12-19 Per discussione Gil Katz
OK i played more with Mandrake center and all is fine.
Thanks everyone
Gil
On ה', 2002-12-19 at 17:58, Milos Prudek wrote:
 
 
 Gil Katz wrote:
  OK
  i play a little bit with mandrake center and change the default to the
  network card and i can surf via the Ethernet, but when i try to connect
  via the modem i get error message
  Timeout expired while waiting for the PPP interface to come up!
 
 A possible reason:
 
 ppp will not connect if you have default gateway already set when ppp is 
 asked to connect.
 
 And you probably have default gateway already set.
 
 You must delete your default route to eth0 before you attempt to connect 
 via modem (i.e. via ppp).
 
 -- 
 Milos Prudek
 
 
 
 

 Want to buy your Pack or Services from MandrakeSoft? 
 Go to http://www.mandrakestore.com




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Network Printer

2002-12-13 Per discussione Gil Katz
Hi
I got WinXP with HP815C that I shared
In the network I have mandrake 9.0.
How can I print from the Linux through the net sharing.
Thanks
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Eroaster (was CDR)

2002-12-12 Per discussione Gil Katz
Thanks that helped
Gil

 -Original Message-
From:   [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]  On Behalf Of Charlie
Sent:   Wednesday, December 11, 2002 8:46 PM
To: [EMAIL PROTECTED]
Subject:Re: [newbie] Eroaster (was CDR)

  File: message.footer  On December 11, 2002 05:57 am, Gil Katz wrote:
 I have CDR and CDRW
 The system recognize the CDRW in /dev/scd0
 And the CDR in dev/hdc
 When I press on detect writer the Eroaster detects the CDRW but when I
 press the detect reader it detects again the CDRW.
 What to do
 Thanks gil

For the record, I won't reply to any more posts to the list that have a
Reply
To: set after this one. It's a pain in the keister to have to remember to
change the address when one only wants to reply to the post _on the mailing
list_ in order to try to help.

Most of what I've learned regarding the uses of ISOs, CD-Rs, CD-RWs etc in
GNU/Linux came from the page at the link below or is linked from there. It's
a good place to start.

http://www.cpqlinux.com/cdrw.html

Eroaster is a front end for cdrecord. It only reads IDE devices that are
'SCSI
emulated' and you'll need to add IDE-SCSI to append the stanza in:

/etc/lilo.conf

that shows your CD-ROM.
 eg.: hdx=ide-scsi
where 'x' is the a, b, c, etc of the drive. All of the editing you want to
do
there has to be done as super user (su) or root. In your case you should add
hdc=ide-scsi for your cd-rom to the append lines. This will sometimes cause
it's own troubles too.

Once you add the phrase to the append line that's there open a terminal and
as
su (root) type:

sbin/lilo -v

then at the new prompt:

reboot -n.

You should be able to have eroaster recognise the cdrom as a read device
after
that reboot. Hopefully. If I've made any errors I'm sure one of our
list-mates will correct me.

Or just find (in any mirror's contrib directory) k3b and install and use
that
instead for copying disk to disk. This is a link to one place you can find
it:

ftp://mirrors.secsup.org/pub/linux/mandrake/Mandrake/9.0/contrib/RPMS

and you can use the KDE package manager to install it so it'll appear on the
menus.

I'm absolutely _not_ certain if any of the above will do you any good since
it's not the method I use. If I need to copy a disk I just copy it to a hard
drive (any of the 4) and burn the copy from there. Small relatives are bad
news on any CDs that aren't backed up; even though they never seem to touch
the ones that have been copied and can't get at the originals. When I hear
Shiny Frisbee!!! I start looking. Quickly.

The little monsters. :-)

Regards;
--
Charlie
Edmonton,AB,Canada
Registered user 244963 at http://counter.li.org
Any news from the President on a successor? he asked hopefully.
None, Anita replied.  She's having great difficulty finding someone
qualified who is willing to accept the post.
Then I stay, said Dr. Fresh.  I'm not good for much, but I
can at least make a decision.
Somewhere, he grumphed, there must be a naive, opportunistic
young welp with a masochistic streak who would like to run the most
up-and-down bureaucracy in the history of mankind.
-- R.L. Forward, Flight of the Dragonfly





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Eroaster (was CDR)

2002-12-11 Per discussione Gil Katz
I have CDR and CDRW
The system recognize the CDRW in /dev/scd0
And the CDR in dev/hdc
When I press on detect writer the Eroaster detects the CDRW but when I press
the detect reader it detects again the CDRW.
What to do
Thanks gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] Eroaster (was CDR)

2002-12-11 Per discussione Gil Katz
How do I do that
I run lilo with switches ?

-Original Message-
From: Miark [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 7:19 PM
To: Newbie
Cc: [EMAIL PROTECTED]
Subject: Re: [newbie] Eroaster (was CDR)

Enable SCSI emulation on the CD-R drive in lilo.
This will make /dev/hdc /dev/scd1 and ERoaster
will see it.

Miark


On Wed, 11 Dec 2002 14:57:20 +0200
Gil Katz [EMAIL PROTECTED] wrote:

 I have CDR and CDRW
 The system recognize the CDRW in /dev/scd0
 And the CDR in dev/hdc
 When I press on detect writer the Eroaster detects the CDRW but when I
press
 the detect reader it detects again the CDRW.
 What to do
 Thanks gil






Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] CDR

2002-12-10 Per discussione Gil Katz
Hi
I've change the CD Reader and CD Writer position on the IDE bus and now what
I get is
CD Reader on /dev/hdc and the Writer on /dev/hdb
When I try to detect the CD in Eroaster I get Couldn't detect your reader
/recorder make sure you are allowed to read /dev/sg*
I checked it out and there is no file like that in /dev.
Any idea what to do
Thanks
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [newbie] CDR

2002-12-10 Per discussione Gil Katz
So what to write
I saw that this is like ini file with section
And the file end in the floppy with no CD 

-Original Message-
From: Paul [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 10, 2002 8:44 PM
To: [EMAIL PROTECTED]
Cc: newbie
Subject: Re: [newbie] CDR

In reply to Gil's mail, d.d. Tue, 10 Dec 2002 20:43:03 +0200:

/etc/lilo.conf

You can find it with
[paul@tbird paul]$ whereis lilo.conf
lilo: /sbin/lilo /etc/lilo.conf /usr/share/man/man8/lilo.8.bz2

(You need to be root to edit that too.)

If you have no ide-scsi in there, do not edit anything unless you know what
you are doing.

--
Neither a wise man nor a brave man lies down on the tracks of history
to wait for the train of the future to run over him.
-Dwight D. Eisenhower

http://nlpagan.net - OS:Linux Mandrake 8.2 - E-mail:Sylpheed 0.8.6



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] Fire Wire

2002-10-25 Per discussione Gil Katz
Hi
I got Mandrake 8.0 and I just install Adaptec AFW 4300 FireWire.
Does anyone know how to configure it bcz I don't got the driver for it.
And does anyone know about video edit software for linux? 
Thanks
Gil



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com