LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-24-2006, 11:18 AM   #1
Andriy
Member
 
Registered: Dec 2005
Distribution: Slackware, SLAX, Redhat, Fedora
Posts: 133

Rep: Reputation: 15
Wink parallel file transfer in slackware


How do we do this in Slackware?
 
Old 01-24-2006, 11:41 AM   #2
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
Do what? What, exactly, do you mean by "parallel file transfer"?
 
Old 01-24-2006, 05:47 PM   #3
Andriy
Member
 
Registered: Dec 2005
Distribution: Slackware, SLAX, Redhat, Fedora
Posts: 133

Original Poster
Rep: Reputation: 15
yes. i want to transfer files from my laptop to desktop computer using such cable.
 
Old 01-24-2006, 05:53 PM   #4
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
File transfer through a parallel (printer) cable you mean?
 
Old 01-24-2006, 06:16 PM   #5
Andriy
Member
 
Registered: Dec 2005
Distribution: Slackware, SLAX, Redhat, Fedora
Posts: 133

Original Poster
Rep: Reputation: 15
yes. because I used to do this a long time ago with laplink on mswindows. however, i dunno how to do this on linux since everything can be done nowadays through lan. however, this laptop im using now is very old and doesnt even have a pcmcia card.
 
Old 01-24-2006, 06:34 PM   #6
Franklin
Senior Member
 
Registered: Oct 2002
Distribution: Slackware
Posts: 1,348

Rep: Reputation: 217Reputation: 217Reputation: 217
You will need to enable parallel port and plip in /etc/rc.d/rc.modules
I have included the relevant parts below. In my example plip is NOT enabled. To enable you will need to remove the # sign from in front of the /sbin/modprobe plip line

Code:
#### PC parallel port support ###
if cat /proc/ksyms | grep "\[parport_pc\]" 1> /dev/null 2> /dev/null ; then
  echo "parport0 is built-in, not loading module" > /dev/null
else
  if [ -r /lib/modules/$RELEASE/kernel/drivers/parport/parport_pc.o \
       -o -r /lib/modules/$RELEASE/kernel/drivers/parport/parport_pc.o.gz \
       -o -r /lib/modules/$RELEASE/kernel/drivers/parport/parport_pc.ko ]; then
    # Generic setup example:
    /sbin/modprobe parport_pc
    # Hardware specific setup example (required for PLIP and better
    # performance in general):
    #/sbin/modprobe parport_pc io=0x378 irq=7
  fi
fi

#### Parallel printer support ###
if cat /proc/ksyms | grep "\[lp\]" 1> /dev/null 2> /dev/null ; then
  echo "lp support built-in, not loading module" > /dev/null
else
  if [ -r /lib/modules/$RELEASE/kernel/drivers/char/lp.o \
       -o -r /lib/modules/$RELEASE/kernel/drivers/char/lp.o.gz \
       -o -r /lib/modules/$RELEASE/kernel/drivers/char/lp.ko ]; then
    /sbin/modprobe lp
  fi
fi

### Parallel port IP ###
#/sbin/modprobe plip
google plip and null modem. I saw a howto for Debian out there.

http://www.tldp.org/HOWTO/PLIP-Install-HOWTO.html

This might get you started.

HTH
 
Old 01-24-2006, 08:24 PM   #7
Andriy
Member
 
Registered: Dec 2005
Distribution: Slackware, SLAX, Redhat, Fedora
Posts: 133

Original Poster
Rep: Reputation: 15
Thanks a lot. I'll try to setup my machines and tell you later my results.
 
Old 01-24-2006, 09:51 PM   #8
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
I didn't even realize this was possible.
 
Old 01-24-2006, 10:06 PM   #9
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
Quote:
Originally Posted by Matir
I didn't even realize this was possible.
I'm assuming by your "Guru" status that you've compiled a kernel or two. Haven't you ever noticed the parallel support section? Or the paride kernel as part of the install? Both can be used with a parallel port cable to tranfer files between machines. On the Windows side, they've had it built in to to OS since Win95.

I've been using it on an old laptop with no cd or floppy to install for years.
 
Old 01-25-2006, 07:17 AM   #10
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
Quote:
Originally Posted by cwwilson721
I'm assuming by your "Guru" status that you've compiled a kernel or two. Haven't you ever noticed the parallel support section? Or the paride kernel as part of the install? Both can be used with a parallel port cable to tranfer files between machines. On the Windows side, they've had it built in to to OS since Win95.

I've been using it on an old laptop with no cd or floppy to install for years.
I knew it was possible under windows, just not Linux. (Though I should've guessed it) I just hadn't seen such a setup in about 8 years. And yes, I've seen the parallel port section, but what I never really paid much attention to was the parallel port section in the networking options.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Any alternatives to Fastlynx? (parallel file transfer software) mike333md Linux - Software 1 01-31-2007 07:44 PM
File Transfer thereeper Linux - Software 2 05-17-2005 05:26 PM
file transfer from vm phfowol Debian 3 10-23-2004 12:39 AM
How to transfer a 3Gbyte file OUT of Slackware? carboncopy Slackware 11 08-02-2004 11:12 AM
File transfer Joe47 Linux - Newbie 2 02-09-2003 04:12 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:09 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration