4 gig limitation on file size through the network?

I recently setup two workstations on my lan with SUSE 11.0 I wanted to drag the SUSE ISO file through the network and back it up to an extra internal hard drive, which is partitioned unix.

I do not have any windows systems on my network (not any more).

I was able to download the ISO DVD disk image from the internet site, which is 4.3 gigs in size, but I am unable to transfer the same size from one workstation to the other. Is this a known bug ar dose anyone know of a fix for this file size limitation? I went through the add-on packages to see if there was one listed to correct this problem, but I did not see any that fit the bill.

My desktop is KDE 3.5 on both units.

John

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

What kind of file sharing? Maybe a Samba limitation?

http://www.linuxquestions.org/questions/linux-networking-3/samba-file-size-limit-372039/

If you have SSH open on either machine you can use scp/sftp to transfer
files from one to another without limitation. If you know the command
commands line that option is always available but otherwise
konqueror/Firefox can also give you a drag/drop option.

Good luck.

iwadmin wrote:
> I recently setup two workstations on my lan with SUSE 11.0 I wanted to
> drag the SUSE ISO file through the network and back it up to an extra
> internal hard drive, which is partitioned unix.
>
> I do not have any windows systems on my network (not any more).
>
> I was able to download the ISO DVD disk image from the internet site,
> which is 4.3 gigs in size, but I am unable to transfer the same size
> from one workstation to the other. Is this a known bug ar dose anyone
> know of a fix for this file size limitation? I went through the add-on
> packages to see if there was one listed to correct this problem, but I
> did not see any that fit the bill.
>
> My desktop is KDE 3.5 on both units.
>
> John
>
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFI5AdD3s42bA80+9kRAlWvAJ0egNlFXiKB9SGT88MJtq3x8NZpWQCZAYUC
lEzq3WNTzHkA80z2qNvmbAo=
=f9kv
-----END PGP SIGNATURE-----

Hello ab,

Yes the drag was through Samba.

I am still learning the OS and Samba is the only thing I have been able to figure out as of yet. It’s only been a week. :slight_smile:

I have apache up and running on one of the machines. I will try placing the file in the web root and drag it through port 80.

I haven’t been able to get a handle on the NFS or SLP thing yet, but I am working on it. I suppose this is the native protocal for SUSE?

If you have a link to some detailed reading to the native protocal for SUSE, I don’t mind reading!

Thanks for the reply.

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

SLP isn’t for transferring files, but NFS is a protocol that is fairly
universally available. Still for going between *nix machines I’d still
opt for SSH as it’s already there, enabled, easy, and secure. Be sure
SSH is open (TCP 22) and then connect using Nautilus or Konqueror as
follows:

konqueror: fish://username@ipAddress/
nautilus: sftp://username@ipAddress/

Once don you can just drag/drop and browse like you would for anything
graphical like that.

Good luck.

iwadmin wrote:
> Hello ab,
>
> Yes the drag was through Samba.
>
> I am still learning the OS and Samba is the only thing I have been able
> to figure out as of yet. It’s only been a week. :slight_smile:
>
> I have apache up and running on one of the machines. I will try placing
> the file in the web root and drag it through port 80.
>
> I haven’t been able to get a handle on the NFS or SLP thing yet, but I
> am working on it. I suppose this is the native protocal for SUSE?
>
> If you have a link to some detailed reading to the native protocal for
> SUSE, I don’t mind reading!
>
> Thanks for the reply.
>
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFI5DdL3s42bA80+9kRAtpHAKCFTRFIk6VnF+Ett25dbzI+2n24mQCfbkeL
7E6nInwTzFa16o3qyfimvfg=
=PC6A
-----END PGP SIGNATURE-----

OK,

I will look into the SSH and make sure the port is open. I have two network adapters in one of the machine and have not set it up yet. I will open up the port and give it a go.

Anything other than making sure both machines are in the same workgroup, need to be setup or changed for SSH?

Thanks

John

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Nothing like that even, needs to be done. For SSH to work you need an
SSH server (on one side), and SSH client (on the other) and working
TCP/IP between the two. Okay, you also need a username/password OR
public/private keypair, depending on how fancy you have managed to make
your setup. That’s it… it’s easier than FTP (only uses one port) and
infinitely more secure.

Good luck.

iwadmin wrote:
> OK,
>
> I will look into the SSH and make sure the port is open. I have two
> network adapters in one of the machine and have not set it up yet. I
> will open up the port and give it a go.
>
> Anything other than making sure both machines are in the same
> workgroup, need to be setup or changed for SSH?
>
> Thanks
>
> John
>
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFI5EN53s42bA80+9kRAuakAJ0Z0BX8BuRFa8stD4wj6dDDBiQJOQCePo+l
9zL8AmVOF3uakYbMkCjDKvU=
=m5RB
-----END PGP SIGNATURE-----

Or as ab mentioned but didn’t expand :slight_smile: scp is a good way to copy between computers using ssh.

Your linux installs should have the ssh daemon running already and probably allowed through the firewall by default.

scp ‘source’ user@‘destination’:/directory

so launch a console session.
cd to the directory where you have the iso.

type:
scp nameofiso.iso root@ipofdestination:/somedirectory

(where root is the user on the destination machine. feel free to substitute a user if you wish.)

enter the root password for the destination machine.

Type ‘yes’ to accept the certificate and the copy will begin. Remember that it is case sensitive.

hth
J

Got er done!

Worked like a charm and no file limitation.

Can I use this module:

pam_ssh - PAM Module for SSH Authentication

or do I need it. I would like to be able log on and stay logged on without having to retype the password all the time. Is there a better way to accomplish this?

Thanks for the reply James.

The ssh service is default closed on SUSE 11.0 and had to be allowed in the firewall. Once I did that I had no problem using konqueror.

John

Hi
With the Gnome DE, using nautilus and sftp it creates a desktop link
until you unmount the remote share. Not sure in Konquerer if you can
create a bookmark?
Else you could look at generating ssh keys to use between the two
machines for passwordless ssh login.


Cheers Malcolm °¿° (Linux Counter #276890)
openSUSE 11.0 x86 Kernel 2.6.25.16-0.1-default
up 1:19, 1 user, load average: 0.01, 0.04, 0.04
GPU GeForce 6600 TE/6200 TE - Driver Version: 173.14.12

I used the pam module that I mentioned.

Once logged on to the desktop then to the machine you stay logged on until someone logs off of their workstation. It’s working fine and I have had no issues. Transfer rate is faster than I thought it would be. Took right 4 min. to drag 4.3 gigs through the 10/100 based network.

Thanks for all the help everyone!

John