Re: [expert] libqt-mt

2000-11-08 Thread pgeorges

Klar Brian D Contr MSG/SWS a écrit :
 
 I have been trying to get my kwintv (Hauppauge WinTV/Radio) to work in 7.2.
 I have had no luck with XF4.01
 so I am now fresh installed on XF3.3.6. I am trying to install kwintv 0.8.4
 and make fails at trying to find
 libqt-mt someone on kwintv mailing list is using Suse 7.0 qt 2.2.1 and
 kwintv worked just fine.
 Is libqt-mt a part of the mandrake compilation (RPM) of qt 2.2.1?

When using XFree 4, did you comment the DGA line of
/etc/X11/XF86Config-4 ?

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
 
SubSection  "extmod"
#   Option  "omit xfree86-dga"
EndSubSection
  
I use LM7.2, XFree 4, and kwintv shows tv images for me, bad without
sound :-[

If you manage to have it work could you inform us ?

PS : The version package of kwintv is 0.80-2mdk directly from LM7.2, and
not 0.84.



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



[expert] ALSA configuration

2000-11-08 Thread Matthew J Fletcher

Hi,..

I hvae been getting anoyed by the sound of scilence comming from my machine,
i have
downloaded and re-built alsa 0.59, however despite my best efforts i cannot
get noise
from my card.

I have a soundblaster live (using the sb16 driver),.. i edited my
conf.modules file
so i now have..

# ALSA native device support
alias char-major-116 snd
options snd snd_major=116
alias snd-card-0 snd-card-sb16
options snd-card-sb16 snd_index=0 snd_id="SB16"

# OSS/Free setup
alias char-major-14 soundcore
alias sound-slot-0 snd-card-0
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-12 snd-pcm-oss

but when i startup i get,..

Note: /etc/conf.modules is more recent than
/lib/modules/2.2.17-21mdk/modules.dep
/lib/modules/2.2.17-21mdk/misc/snd-card-sb16.o: init_module: Device or
resource busy
/lib/modules/2.2.17-21mdk/misc/snd-card-sb16.o: insmod sound-slot-0 failed

any ideas ?, what device or resource is busy this early on in startup ?

regards

---
Matthew J Fletcher
NPD Firmware
---


**
Serck Controls Ltd, Rowley Drive, Coventry, CV3 4FH, UK
Tel: 44 (0) 24 7630 5050   Fax: 44 (0) 24 7630 2437
Web: www.serck-controls.co.uk  Admin: [EMAIL PROTECTED]
**
This email and any files transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they 
are addressed. If you have received this email in error please notify 
the above.  Any views or opinions presented are solely those of the 
author and do not necessarily represent those of Serck Controls Ltd. 
Please note that Serck Controls Ltd is able to, and reserves the right 
to, monitor e-mail communications passing through its network. 
This email has been checked for viruses.  Serck Controls Ltd shall not 
be responsible for damage caused by any undetected virus. 
**



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



[expert] help

2000-11-08 Thread vs

Hi
It's the first time using this list.Hope my message doesn't bother anyone.

I want to install kdevelop on my system running mandrake 7.2rc1.
I have installed a RH7 rpm  kdevelop-1.2-13 and after starting kdevelop the error
is :
KToolBarButton: pixmap is empty, perhaps some missing file
ERROR: KFM is not running
KFM NOT READY   
---  
I tried to configure kdk-1.2.tar.bz2 but
Error:
checking for KDE headers installed...
configure: error: your system is not able to
compile a small KDE application!
Check, if you installed the KDE header files correctly.
configure: error: ./configure failed for kdelibdocs_kdoc2

I looked up for all "kde headers" RPM packages and all are installed.

What to check on my system installation ?
Would you be so kind to reply me the exact
rpm packages order installation for Kdevelop?
or maybe to email another kdevelop list ?

Thanks 
Lucian





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



RE: [expert] switch /usr partition ?

2000-11-08 Thread Bill Shirley



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of jean-philippe
 Sent: Wednesday, November 08, 2000 4:30 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [expert] switch /usr partition ?
 
 
 
 
 pgeorges wrote:
  
  "David M. Kufta" a écrit :
  
   I have a clients machine that curently has a /usr mount 
 point of /dev/hdb1
   /dev/hdb1 2.0G  1.5G  527M  74% /usr
   This client has a partition /dev/hdc1 which is currently 
 mounted as /home2
   /dev/hdc1 7.9G   32M  7.8G   0% /home2
  
   I would like to use /dev/hdc1 as /usr and know there is a 
 cpio command
   syntax that will allow me to move his current /usr from 
 hdb1 to hdc1 which
   has more available space and would better suit his needs, 
 however the
   command line syntax escapes me.
  
  What about (logged as root) :
  
  cp -a /usr /home2/
  mv /usr /usr.bak
  ln -svf /home2/usr /usr
  rm -rf /usr.bak
 
 It is not a good idea to do it with cp. All the files permitions and
 ownership would be lost.
 Beside, non regular files would also cause trouble. I would do it like
 this :

NOT TRUE.  cp -a copies files and retains their permissions, ownership, and dates 
correctly.
It also copies symlinks correctly.  AFAIK, it is the easiest way to do it.

Bill
 
 first make a backup of /home2 in /home/old.home2.tgz and clean /home2
tar cvzpf /home/old.home2.tgz /home2
rm -rf *
 
 then transfer files from /usr to /home2
   (cd /usr  tar cpf - .) | (cd /home2  tar xvpf -)
 
 mount the partitions as they should be mounted
umount /home2 /usr
mount /dev/hdc1 /usr
 
 And then modify your /etc/fstab
 
 And maybe it would not be a bad idea to do it in runlevel 1.
 
 
 HTH
 Flupke
 
 -- 
There's no place like ~! 
 
 




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



Re: [expert] Upgrade from within Linux

2000-11-08 Thread pgeorges

Ashley Moore a écrit :
 
 Hi,
 
 Can anybody tell me if its possible to initiate the upgrade / install
 process off the CD from within Linux

Yes. With liveupdate (on CD 1).



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



Re: [expert] switch /usr partition ?

2000-11-08 Thread jean-philippe

Bill Shirley wrote:
 
   What about (logged as root) :
  
   cp -a /usr /home2/
   mv /usr /usr.bak
   ln -svf /home2/usr /usr
   rm -rf /usr.bak
 
  It is not a good idea to do it with cp. All the files permitions and
  ownership would be lost.
  Beside, non regular files would also cause trouble. I would do it like
  this :
 
 NOT TRUE.  cp -a copies files and retains their permissions, ownership, and dates 
correctly.
 It also copies symlinks correctly.  AFAIK, it is the easiest way to do it.
 
 Bill
 
  first make a backup of /home2 in /home/old.home2.tgz and clean /home2
 tar cvzpf /home/old.home2.tgz /home2
 rm -rf *
 
  then transfer files from /usr to /home2
(cd /usr  tar cpf - .) | (cd /home2  tar xvpf -)
 

You're right, bill. I didn't know about this '-a' option. But I still
prefer the "tar" version.
I just find it nicer.

Flupke

-- 
 There's no place like ~! 



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



[expert] xscreensaver missing files in Mandrake 7.2

2000-11-08 Thread Jeff Malka

In my install of Mandrake 7.2, xscreensaver seems to be missing several 
modules:
rubik, pipes,stairs,moebius,cage,superquadratics,atlantis

Has anyone else noticed this or is it my faulty install?

Thanks.

-- 
Jeff Malka ([EMAIL PROTECTED])
Registered Linux user 183185



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



Re: [expert] Fwd: access from outside the network

2000-11-08 Thread Joseph S. Gardner

Cecil Watson wrote:

 Yes it is possible.  The easiest way is to use rinetd.  You can find it by
 doing a search on Google (I cannot seem to first its homepage...)
 There is even a webmin module to configure it you can find it here:
 www.thirdpartymodules.com  do a search for rinetd.

 On Tuesday 07 November 2000 09:07, you wrote:

   --- Sridhar G [EMAIL PROTECTED] wrote:
  
   Hi,
  
   I've a network of 2 computers. The LM system is a
   configured as a router.
  
   My eth0 is connected to the wireless gateway. The gw
   supplies a private ip to the eth0 interface. Now is
   it
   possible to serve pages thro' Apache to people on
   the
   net?
  
   Cheers
   Sridhar

If you've got an old machine lying around with a floppy and a few inexpensive
NIC's you could give FreeSCO a try.  I've got one running with 12M ram and a
floppy - NO hard drives that serves as a gateway/router/firewall to my web
server, mail server and internal lan. Works great.

--
Joseph S Gardner

Senior Designer / Technical Support
Kirby Co., Cleveland, OH
[EMAIL PROTECTED]

The box said,
"Requires Windows 3.x or better",
so I got Linux.

Registered Linux user #1696600





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



Re: [expert] Upgrade from within Linux

2000-11-08 Thread Ashley Moore


George, thanks for the info.

I must say, strange answers : george is pretty sure that it can be done!
Brukhard is absolutely certain it can't !!!
Ashley Moore.



   
 
pgeorges   
 
[EMAIL PROTECTED]To: 
[EMAIL PROTECTED] 
Sent by:  cc: (bcc: Ashley 
Moore/Salmaniya/BatelcoNotes)
[EMAIL PROTECTED]Subject: Re: [expert] 
Upgrade from within Linux   
kesoft.com 
 
   
 
   
 
11/08/2000 03:26 PM
 
Please respond to expert   
 
   
 
   
 




Ashley Moore a écrit :

 Hi,

 Can anybody tell me if its possible to initiate the upgrade / install
 process off the CD from within Linux

Yes. With liveupdate (on CD 1).


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







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



Re: [expert] Can I use my Mandrake home for Debian?

2000-11-08 Thread Norman Carver


Denis HAVLIK [EMAIL PROTECTED]
 :~I have about 9GB of unused space since I uninstalled Be.   My home 
directory
 :~its own partition.  Do you think it would hurt my Mandrake if I used is as
 :~my home in Debian.  I have a backup of it on a seperate partition, and a
 :~compressed backup on a CD, but I'd like to not use those if possible. 
 
 I don't know for sure, but it should not be a big problem. If really
 nothing else works, get yourself 2 small home dirs and let them share a
 big "data" subdir.

This is basically what I did to share files between MDK and
Caldera.  Too many differences to actually share home, but
made a big partition that both mounted as /home/carver/share.
This works great, except that you will probably want to adjust
the user id and group id (numbers) in one installation so they
are the same for both.

Norm




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



Re: [expert] Upgrade from within Linux

2000-11-08 Thread jean-philippe

Ashley Moore wrote:
 
 George, thanks for the info.
 
 I must say, strange answers : george is pretty sure that it can be done!
 Brukhard is absolutely certain it can't !!!
 Ashley Moore.
 

I think that one George meant that you can make an update of mdk while
the system is running, but Brikhard meant rather that you can't start
the installation program (the prg that is on the mdk CD and that handles
all the steps of partitionning, configuring lilo, the network, ...)
without booting on the CD.

And I also think that they are both right

HTH
Flupke
-- 
 There's no place like ~! 



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



Re: [expert] Upgrade from within Linux

2000-11-08 Thread Burkhard Zombronner

Am Mittwoch 08 November 2000 16:54 schrieben Sie:

  George, thanks for the info.

 I must say, strange answers : george is pretty sure that it can be done!
 Brukhard is absolutely certain it can't !!!
 Ashley Moore.




 pgeorges
 [EMAIL PROTECTED]To:
 [EMAIL PROTECTED] Sent by:  cc: (bcc:
 Ashley Moore/Salmaniya/BatelcoNotes) [EMAIL PROTECTED]   
 Subject: Re: [expert] Upgrade from within Linux kesoft.com


 11/08/2000 03:26 PM
 Please respond to expert

 Ashley Moore a écrit :
  Hi,
 
  Can anybody tell me if its possible to initiate the upgrade / install
  process off the CD from within Linux

 Yes. With liveupdate (on CD 1).


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

Sorry, just a  bit conservative. I never used live update. Just my opinion 
has always been to back-up data you need and do a fresh install instead of a 
system with a mix of old and new. And do not forget: Update will last hours!!!

Regards and sorry for any trouble

Burkhard
-- 
Microsoft is not dead, it just smells funny



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



Re: [expert] Samba and menus...

2000-11-08 Thread Buchan Milne

You should read some of the docs, maybe BROWSING.TXT in
/usr/doc/samba-2.0.7/docs/textdocs

If you have a WINS server available somewhere which all the win boxes
"look" at, set it in your /etc/smb.conf:
wins server = w.x.y.z

Buchan

Mark Derricutt wrote:
 
 Hi, I just installed samba-2.0.7-18mdk.i586.rpm on my fresh mandrake 7.2
 machine and now I find that half of my menus have dissapeared, I no longer
 have the offce menus etc.  Is there anyway to get the full menus back?
 
 I installed the full samba cause without it I couldn't see any of the
 windows shares on the local lan here, which I can now do, but its rather
 slow finding them - has anyone else noticed that?
 
 mark
 
   
 Keep in touch with http://mandrakeforum.com:
 Subscribe the "[EMAIL PROTECTED]" mailing list.

-- 
|--|
Buchan MilneMechanical Engineer, Network Manager
Cellphone   +27824722231
email   mailto:[EMAIL PROTECTED]
Centre for Automotive Engineering   http://www.cae.co.za
South Africas first satellite:http://sunsat.ee.sun.ac.za
Control Models  http://www.control.co.za
|Registered Linux User #182071-|



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



[expert] Trex firewall opensource

2000-11-08 Thread Mads Rasmussen

Hi there,

have anyone tested the free firewall suite from www.opensourcefirewall.com
I looks to be a full size firewall with ALOT of features, however the scheme
is to buy the cdrom in order to compile. The compile scripts included in the
source is not working properly. Have anyone succeded?

Have a look, here is a list of features, looks almost too good to be true

  Operating Systems
 AIX 4.2.x+, Solaris 2.6+, Linux (RedHat 6.1+, SUSE 6.4+)
  Lan Interfaces
 Ethernet, Fast Ethernet, Gigabit Ethernet, FDDI, Token Ring, ATM 155,
622
  VPN
 IPSec
  VPN Encryption standards
 DES, DES-56, DES-128, Triple DES
  Hardware Based Encryption
 Supported
  Other uses of encryption
 Secure remote administration
  Authentication supported
 SecureID, CryptoCard, ActiveCard
  Enable/Disable FTP commands
 User or Group basis, time of day, day of week
  Workload Balancing
 HTTP and most TCP/IP server applications
  Proxies

 FTP, HTTP, SMTP, NTP, RealAudio, NNTP, gopher, telnet, LDAP, Lotus
notes, SQL, UDP, RPC, tftp
  Third Party Software



 Lotus Notes, Oracle, Sybase, Informix, Microsoft MailExchange, Netscape
Secure Commerce Server, OASIS, RealAudio, Hummingbird Exceed, Netmanage
Chameleon, Assurenet/Digital Pathways DSS Server, Microsoft ProxyServer
  SOCKS
 Version 5
  NAT
 Supported
  X11
 Supported
  URL Content Filtering
 Integrated into HTTP Proxy
  Blocking of ActiveX, cookies,
  Java  Javascript
 Integrated into HTTP Proxy
  Denial of Service Attacks
 Stops Ping of Death, SYN Flood, Tear Drop, mal-formed packets, tiny
fragments
  Can modify security policy to
  restrict all traffic from nodes
  which attempt breakin
 Yes
  Real Time Alerts
 Yes
  Blocks and logs IP Spoofing
 Yes
  Logs attempts when access is denied
 Yes
  Centralized Management
 Yes
  Time Based Access Controls
 Yes
  Local Management
 Yes, GUI  Command Line
  Remote Management
 Yes, GUI  Encrypted Telnet
  Encryption of Remote Management Sessions
 Yes
  Strong User Authentication
  for Remote Management
 Yes
  Centralized configuration backup
 Yes
  High Availiability Feature
 Full redundancy solutions with 99.999% availiability
  Disk Space Monitor
 Multiple alert levels by file system
  Log Full Condition
 Escalating Alerts to administrator
  Automated Log Scanning
 Yes
  Automated log reporting or
  log report writer
 Both
  Can remote log
 syslog, HTTP, access logs
  Alarm notification
 e-mail, page, SNMP trap
  Provide summary reports by
  user ID or IP address
 Yes
  Offers real time statistics
 Yes
  Performance Monitor
 Yes; CPU, Memory, Network, disk usage

Maybe an idea for future Mandrake distros?

Mads Rasmussen / CiT systems
www.cit.com.br




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



Re: [expert] Where is the 'HOSTNAME'?

2000-11-08 Thread Alexander Skwar

So sprach xaos am Tue, Nov 07, 2000 at 09:54:42PM -0500:
 /etc/hosts

That's something completely different

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com  |  http://www.dp.ath.cx
GnuPG ID:   4E35467E  FP: 93367E5B4AB777B42065533F456FF17C4E35467E
ICQ:7328191



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



[expert] Mapping network directories.

2000-11-08 Thread george . jones

Ok... When it comes down to network stuff, I'm Win32 literate and Linux
illiterate. I have 2 Linux boxes on our network, my laptop(Mandrake 7.02)
and my "server" (Mandrake 7.1). I'd like to be able to access directories
on our network with these machines, how would I go about doing this?




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



Re: [expert] Mapping network directories.

2000-11-08 Thread Cecil Watson

On Wednesday 08 November 2000 09:41, you wrote:

  Ok... When it comes down to network stuff, I'm Win32 literate and Linux
 illiterate. I have 2 Linux boxes on our network, my laptop(Mandrake 7.02)
 and my "server" (Mandrake 7.1). I'd like to be able to access directories
 on our network with these machines, how would I go about doing this?


Content-Type: text/plain; charset="us-ascii"; name="message.footer"
Content-Transfer-Encoding: 8bit
Content-Description: 

That depends on your network.  When you say our network do you mean a NT 
domain or workgropu or are you using Novell?  
-- 
"Not even God taks this long to get back, so get back"
 -Poe "Hello"



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



Re: [expert] Mapping network directories.

2000-11-08 Thread george . jones

Forgot to add this. I do have Samba running on both machines. (I can see
them both on the network from my NT/2000 boxes)




George Jones/US/ABNAMRO/NL@[EMAIL PROTECTED] on 11/08/2000
12:41:26 PM

Please respond to [EMAIL PROTECTED]

Sent by:  [EMAIL PROTECTED]


To:   [EMAIL PROTECTED]
cc:
Subject:  [expert] Mapping network directories.


Ok... When it comes down to network stuff, I'm Win32 literate and Linux
illiterate. I have 2 Linux boxes on our network, my laptop(Mandrake 7.02)
and my "server" (Mandrake 7.1). I'd like to be able to access directories
on our network with these machines, how would I go about doing this?



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







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



[expert] Clearing a Communications Socket

2000-11-08 Thread Albert E. Whale

OK, I'm having a problem connecting my PPTP VPN Connection.  The problem is that the

m$oft Server (I didn't create that name folks, it's in the logs!) won't release

the socket which pptp creates for the connection (e.g.



[root@mail /root]# netstat
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address   Foreign Address State
tcp0  0 mail.abs-comptech.:1026 198.30.140.7:pptp   ESTABLISHED
raw0  0 mail.abs-comptech.co:47 198.30.140.7:*  1

Is there a way (short of rebooting) in which I can clear the communications sockets?

TIA

--
Albert E. Whale   [EMAIL PROTECTED]
http://www.hky.com/aewhale.html
--
ABS Computer Technologies, Inc. - Computer  Networking Specialists
Sr. Database, Internet and Unix Systems Consultant

Pennsylvania Parenthood Initiative - PAPI - Children need BOTH Parents
http://www.geocities.com/Heartland/4688/papi.htm
The Father's Rights Network - http://www.hky.com/frn/frnhome.html






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



Re: [expert] USB-mouse and 7.2

2000-11-08 Thread pablito

Same mouse, same thing, except I "upgraded" the install the second time
around and reinstalled the mouse, then it worked.
- Original Message -
From: "Charles A Edwards" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, November 07, 2000 10:54 AM
Subject: Re: [expert] USB-mouse and 7.2


:I have a Logitech Optical Wheelmouse and I had the same problem with
it.
: The USB mouse driver would load during boot but Mouse Con fails with a no
: dev/mouse error so that when I got to the graphical login my mouse would
not
: work.
:The way I was able to fix mine was to hook-up a PS/2 mouse as well as
the
: USB mouse, boot the system. When the new hardware wizard launched  I
: configured the mouse as a USB Wheel mouse. Once the system finished
booting
: I shutdown and unhooked the PS/2 mouse. I restarted my system and the USB
: mouse including the wheel functions worked perfectly.
:
:Charles  (-:
:
:
:
: - Original Message -
: From: "Burkhard Zombronner" [EMAIL PROTECTED]
: To: [EMAIL PROTECTED]
: Sent: Tuesday, November 07, 2000 11:56 AM
: Subject: [expert] USB-mouse and 7.2
:
:
:  Hello there,
: 
:  just installed 7.2 over weekend and its really great and nearly all is
:  working except my usb-mouse ( MS Intellieye). Its working during install
:  without any problem, after first reboot its gone. (Good luck Ihave a
PS/2
:  adaptor)
: 
:  Any help please?
: 
:  Regards
: 
:  Burkhard Zombronner
: 
:  --
:  Microsoft is not dead, it just smells funny
: 
: 
:
:
: --
--
: 
:
:
:  Keep in touch with http://mandrakeforum.com:
:  Subscribe the "[EMAIL PROTECTED]" mailing list.
: 
:
:
:






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




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



Re: [expert] USB-mouse and 7.2

2000-11-08 Thread Burkhard Zombronner

Am Mittwoch 08 November 2000 20:33 schrieben Sie:

  Same mouse, same thing, except I "upgraded" the install the second time
 around and reinstalled the mouse, then it worked.
 - Original Message -
 From: "Charles A Edwards" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, November 07, 2000 10:54 AM
 Subject: Re: [expert] USB-mouse and 7.2

 :I have a Logitech Optical Wheelmouse and I had the same problem with

 it.

 : The USB mouse driver would load during boot but Mouse Con fails with a no
 : dev/mouse error so that when I got to the graphical login my mouse would

 not

 : work.
 :The way I was able to fix mine was to hook-up a PS/2 mouse as well as

 the

 : USB mouse, boot the system. When the new hardware wizard launched  I
 : configured the mouse as a USB Wheel mouse. Once the system finished

 booting

 : I shutdown and unhooked the PS/2 mouse. I restarted my system and the USB
 : mouse including the wheel functions worked perfectly.
 :
 :Charles  (-:
 :
 :
 :
 : - Original Message -
 : From: "Burkhard Zombronner" [EMAIL PROTECTED]
 : To: [EMAIL PROTECTED]
 : Sent: Tuesday, November 07, 2000 11:56 AM
 : Subject: [expert] USB-mouse and 7.2
 :
 :  Hello there,
 : 
 :  just installed 7.2 over weekend and its really great and nearly all is
 :  working except my usb-mouse ( MS Intellieye). Its working during
 :  install without any problem, after first reboot its gone. (Good luck
 :  Ihave a

the trick from Charles did not help, sniff (-:

-- 
Microsoft is not dead, it just smells funny



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



Re: [expert] compiling pci kernel modules - whats changed

2000-11-08 Thread stephen

apologies for the length, i normally fairly succinct ;-)
ordered 7.2 deluxe from uk source, it'll prob arrive before i 
finish pulling the iso pair, now the updates


re kde upgrading
is it a problem from kde xx on 7.1 to kde 2 on 7.1
but not kde xx to kde 2 within a 7.2 setup 


MAJOR (to me at least) BUG

somewhere "cd ~" seems to be executed

a) startx(KDE) in somedir
b) open xemacs 
c) go to open a file 

the file dialog has you in user $HOME

how do i stop this please? 
why does it happen now

similar when open an xterm



minor bugs
1. printer install - after completing print test page screen, you get
another installing file picture with no text

2. no way to choose which of 2 physically fitted video cards ?
builtin agp on a plugin cpu card or a voodoo3 pci ?

3. similar problem, with via-rhine and 3c509 eth, via-rhine seems but fails
insmod

4. i install telnet, its a lan for 2 boxes at work, now i get
telnet server messages relating to localhost splashing on the screen
eg...
order 7.2 delux from uk source, re kde upgrdaemon.critmon[1428]: failure
for servers telnet 973606833 localhostat least) BUG
daemon.infomon[1428]: not aler6ing for failure of servers/telnet  9

5.  pci kernel modules for arcom adc  dig i/o cards, working ok
under 7.1 with 2.2.15

now it starts to get confusing..

tried looking at source code

what different for these two lines

a) 2.2.15 single + SMP

while (  ( PCI_Device = pci_find_device( VendorID, DeviceID, PCI_Device) ) )
{
 .
}

compiles and functioning on a 7.1 box, only change prior to that 2.2.10 area
- a fair while back 1999 area??


b) 7.2 RC1 2.2.17

complies and hangs within this while statement

removed extra brackets, works properly.. reads the adc valves  .. grand




all my installs are expert + develop + package select, i usually kill off emacs,
gnome, other desktops, palm pilot and most games, keep most of rest


thought i'll do another install, try hack-kernel..
tried compiling
screenfuls of complaints of syntax in the kernel headers

thought maybe you can't have hack-kernel and std mdk kernel at same time
off we go again

leave out hack-kernel, an hour passes.
same problem, ideas please

rpm -qa|grep devel|wc -l -43 for my 7.1 
 -168 for 7.2 -- seems a bit high almost...

 Stephen R Parkinson.




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



Re: [expert] Mapping network directories.

2000-11-08 Thread pgeorges

[EMAIL PROTECTED] a écrit :
 
 Forgot to add this. I do have Samba running on both machines. (I can see
 them both on the network from my NT/2000 boxes)

I have a machine running Windows 98 (ulysse), and sharing its drive E.
Then I connect to this with :

mount -t smbfs //ulysse/E /mnt/ulysse_e   

