Find the answer to your Linux question:
Results 1 to 7 of 7
Newly installed Debian 3.1r3. Have ethernet cord attached to the router. Is there a way to access file on my windows computer thru the network using vfat or something?...
  1. #1
    er&
    er& is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    26

    how to use router network in Debian 3.1r3

    Newly installed Debian 3.1r3. Have ethernet cord attached to the router. Is there a way to access file on my windows computer thru the network using vfat or something?

  2. #2
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Quote Originally Posted by er&
    Is there a way to access file on my windows computer thru the network using vfat or something?
    First install the "smbfs" package :
    Code:
    apt-get install smbfs
    Then you can mount the networked partition (given it is shared by your distant windows computer) like that :
    Code:
    mount -t cifs //192.168.1.10/share /mnt/win_computer
    Given "192.168.1.10" is your distant computer address (and "share" is the name of the folder on it).

    "/mnt/win_computer" is the directory on the local computer where you want to mount it. It must exist, so you must create it first :
    Code:
    mkdir -p /mnt/win_computer
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  3. #3
    er&
    er& is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    26

    cifs

    Used apt-setup and followed the instructions then apt-get install smbfs. Went to mount gave error "unknown filesystem cifs.

  4. #4
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Quote Originally Posted by er&
    Used apt-setup and followed the instructions then apt-get install smbfs. Went to mount gave error "unknown filesystem cifs.
    Ok, then replace "cifs" with "smbfs" :
    Code:
    mount -t smbfs //192.168.1.10/share /mnt/win_computer
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  5. #5
    er&
    er& is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    26

    Timeouts

    192.168.1.10:445&139 timedout. Error read that operation was already in progress so all computers on the network were shut off and the power on the router was toggled. Checked the /etc/fstab file the were no net devices just drives and proc. The network is not functional!

  6. #6
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Quote Originally Posted by er&
    192.168.1.10:445&139 timedout. Error read that operation was already in progress so all computers on the network were shut off and the power on the router was toggled.
    Not quite sure what you mean here. Is your network functionnal ?
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  7. #7
    er&
    er& is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    26

    Network not functional!

    The statement on the screen says "Operation is already in progress". Does samba have any new or existing software that can bridge to the network?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •