similar to: Can not copy file, "The Path is too deep"

Displaying 20 results from an estimated 20000 matches similar to: "Can not copy file, "The Path is too deep""

2004 May 05
0
Problem solved - Re: Can not copy file, "The Path is too deep"
It turned out that Samba can not handle the following situation: 2 network cards bonded together, and they are connected to different switches. Samba can handle the following situation: 2 network cards bonded together, and they are connected to the same switch. Thanks, Hai >>> "Hai Wu" <hwu3@wpo.it.luc.edu> 05/05/04 12:34 PM >>> This is Red Hat Enterprise
2002 Jun 22
1
Samba 2.2.5 - Cannot copy The path is too deep
I recently installed Samba 2.2.5 from the FreeBSD ports. It seems Samba works fine when browsing the Samba server from WinXP client, etc. I can copy files from the Samba server, and even create small files and copy small files TO the Samba server. The problem seems to be if I try to copy any file greater than 16Kbytes or so to the Samba server. When I do so, Windows XP complains with an error:
2014 Mar 17
1
Deep copy of factor levels?
Hi It seems that selecting an element of a factor will copy its levels (Ubuntu 13.04, R 3.0.2). Below is the output of a script that creates a factor with 10000 elements and then calls as.list() on it. The new object seems to use more than 700 MB, and inspection of the levels of the individual elements of the list suggest that they are distinct objects. Perhaps some performance gain could
2002 Sep 23
1
Path is too deep
Hi, Has anyone any idea why when i'm trying to copy a file to a samba share it takes a long time and finally says 'Path is too deep'? Thanks for any suggestions ------------- Kristyan Osborne IT Technician Longhill High School 01273 391672 ------ Computers are like airconditioners: They stop working properly if you open windows. Win95: A 32-bit patch for a 16-bit GUI shell
2002 Apr 16
2
Path too deep
dear sir, I have samba 2.2.3a running on RedHat linux 7.2 with kernel 2.4.7-10 all other computers on the network are windows XP machines. I do NOT have any problems when reading with windows XP from any share in the linux server, however when i try to copy a file to the share, my windowsXP explorer stops responding for about 30 secs and then gives the error-message 'could not copy file:
2005 Nov 14
1
Can Windows 2003 server be configured as a samba client ?
Hi list, Just in order to avoid loosing my time, I would be happy to know any success stories about configuring a Win2k3 as a Samba 3 client, just as any others MS client ( WinNT pro, Win2k pro, WinXP pro ). If so, is there any tuning on the Win2k3 client and the server ( Samba 3 PDC + ldapsam, but no kerb ) ? I'm expecting mistakes with users sharing their roaming profiles between Win2k
2004 Feb 26
3
Winbind only enumerating 9% of domain groups
Hi All, I'm having a strange pronlem with winbind. For users it seems to be working fine but for groups its not enumerating most of the groups! A getent group produces only 325 lines of domain groups whereas wbinfo -g produces 2839 lines of groups. I'm not seeing any errors logged and all commands are exiting with status 0. Winbind related sections of smb.conf are shown below,
2006 Aug 01
2
managing Win2K3 ACL from debian server
I want to modify ACL on files which are on a win2K3 server from a Debian Sarge server. my config. is: Linux Debian Sarge testing with kernel 2.6 samba 3.0.22 configured with winbind krb5 installed, the Linux server is member of a AD domain on witch the win2K3 server is a domain controller. I want to do the following (as root): smbmount //mywin2k3server/share /mnt/smb/mountingfolder -o
2011 Sep 20
1
Can tinc traffic be identified by Deep Packet Inspection?
Hi, I'm seeing periodic packet loss with tinc (1.0.16). I have 'ReplayWindow = 0' in config, and ping between the hosts is perfect. I suspect the packets are identified and then dropped by the Great Firewall. My question is: can it be identified by DPI? If yes, how should I improve tinc to avoid this? Thanks in advance. Roger -------------- next part -------------- An HTML
2011 Sep 20
1
Can tinc traffic be identified by Deep Packet Inspection?
Hi, I'm seeing periodic packet loss with tinc (1.0.16). I have 'ReplayWindow = 0' in config, and ping between the hosts is perfect. I suspect the packets are identified and then dropped by the Great Firewall. My question is: can it be identified by DPI? If yes, how should I improve tinc to avoid this? Thanks in advance. Roger -------------- next part -------------- An HTML
2012 Apr 14
1
deep copy?
Is putting a variable into a list a deep copy (and is tracemem the correct way to confirm)? warmstrong at krypton:~/dvl/R.packages$ R > x <- rnorm(1000) > tracemem(x) [1] "<0x3214c90>" > x.list <- list(x.in.list=x) tracemem[0x3214c90 -> 0x2af0a20]: > Is it possible to put a variable into a list without causing a deep copy (i.e. if you _really_ want the
2009 Jun 07
1
[LLVMdev] Basic Block / CFG Deep Copy?
Does LLVM offer any way of obtaining a deep copy of a CFG, that is all the basic blocks of a function and their instructions. I'm asking because I would like to implement continuations in my VM and I need to create a modified version of some functions. I thought a simple way of doing this would be to modify a copy of the code generated for the orignal function. This would be simpler than
2007 Jul 26
2
How to make a deep copy of ActiveRecord
I wanna make a method that can deep copy an ActiveRecord to a new one, but it seems a little difficult , how to do it? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe
2005 Nov 26
1
(no subject)
Hi All, I'm really sad that Win2k3 server runs a lot better in a shared folder that keep a file based database that Windows 9x and WinNT clients. Explaining it better... Here in Brazil, unfortunaly we still have a lot business that is based in the old file shared database, like Dataflex, Clipper and like. Then, they need a robust and fast server to centralize that files. With Windows98
2004 Apr 05
1
Deep copy in R
I am handling spatial data of huge volumes, so sensitive to the silent duplication of data in script programs. In the following R program, exactly when is the vector data deeply copied? Thanks in advance. 1 v <- 1:10000 2 z <- f(v) --------- function f ---------- 3 f <- function(x) { 4 y = x 5 y[10] = 1 6 xf = date.frame(x=x) 7 xf$x[10] = 1 8
2016 Apr 05
1
Assignment operator and deep copy for calling C functions
Hi All, i have a problem in understanding what the assignment operator '<-' really is doing. If i create two numeric arrays in R and copy one into the other with '<-' and afterwards change one array by calling a C function, both arrays are changed! The problem I am facing can easily be seen in the following example: (The following R code and the C function is attached and
2014 Jan 30
1
Using rsync filter to include specific, deep subdirectories under source path?
I'm trying to get rsync filters working -- and understood. My current, simple test script is ---------------------------------------------- #!/bin/bash ROPTS="--verbose --progress --itemize-changes \ --recursive \ --links \ --perms \ --times \ --group \ --owner \ --devices \ --specials \ --acls \ --xattrs \
2004 Jan 26
1
Weird problem with ADS support - Samba 3.0.1 - win2k3
Ok, this one has me stumped... I am implementing 3.0.1 on a new machine - Slackware 9 based. Got everything compiled (OpenLDAP, Kerberos 5) and installed Kerberos pulls the ticket without problem. The samba machine joins the domain without any difficulties. Here is where it gets weird. From the Win2k3 DC, I can not browse the samba machine - won't recognize passwords. However, from
2009 Dec 08
2
virt-install failed while install windows2003 guest
Here's the procedure: # qemu-img -f qcow2 /vm/win2k3.img 8G # virt-install --connect qemu:///system -n win2k3 -r 512 --vcpus=1 -c /home/temp/win2003sp2ins.iso -f /vm/win2k3.img -s 4 --network=bridge:br0 --mac=00:ff:ff:ff:58:58 --noautoconsole --vnc --os-type=windows --os-variant=win2k3 --hvm --accelerate And I get error as below: Starting install... internal error unable to start guest: qemu:
2004 Jul 23
0
tree connect failed: NT_STATUS_LOGON_FAILURE
I have two systems on different subnets that are to be members of the same domain; nether are the domain master. I am running RedHat Enterprise 3 Update 2 on each. Both are running samba-common-3.0.2-6.3E samba-client-3.0.2-6.3E samba-3.0.2-6.3E Both are using the smb.conf except with changes on their netbios name and interfaces to reflect their identies. One runs with no problem s.