One problem may arise when passwords are sent encrypted through the
network. There is a way to do this in samba doc. As I am really lazy,
and at home, I use plain password (a key in registry to modify, given in
the samba howto, if I remember well).



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



Re: [expert] FlashPath adaptor

2000-11-08 Thread Paul Stear

Hi Traci,
I hope this help you

Get the Beta Flashpath drivers from:

http://www.smartdisk.com/Downloads/Software/flashpath-0.2.1.tar.gz

I have downloaded the tar file and the pdf doc.  I
followed the instructions and all seened to be well.  However, when I try and
run it I get an error message saying that Flashpath setup has failed.
Have you got this program working?
I wonder if the problem is in the differences between redhat and mandrake, the
trouble is I don't know what the differences are, if any.  Can you help please?

Thanks again
regards  Paul

 
 I don't know if it helps, but I have written Toshiba numerous times
 requesting their support for Linux and the Flashpath. At least you
 could join me and any others who have made that request.
 
 -- 
 Traci Collins, MA, CCAI, CCNA
 Professor of Computer Education
 Colorado Mountain College
 http://www.rof.net/wp/tcollins/traci.html
 
 


Content-Type: text/plain; name="message.footer"
Content-Transfer-Encoding: 8bit
Content-Description: 


-- 
This message has been sent using Mandrake Linux and kmail



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



Re: [expert] Clearing a Communications Socket (PPTP insecure)

2000-11-08 Thread Mads Rasmussen

I assume you know this about the PPTP protocol, Bruce Schneier broke it
several times.

http://www.counterpane.com/pptp.html

A better option is IPsec a freeware implementation is available at
www.freeswan.org

However IPsec clients for windows is a problem, pgp made a freeware version
of pgpnet but it is only capable of making host to host connections.

Mads Rasmussen / CiT systems
www.cit.com.br




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



Re: [expert] Clearing a Communications Socket

2000-11-08 Thread Albert E. Whale

Eric,

Thanks for the reply.  If indeed restarting the network is the answer, then
this is a better approach:

if-down eth0
if-up eth0

I haven't tried it though.  I have tried the two commands above, and they
execute perfectly - everytime.

Thanks.

P.S. I'm getting closer to my VPN Masquerade problem, I may even post it here,
rather than in the News Groups.  It's to a Windoze Not There machine.  Sigh,
can't have everything, all at once anyway.

Eric Peters wrote:

 In the Winblows server or the linux box?

 Winblows there is no way unless you want to do a reghack

 In linux just do a /etc/rc.d/init/network restart
 or
 ifconfig "interface name" eht1 stop
 ifconfig eth1 start

 -Original Message-
 From: Albert E. Whale [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, November 08, 2000 11:32 AM
 To: [EMAIL PROTECTED]
 Subject: [expert] Clearing a Communications Socket

 OK, I'm having a problem connecting my PPTP VPN Connection.  The problem is
 that the

 m$oft Server (I didn't create that name folks, it's in the logs!) won't
 release

 the socket which pptp creates for the connection (e.g.

 [root@mail /root]# netstat
 Active Internet connections (w/o servers)
 Proto Recv-Q Send-Q Local Address   Foreign Address State
 tcp0  0 mail.abs-comptech.:1026 198.30.140.7:pptp
 ESTABLISHED
 raw0  0 mail.abs-comptech.co:47 198.30.140.7:*  1

 Is there a way (short of rebooting) in which I can clear the communications
 sockets?

 TIA

 --
 Albert E. Whale   [EMAIL PROTECTED]
 http://www.hky.com/aewhale.html
 --
 ABS Computer Technologies, Inc. - Computer  Networking Specialists
 Sr. Database, Internet and Unix Systems Consultant

 Pennsylvania Parenthood Initiative - PAPI - Children need BOTH Parents
 http://www.geocities.com/Heartland/4688/papi.htm
 The Father's Rights Network - http://www.hky.com/frn/frnhome.html

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

--
Albert E. Whale - www.hky.com/aewhale.html
--
ABS Computer Technology, Inc. - Computer  Networking Specialists
Sr. Network, Security and Systems Consultant

The Father's Rights Network - http://www.hky.com/frn/frnhome.html
The Pennsylvania Parenthood Initiative - PAPI - Children need BOTH Parents
- http://www.geocities.com/Heartland/4688/papi.htm





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



Re: [expert] Mapping network directories.

2000-11-08 Thread george . jones

Sorry about that, it's an NT domain.




Cecil Watson [EMAIL PROTECTED]@linux-mandrake.com on 11/08/2000 01:32:27
PM

Please respond to [EMAIL PROTECTED]

Sent by:  [EMAIL PROTECTED]


To:   [EMAIL PROTECTED]
cc:
Subject:  Re: [expert] Mapping network directories.


On Wednesday 08 November 2000 09:41, you wrote:

  Ok... When it comes down to network stuff, I'm Win32 literate and Linux
 illiterate. I have 2 Linux boxes on our network, my laptop(Mandrake 7.02)
 and my "server" (Mandrake 7.1). I'd like to be able to access directories
 on our network with these machines, how would I go about doing this?


Content-Type: text/plain; charset="us-ascii"; name="message.footer"
Content-Transfer-Encoding: 8bit
Content-Description:

That depends on your network.  When you say our network do you mean a NT
domain or workgropu or are you using Novell?
--
"Not even God taks this long to get back, so get back"
 -Poe "Hello"


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







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



Re: [expert] kde 2 - Autostart non functional?

2000-11-08 Thread Alan Shoemaker

Jeff Malka wrote:
 When upgrading from Mandrake 7.1 to 7.2, and therefore from
 kde 1 to kde 2, my autostart folder was retained.  Although
 the apps within my autostart folder do in fact work
 correctly when clicked on, they are not "autostarted" in
 KDE 2 on boot up and login.

 Is the autostart folder non functional in kde 2 ?

 Thanks.


 Jeff Malka [EMAIL PROTECTED]
 Registered Linux user  183185

Jeffno, just the old one on your desktop is no longer
functional as such.  There's a new one that works located
here:

 ~/.kde/Autostart
-- 
Alan



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



[expert] use of auto_inst.cfg.pl and with diff hardware - man page ??

2000-11-08 Thread stephen

i don't suppose anyone could instructions for use of this script, as my
hardware varies partic wrt diskdrives i've never tried accepting the offer
at end of install.

as i seem to be having fun with kernel header files compiling modules and
one box is still at least compiling my code i thought maybe i can bring
the others into line with it

/usr/include/linux/include/types.h seems rather full of parsing errors

i suspect too many *-devel rpms 168 68 v 26 all expert/devel installs

more ideas needed

Stephen R Parkinson

 



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



RE: [expert] Missing RPM Database

2000-11-08 Thread Richard Smith

Thanks for the suggestion - it is the only one I have had!
I hope you don't mind me copying my reply to the list as well - it may generate
some offers of /var/lib/rpm/ 's.
I think the mandrake list was the wrong one to post - but it does seem to be a
serious vulnerability. A friend has had the same thing happen on a RedHat
system, and ended up re-installing. The latest Linux Journal notes the
problem, and names /var/lib/rpm/  as an essential backup , but it would be
better if the rpm database was more secure or front-ends made their own backups
before any attempted change. Meanwhile, I am thinking about reinstalling before
I hit real problems - but it may be Debian instead!

Richard Smith

On Sun, 05 Nov 2000, you wrote:
 Just a stab in the dark, perhaps someone with a install similar to yours
 could send you contents of their /var/lib/rpm/ directory.  Then you run rpm
 deletes and installs to get it exactly right.
 
 HTH,
 Bill
 
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]]On Behalf Of Richard Smith
  Sent: Wednesday, October 25, 2000 5:11 PM
  To: Mandrake Expert List
  Subject: [expert] Missing RPM Database
 
 
  My /var/lib/rpm has been deleted. I don't know how it
  happened - I suspect
  Mandrake Update (it was killed during a troublesome
  download), but I have no
  proof. Or perhaps it was someone else in DrakConf ? A case
  for Inspector Clouzot
  perhaps??
  Now I am there, how do I get out? I have looked at Maximum
  RPM, and I cannot
  understand how rpm --initdb or rpm --rebuilddb can help
  unless rpm has access
  to the original rpm files. Anyway, if I try rpm --initdb or
  rpm --rebuilddb or
  rpm -anything I always get the same message:
"failed to open /var/lib/rpm/packages.rpm: No such file
  or directory"
  before rpm jacks out. So I can't install, upgrade or anything.
  Do I really have to start from scratch again? If so, RPM and
  friends need a
  government health warning. I back up /root, /home and /etc
  regularly, but I
  didn't know how vital /var/lib/rpm is, and how vulnerable.
  Has anyone got any
  other vital backup suggestions I may not be aware of?
 
 



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



Re: [expert] Norwegian keyboard, KDE and mdk 7.2

2000-11-08 Thread Christian A Strømmen [Number1/NumeroUno]

On Tuesday 07 November 2000 11:45, Hans Sandsdalen wrote:
 Hi

 I have problems using the norwegian keyboard with KDE (or X) with
 Mandrake 7.2. It works fine without X, but in X I get for example
 "(arg: 2)" if I press "AltGr+2", which should be @.

 AltGr+1 and up to 4 gives the same result, "(arg: x)" where x is the
 number pressed.

 Any ideas?

Have a problem my altgr key here too (norwegian layout) and have repeatedly 
mailed both this list and mdk-support to try to get help, have gone through 
all documentation I can find, searched the web, went to all the linux irc 
channels I can find, but there doesn't seem to be anyone that is able to 
help, maybe mdk doesn't want norwegian users? ;)

This is a copy of the mail I have been sending around:


Have had some problems the last month with my keyboard layout, experienced 
the same in both mdk 7.2beta3 and mdk 7.2final.

My right alt (altgr) reacts the same way as the left alt, no matter what I 
do...

This is my keyboard section in XF86Config:
Section "InputDevice"
    Identifier  "Keyboard1"
    Driver      "Keyboard"
    Option      "AutoRepeat"    "250 30"
    Option      "XkbRules"      "xfree86"
    Option      "XkbModel"      "pc105"
    Option      "XkbLayout"     "no"
EndSection

I also get this error in terminal when using startx:

snap
parse error: line 15 of no The XKEYBOARD keymap compiler (xkbcomp) reports: 
 Error:            Error interpreting include file "no"                   

 Exiting                    Abandoning symbols file "default" Errors from 
xkbcomp are not fatal to the X server Error loading new keyboard 
description                   
/snap

I'm not sure if this has anything to do with it..

I'd really appreciate it if someone could answer this as soons as possible 
(off course only if you have a solution or a way to diagnose this), as 
computing isn't exactly easy when you can't just altgr+number-keys..

-- 
\ Christian A Strømmen /
\ Number1/NumeroUno @ Undernet - Email: [EMAIL PROTECTED] /
\ Web: www.realityx.net - Cell: +47 911 43 948 /
   Live your life by your dreams,
 not by the limits of reality...



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



Re: [expert] Clearing a Communications Socket (PPTP insecure)

2000-11-08 Thread Albert E. Whale

Mads,

Thanks, but at this point I am not in a Position to dictate what is in place.
Although I know that PPTP is insecure, it is what I have to work with.  It is
what it is.

The customer is considering implementing Linux in other environments, and
perhaps we can implement change then.

Right now, my problem is connecting to this PPTP server.

Mads Rasmussen wrote:

 I assume you know this about the PPTP protocol, Bruce Schneier broke it
 several times.

 http://www.counterpane.com/pptp.html

 A better option is IPsec a freeware implementation is available at
 www.freeswan.org

 However IPsec clients for windows is a problem, pgp made a freeware version
 of pgpnet but it is only capable of making host to host connections.

 Mads Rasmussen / CiT systems
 www.cit.com.br

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

--
Albert E. Whale - www.hky.com/aewhale.html
--
ABS Computer Technology, Inc. - Computer  Networking Specialists
Sr. Network, Security and Systems Consultant

The Father's Rights Network - http://www.hky.com/frn/frnhome.html
The Pennsylvania Parenthood Initiative - PAPI - Children need BOTH Parents
- http://www.geocities.com/Heartland/4688/papi.htm





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



Re: [expert] Upgrade from within Linux

2000-11-08 Thread Ron Stodden

pgeorges wrote:
 
 Ashley Moore a écrit :
 
  Can anybody tell me if its possible to initiate the upgrade / install
  process off the CD from within Linux
 
 Yes. With liveupdate (on CD 1).

But I cannot execute anything located on the other side of a mount
point.  So I cannot execute executables located on a mounted floppy
or a mounted CDROM, or a copy of a CDROM into a mounted spare
partition.  Permission Denied.

So how would someone actually do a live_update?

Is live_update restricted to doing an update of the partition in
which it is running, or can one specify another Linux partition to be
updated?Can it do an initial install into another virgin ext2
partition?

-- 
Regards,

Ron. [AU]



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



Re: [expert] switch /usr partition ?

2000-11-08 Thread Harry Holt


On Wed, 08 Nov 2000 04:30:19 jean-philippe wrote:
 
 
 pgeorges wrote:
  
  "David M. Kufta" a écrit :
  
   I have a clients machine that curently has a /usr mount point of
 /dev/hdb1
   /dev/hdb1 2.0G  1.5G  527M  74% /usr
   This client has a partition /dev/hdc1 which is currently mounted as
 /home2
   /dev/hdc1 7.9G   32M  7.8G   0% /home2
  
   I would like to use /dev/hdc1 as /usr and know there is a cpio
 command
   syntax that will allow me to move his current /usr from hdb1 to hdc1
 which
   has more available space and would better suit his needs, however the
   command line syntax escapes me.
  
  What about (logged as root) :
  
  cp -a /usr /home2/
  mv /usr /usr.bak
  ln -svf /home2/usr /usr
  rm -rf /usr.bak
 
 It is not a good idea to do it with cp. All the files permitions and
 ownership would be lost.
 Beside, non regular files would also cause trouble. I would do it like
 this :
 
 first make a backup of /home2 in /home/old.home2.tgz and clean /home2
tar cvzpf /home/old.home2.tgz /home2
rm -rf *
 
 then transfer files from /usr to /home2
   (cd /usr  tar cpf - .) | (cd /home2  tar xvpf -)
 
 mount the partitions as they should be mounted
umount /home2 /usr
mount /dev/hdc1 /usr
 
 And then modify your /etc/fstab
 
 And maybe it would not be a bad idea to do it in runlevel 1.
 
 
 HTH
 Flupke
 

why not do:

cp -dpR /usr/* /home2

???

I always alias cp with '-p' for root because I usually want to preserve
permissions when copying files.  I have never had a problem with it not
keeping the old permissions.  Should I expect that they could be lost in
some cases?

.. HH

 -- 
There's no place like ~! 
 
 
 Keep in touch with http://mandrakeforum.com: 
 Subscribe the "[EMAIL PROTECTED]" mailing list.
 





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



[expert] Netscape 4.75 and Kernel 2.4.0 that came with Mdk 7.2

2000-11-08 Thread Patrick Mayer

Has anyone had trouble running Netscape 4.75 with the kernel 2.4.0
(pre-release) that comes with Mandrake 7.2? Strangely enough, it seems
to crash the mail module... Maybe I didn't compile it correctly. Does
anybody have information about this? Thanks :)



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



Re: [expert] switch /usr partition ?

2000-11-08 Thread Larry Marshall

 I always alias cp with '-p' for root because I usually want to preserve
 permissions when copying files.  I have never had a problem with it not
 keeping the old permissions.  Should I expect that they could be lost in
 some cases?

When copying to /mnt/windows perhaps (grin)?

Cheers --- Larry





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



[expert] Need Fetchmail Mailing List

2000-11-08 Thread SoloCDM

If anyone knows of an excellent fetchmail mailing list, would you send
me the information?

Note: When you reply to this message, please include
  the mailing list and my email address.

*
Signed,
SoloCDM



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



[expert] Adding a disk, insmod placement, moving /var

2000-11-08 Thread Ran Hooper

I know there is a thread related to this, I just want to make sure I get it
right!

I am running Mandrake 7.1 on an IDE drive. I need some space and a backup so
I am adding the following:

AHA-2940UW
SCSI Seagate 4/8 DAT
SCSI Seagate 2.1GB Barracuda.

My data that is using space is on /var, currently I have / as one
drive/partition. I would like to end up with the new drive being /var for
space sake.

My plan is thus:
1) Install hardware.
2) Boot up.
3) Kill anything using /var
3) insmod the aic7xxx.o
4) tar czpf /vardata.tar.gz /var
5) mv /var /oldvar
6) Run diskdrake, mount the drive, hopefully it takes care of fstab yes?
7) tar xzpf /vardata.tar.gz /var
8) if everything goes well whack /oldvar
9) Enjoy more space, and whoa, backups.

Does this make sense? Will I get an exact duplicate (Links, permissions,
etc.) of /var this way?

My questions are as follows.

1) I know I need to use the command:
insmod aic7xxx.o
upon bootup to see the card and the devices attached. Where is the 'correct'
place to put this command so that if the server reboots I don't have to be
there to type it in.

2) Is using diskdrake safe for this? Will diskdrake auto update my fstab
accordingly? So I'm *assuming* that I should end up with the additional line
to my fstab:
/dev/sda1 /var ext2 defaults 1 1

3) When all is said and done my tape drive will be /dev/st0 right?


Any advice is much appreciated.

Regards,

Ran Hooper
[EMAIL PROTECTED]




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



RE: [expert] Adding a disk, insmod placement, moving /var

2000-11-08 Thread Ran Hooper

diskdrake is the gui disk partitioning program you see when you first
install mandrake. It can also be run from x.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Alexander Skwar
Sent: Wednesday, November 08, 2000 11:20 PM
To: [EMAIL PROTECTED]
Subject: Re: [expert] Adding a disk, insmod placement, moving /var


So sprach Ran Hooper am Wed, Nov 08, 2000 at 09:32:10PM -0800:
 4) tar czpf /vardata.tar.gz /var

-z isn't necesssary if you have enough freespace in /

I would do it a little different, but your approach wasn't wrong though.

 1) turn off computer
 2) install hardware
 3) turn on
 4) add alias scsi_hostadapter aic7xxx to /etc/modules.conf
 5) run cfdisk/fdisk to partition the drive
 6) I'd choose reiserfs as the fs for the new drive, but that's up to you
 7) mkreiserfs /dev/sda1 (or mke2fs /dev/sda1)
 8) add /dev/sda1 /var reiserfs defaults 0 0 to /etc/fstab
 9) mount (-t reiserfs) /dev/sda1 /mnt/newvar
10) tar cfvsp - -C /var | tar xfvsp - -C /mnt/newvar
(now you have a copy of /var in /mnt)
11) mv /var /varold
12) umount /mnv/newvar
13) mount /var
14) rm -rf /varold


 6) Run diskdrake, mount the drive, hopefully it takes care of fstab yes?

What does diskdrake do?

Alexander Skwar
--
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com  |  http://www.dp.ath.cx
GnuPG ID:   4E35467E  FP: 93367E5B4AB777B42065533F456FF17C4E35467E
ICQ:7328191





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



Re: [expert] Can I use my Mandrake home for Debian?

2000-11-08 Thread Denis HAVLIK

:~I have about 9GB of unused space since I uninstalled Be.   My home directory
:~its own partition.  Do you think it would hurt my Mandrake if I used is as
:~my home in Debian.  I have a backup of it on a seperate partition, and a
:~compressed backup on a CD, but I'd like to not use those if possible. 

I don't know for sure, but it should not be a big problem. If really
nothing else works, get yourself 2 small home dirs and let them share a
big "data" subdir.

cu
Denis
-- 
-
Dr. Denis Havlikhttp://www.ap.univie.ac.at/users/havlik
Mandrakesoft||| e-mail: [EMAIL PROTECTED]
Quality Assurance  (@ @)(private: [EMAIL PROTECTED])
---oOO--(_)--OOo-
The mailserver is on strike. It wants better working conditions,
paid days off and a female connector. ([EMAIL PROTECTED])


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


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



Re: [expert] RE: Digest for list expert

2000-11-08 Thread Alexander Skwar

So sprach Brown, Charles V. am Tue, Nov 07, 2000 at 08:04:39PM -0600:
 Is there a linux email client product that can
 talk to a Microsoft Exhange email server?

I think Trade Client is able to do so.

Thanks for providing such a great example why full quoting is useless! :]
PLEASE read my signature!

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com  |  http://www.dp.ath.cx
GnuPG ID:   4E35467E  FP: 93367E5B4AB777B42065533F456FF17C4E35467E
ICQ:7328191



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



[expert] Unsubscribe, please.

2000-11-08 Thread Jesus Lacambra Estruch






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



Re: [expert] Can I use my Mandrake home for Debian?

2000-11-08 Thread Larry Marshall

 :~I have about 9GB of unused space since I uninstalled Be.   My home directory
 :~its own partition.  Do you think it would hurt my Mandrake if I used is as
 :~my home in Debian.  I have a backup of it on a seperate partition, and a
 :~compressed backup on a CD, but I'd like to not use those if possible. 
 
 I don't know for sure, but it should not be a big problem. If really
 nothing else works, get yourself 2 small home dirs and let them share a
 big "data" subdir.
 
 cu
   Denis
 




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