Re: Problems seeing/mounting partitions from ssh

2019-07-19 Thread Achim Gratz
Henry S. Thompson writes: > Achim Gratz writes: > >> Henry S. Thompson writes: >>> But if I come in to this machine via ssh (public key or password), the >>> virtual partitions are lost: >> >> That's how Windows is designed. If you have no desktop session, then >> none of the associated setups are

Re: Problems seeing/mounting partitions from ssh

2019-07-19 Thread Henry S. Thompson
Erik Soderquist writes: > On Thu, Jul 18, 2019 at 5:29 PM Erik Soderquist wrote: >> You may be able to work around this by adding the subst command to >> your .profile, but should not expect subst commands from one user >> session to be visible in another user session. > > I just tested, and yes,

Re: Problems seeing/mounting partitions from ssh

2019-07-18 Thread Erik Soderquist
On Thu, Jul 18, 2019 at 5:29 PM Erik Soderquist wrote: > You may be able to work around this by adding the subst command to > your .profile, but should not expect subst commands from one user > session to be visible in another user session. I just tested, and yes, executing the subst commands with

Re: Problems seeing/mounting partitions from ssh

2019-07-18 Thread Erik Soderquist
On Thu, Jul 18, 2019 at 5:04 PM Henry S. Thompson wrote: > > Achim Gratz writes: > > > Henry S. Thompson writes: > >> But if I come in to this machine via ssh (public key or password), the > >> virtual partitions are lost: > > > > That's how Windows is designed. If you have no desktop session, the

Re: Problems seeing/mounting partitions from ssh

2019-07-18 Thread Henry S. Thompson
Achim Gratz writes: > Henry S. Thompson writes: >> But if I come in to this machine via ssh (public key or password), the >> virtual partitions are lost: > > That's how Windows is designed. If you have no desktop session, then > none of the associated setups are triggered. Not to dismiss your po

Re: Problems seeing/mounting partitions from ssh

2019-07-18 Thread Achim Gratz
Henry S. Thompson writes: > But if I come in to this machine via ssh (public key or password), the > virtual partitions are lost: That's how Windows is designed. If you have no desktop session, then none of the associated setups are triggered. Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neu

Problems seeing/mounting partitions from ssh

2019-07-18 Thread Henry S. Thompson
I have one real (c:) and three virtual (d:, e:, f:) partitions on my Windows 10 box The virtual partitions are created at login by Windows tasks using the 'subst' command. With an empty /etc/fstab, at first this all appears to work fine: > mount C:/C64/bin on /usr/bin type ntfs (binary,auto)

Re: Mounting a network share

2015-11-03 Thread Corinna Vinschen
FS shares, btw. > > No there no explantion on how to enter a user and password. I tried the nfs > syntax because it doesn't require a password. The Cygwin mount is no actual mount command because it doesn't mount anything. It's not an OS. The mount point in Cygwin is ju

Re: Mounting a network share

2015-11-02 Thread Linda Walsh
Andrey Repin wrote: Greetings, Mike Brown! I'm remotely loggin in to my P box and would lke to mount one of the NAS Samba shares. M$ likes to unmount the share after a period of time, but because it was mounted, the pasword is needed (I hope). When I try the following: mount \\192.16

Re: Mounting a network share

2015-11-02 Thread Andrey Repin
Greetings, Mike Brown! >> > > If you want to do it from Cygwin side, use fstab and don't use /cygdrive >> > > prefix. It is for automatic mounts ONLY. >> > >> > I went and found the Cygwin web page that describes fstab. What it doesn't >> > say is how to use it. >> >> It does: https://cygwin.co

Re: Mounting a network share

2015-11-02 Thread Mike Brown
On Mon, Nov 02, 2015 at 05:26:51PM +0100, Corinna Vinschen wrote: > On Nov 2 10:03, Mike Brown wrote: > > On Mon, Nov 02, 2015 at 04:40:33AM +0300, Andrey Repin wrote: > > > If you want to do it from Cygwin side, use fstab and don't use /cygdrive > > > prefix. It is for automatic mounts ONLY. > >

Re: Mounting a network share

2015-11-02 Thread Roger Wells
On 11/02/2015 11:18 AM, Corinna Vinschen wrote: > On Nov 1 23:35, Mike Brown wrote: >> On Mon, Nov 02, 2015 at 04:40:33AM +0300, Andrey Repin wrote: >>> net use //host/resource[/path] P: * /PERSISTENT /SAVECRED >> >> I got the following to be accepted: >> >> net use \\192.168.1.40\Public password

Re: Mounting a network share

2015-11-02 Thread Corinna Vinschen
On Nov 2 10:03, Mike Brown wrote: > On Mon, Nov 02, 2015 at 04:40:33AM +0300, Andrey Repin wrote: > > If you want to do it from Cygwin side, use fstab and don't use /cygdrive > > prefix. It is for automatic mounts ONLY. > > I went and found the Cygwin web page that describes fstab. What it doesn

Re: Mounting a network share

2015-11-02 Thread Corinna Vinschen
On Nov 1 23:35, Mike Brown wrote: > On Mon, Nov 02, 2015 at 04:40:33AM +0300, Andrey Repin wrote: > > net use //host/resource[/path] P: * /PERSISTENT /SAVECRED > > I got the following to be accepted: > > net use \\192.168.1.40\Public password /user:brown /persistant:yes > > The syntax doesn't h

Re: Mounting a network share

2015-11-02 Thread Mike Brown
On Mon, Nov 02, 2015 at 04:40:33AM +0300, Andrey Repin wrote: > If you want to do it from Cygwin side, use fstab and don't use /cygdrive > prefix. It is for automatic mounts ONLY. I went and found the Cygwin web page that describes fstab. What it doesn't say is how to use it. I have the followin

Re: Mounting a network share

2015-11-02 Thread Corinna Vinschen
On Nov 1 23:35, Mike Brown wrote: > On Mon, Nov 02, 2015 at 04:40:33AM +0300, Andrey Repin wrote: > > net use //host/resource[/path] P: * /PERSISTENT /SAVECRED > > I got the following to be accepted: > > net use \\192.168.1.40\Public password /user:brown /persistant:yes > > The syntax doesn't h

Re: Mounting a network share

2015-11-01 Thread Mike Brown
On Mon, Nov 02, 2015 at 04:40:33AM +0300, Andrey Repin wrote: > net use //host/resource[/path] P: * /PERSISTENT /SAVECRED I got the following to be accepted: net use \\192.168.1.40\Public password /user:brown /persistant:yes The syntax doesn't have a place to where it should be mounted. But, if

Re: Mounting a network share

2015-11-01 Thread Andrey Repin
Greetings, Mike Brown! > I'm remotely loggin in to my P box and would lke to mount one of the NAS > Samba shares. M$ likes to unmount the share after a period of time, > but because it was mounted, the pasword is needed (I hope). > When I try the following: > mount \\192.168.1.40\Public /cy

Mounting a network share

2015-11-01 Thread Mike Brown
I'm remotely loggin in to my P box and would lke to mount one of the NAS Samba shares. M$ likes to unmount the share after a period of time, but because it was mounted, the pasword is needed (I hope). When I try the following: mount \\192.168.1.40\Public /cygdrive/p I get an invalid option.

problems mounting C drive from macrium image

2015-09-22 Thread Lester Ingber
I used the following line in a Cygwin script: Reflect.exe -e -inc "C:\cygwin64\usr\local\bin\Reflect.xml" where Reflect.xml was generated in the Macrium GUI. This performed the backups just fine on our two Thinkpad Carbon X1 Windows 10 Pro x64 PCs. I then went to the Macrium GUI to mount the new i

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-25 Thread Andrey Repin
Greetings, Frank Redeker! >> (SNIP) >> >> $ ls -ld /?/* >> ls: cannot access /?/*: No such file or directory >> >> $ ls -ld /a/* >> drwxr-xr-x 1 AnrDaemon - 0 Jun 26 2012 /a/Android >> drwxr-xr-x 1 AnrDaemon - 0 Nov 5 10:58 /a/Info&Txt >> drwxr-xr-x 1 AnrDaemon ---

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-25 Thread Andrey Repin
Greetings, Damian Harty! >> Can you please do the following commands in order (native windows console >> preferred, but not necessary): >> net use > % net use > New connections will be remembered. > Status Local RemoteNetwork > >

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Larry Hall (Cygwin)
On 1/24/2014 12:27 PM, Damian Harty wrote: Please remove this crap from list mails, thank you. I have no control over it. Please feel free to simply ignore it. Actually, you're lucky your email wasn't bounced back to you because of this. It's site policy to not allow such disclaimers. S

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Corinna Vinschen
On Jan 24 15:58, Damian Harty wrote: > > Are you starting mintty as admin? That might explain it. > > I'm not observing a difference between running mintty as normal and > right-clicking and doing "run as administrator". If that wasn't what you were > asking, then I apologise. > > It seems if

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Christopher Faylor
On Fri, Jan 24, 2014 at 05:27:32PM +, Damian Harty wrote: >> >> >Please remove this crap from list mails, thank you. >> > I have no control over it. Please feel free to simply ignore it. > >>Actually, you're lucky your email wasn't bounced back to you because of >>this. It's site policy to not

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Alexander Kriegisch
Dear community, I have read this conversation and am honestly shocked about the way Damian (whom I do not know, BTW) was "greeted" in response to his initial question. I have noticed several times that too often here talk is about compliance to a string of rules and acronyms anyone daring to po

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Damian Harty
> >> >Please remove this crap from list mails, thank you. > > I have no control over it. Please feel free to simply ignore it.   > Actually, you're lucky your email wasn't bounced back to you because of this.  > It's site policy to not allow such disclaimers.  > See the FAQ entry on this > poli

RE: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C]
BTW, there is a type there, IMO: > http://cygwin.com/cygwin-ug-net/using.html#cygdrive none /cygdrive cygdrive binary 0 0 D: /cygdrive/d somefs text 0 0 will not make file access using the /mnt/d path prefix suddenly using textmode The sentence after the fstab excerpt should have referr

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Larry Hall (Cygwin)
On 1/24/2014 6:31 AM, Damian Harty wrote: >Please remove this crap from list mails, thank you. I have no control over it. Please feel free to simply ignore it. Actually, you're lucky your email wasn't bounced back to you because of this. It's site policy to not allow such disclaimers. See th

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Christopher Faylor
On Fri, Jan 24, 2014 at 11:31:16AM +, Damian Harty wrote: >On Fri, Jan 24, 2014 at 03:10:41PM +0400, Andrey Repin wrote: >>Please remove this crap from list mails, thank you. > >I have no control over it. Please feel free to simply ignore it. Sorry but this disclaimer is against site policy.

RE: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Damian Harty
> Are you starting mintty as admin? That might explain it. I'm not observing a difference between running mintty as normal and right-clicking and doing "run as administrator". If that wasn't what you were asking, then I apologise. It seems if I start a cmd shell "standalone" and run c:\cygwin\

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Corinna Vinschen
On Jan 24 15:10, Damian Harty wrote: > > My experience with cygwin is that if I can open a DOS command window and > > successfully do: > > > >dir k: > > > > Drive "k" will be accessible as /cygdrive/k > > *Until now* that has been my experience also... > > Check this out for "curiouser and curio

RE: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Damian Harty
> My experience with cygwin is that if I can open a DOS command window and > successfully do: > >dir k: > > Drive "k" will be accessible as /cygdrive/k *Until now* that has been my experience also... Check this out for "curiouser and curiouser": Start a command shell from inside Cygwin: %

RE: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Damian Harty
If I run net use from a simple DOS prompt (Windows\system32\cmd.exe) I get: H:\>net use New connections will be remembered. Status Local RemoteNetwork --- OK H

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread tednolan
In message you write: > >Windows Explorer readily shows drives H: and Z:. That looks like they >"are reall y mounted" to me, but I wouldn't know what constitutes a >rigorous test or even w hat the definition of "really mounted" actually >is. > My experience with cygwin is that if I can open a DOS

RE: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Damian Harty
> Remove the above mount points, exit your Cygwin shells, and try again. If > the H and Z drives still don't show up under your /cygdrive prefix, they are > probably not really mounted in your Windows session. OK, so back to where I started. A virginal /etc/fstab once more. Windows Explorer re

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Corinna Vinschen
On Jan 24 09:53, Damian Harty wrote: > O learned Denizens, > > I'm best described as a feverish fumbler rather than some sort of expert. > However, I have been around the block a few times but now I find myself > feeling like a newbie again. > > I've just realised that in my new place of employ

RE: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Damian Harty
> Can you please do the following commands in order (native windows console > preferred, but not necessary): > net use % net use New connections will be remembered. Status Local RemoteNetwork ---

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Frank Redeker
Hallo Andrey Repin, On 24.01.2014 12:10, Andrey Repin wrote: > > (SNIP) > > $ ls -ld /?/* > ls: cannot access /?/*: No such file or directory > > $ ls -ld /a/* > drwxr-xr-x 1 AnrDaemon - 0 Jun 26 2012 /a/Android > drwxr-xr-x 1 AnrDaemon - 0 Nov 5 10:58 /a/Info&Txt > dr

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Andrey Repin
Greetings, Damian Harty! >> > Q2: Why doesn't it automatically mount the network drives? >> It does. > Thank you for your constructive reply. We can go around the "It > does/doesn't" loop for some time, if you like. > While it may do on your machine, it is of course entirely possible that, sat

RE: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Damian Harty
> > Q2: Why doesn't it automatically mount the network drives? > It does. Thank you for your constructive reply. We can go around the "It does/doesn't" loop for some time, if you like. While it may do on your machine, it is of course entirely possible that, sat at my machine, I am unable to ac

Re: Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Andrey Repin
7;t work as advertised: > % cd /cygdrive > % ls > c > % > Q1: Is there something else I need to do after mounting it? No. > Q2: Why doesn't it automatically mount the network drives? It does. $ ls -ld /?/* ls: cannot access /?/*: No such file or direc

Windows 7 64 Bit - Mounting Network Drives

2014-01-24 Thread Damian Harty
ygdrive/c type ntfs (binary,posix=0,user,noumount,auto) ...which is lovely, except that it doesn't work as advertised: % cd /cygdrive % ls c % Q1: Is there something else I need to do after mounting it? Q2: Why doesn't it automatically mount the network drives? I look

Re: setup.exe and mounting home directory in fstab

2013-10-04 Thread James R. Phillips
>I notice that every time I run setup.exe, my soft link gets removed and a new >profile is created for me the next time I open a Cygwin terminal. I can confirm a similar issue in setup-x86_64. However, the soft link for /home is not actually removed - it remains side-by-side with the new /home d

Re: setup.exe and mounting home directory in fstab

2013-09-20 Thread Andrey Repin
Greetings, Warren Young! >>> My current solution is to just mount it in fstab with the following line: >>> >>>c:/Users /home ntfs binary,posix=0,nouser >> >> Alternatively, you can set HOME in your >> Windows environment to point to the directory you want as your home. > Or, change the second

Re: setup.exe and mounting home directory in fstab

2013-09-19 Thread Warren Young
On 9/19/2013 19:15, Larry Hall (Cygwin) wrote: On 9/19/2013 12:16 PM, Rob Siklos wrote: My current solution is to just mount it in fstab with the following line: c:/Users /home ntfs binary,posix=0,nouser Alternatively, you can set HOME in your Windows environment to point to the directory

Re: setup.exe and mounting home directory in fstab

2013-09-19 Thread Larry Hall (Cygwin)
On 9/19/2013 12:16 PM, Rob Siklos wrote: Background: I wanted my /home directory to point to c:\Users rather than the out-of-the-box home directory created by cygwin. In order to accomplish this, I deleted the existing home folder and created a soft link mapping /home to /cygdrive/c/Users. Thi

setup.exe and mounting home directory in fstab

2013-09-19 Thread Rob Siklos
Background: I wanted my /home directory to point to c:\Users rather than the out-of-the-box home directory created by cygwin. In order to accomplish this, I deleted the existing home folder and created a soft link mapping /home to /cygdrive/c/Users. This works great, except that I notice

Re: Mounting ISOs with Cygwin?

2013-06-04 Thread Dan Kegel
On Tue, Jun 4, 2013 at 2:21 PM, Warren Young wrote: > $ test -f /etc/termcap && echo "looks like BSD" That's why I had the smiley. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscrib

Re: Mounting ISOs with Cygwin?

2013-06-04 Thread Warren Young
On 6/3/2013 17:52, Dan Kegel wrote: On Mon, Jun 3, 2013 at 4:44 PM, Warren Young wrote: Cygwin != Linux /proc/cpuinfo begs to differ :-) $ grep -i linux /proc/cpuinfo | wc -l 0 Wrong test. I think you were looking for $ test -f /proc/cpuinfo && echo "looks like linux" See also http://ww

Re: Mounting ISOs with Cygwin?

2013-06-04 Thread Corinna Vinschen
On Jun 3 21:29, Yaakov (Cygwin/X) wrote: > On 2013-06-03 18:03, Dan Kegel wrote: > >On Mon, Jun 3, 2013 at 3:47 PM, Larry Hall (Cygwin) wrote: > >>Cygwin != Linux > > > >/proc/cpuinfo begs to differ :-) > > > >For what it's worth, windows 8 now includes a way to mount iso, > >and it seems to have

Re: Mounting ISOs with Cygwin?

2013-06-03 Thread Yaakov (Cygwin/X)
On 2013-06-03 18:03, Dan Kegel wrote: On Mon, Jun 3, 2013 at 3:47 PM, Larry Hall (Cygwin) wrote: Cygwin != Linux /proc/cpuinfo begs to differ :-) For what it's worth, windows 8 now includes a way to mount iso, and it seems to have been backported to older windows as an addon ( http://www.micr

Re: Mounting ISOs with Cygwin?

2013-06-03 Thread Dan Kegel
On Mon, Jun 3, 2013 at 4:44 PM, Warren Young wrote: >>> Cygwin != Linux >> >> /proc/cpuinfo begs to differ :-) > > $ grep -i linux /proc/cpuinfo | wc -l > 0 Wrong test. I think you were looking for $ test -f /proc/cpuinfo && echo "looks like linux" See also http://www.sourceware.org/ml/cygwin-p

Re: Mounting ISOs with Cygwin?

2013-06-03 Thread Warren Young
On 6/3/2013 17:03, Dan Kegel wrote: On Mon, Jun 3, 2013 at 3:47 PM, Larry Hall (Cygwin) wrote: Cygwin != Linux /proc/cpuinfo begs to differ :-) $ grep -i linux /proc/cpuinfo | wc -l 0 Smiley suggests joke. Joke not funny, yet statement not serious. Programmer confused. F1! Also: $ una

Re: Mounting ISOs with Cygwin?

2013-06-03 Thread Dan Kegel
On Mon, Jun 3, 2013 at 3:47 PM, Larry Hall (Cygwin) wrote: > Cygwin != Linux /proc/cpuinfo begs to differ :-) For what it's worth, windows 8 now includes a way to mount iso, and it seems to have been backported to older windows as an addon ( http://www.microsoft.com/en-us/download/details.aspx?id

Re: Mounting ISOs with Cygwin?

2013-06-03 Thread Larry Hall (Cygwin)
On 6/3/2013 6:20 PM, John Oliver wrote: $ mount -o loop -t iso9660 /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora mount: unknown option -- t Try `mount --help' for more information. $ mount -o loop /cygdrive/c/Documents\ and\ Settings/joliver

Re: Mounting ISOs with Cygwin?

2013-06-03 Thread Dan Kegel
If you're just looking for any old way to do it, as opposed to using cygwin, Me, I just install WinCDEmu from http://wincdemu.sysprogs.org/download and then do cygstart foo.iso - Dan On Mon, Jun 3, 2013 at 3:20 PM, John Oliver wrote: > $ mount -o loop -t iso9660 /cygdrive/c/Documents\ and\ > Sett

Mounting ISOs with Cygwin?

2013-06-03 Thread John Oliver
$ mount -o loop -t iso9660 /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora mount: unknown option -- t Try `mount --help' for more information. $ mount -o loop /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-

Re: fstab mounting fails for some cygwin users

2013-04-12 Thread Corinna Vinschen
Hi Jeff, On Apr 11 17:16, Jeff Avila wrote: > 18891 59336 [main] ls 3892 symlink_info::check: 0xC022 = > NtCreateFile (\??\UNC\boltzmann\sw) Here's the problem. Status code 0xC022 means "Access denied". I tried to reproduce your scenario, but for some reason it always works fine in my

Re: fstab mounting fails for some cygwin users

2013-04-11 Thread Jeff Avila
Here go: 3 3 [main] ls (3892) ** 283 286 [main] ls (3892) Program name: C:\cygwin\bin\ls.exe (windows pid 3892) 130 416 [main] ls (3892) OS version: Windows NT-6.2 115 531 [main] ls (3892) ***

Re: error mounting smb shared with ~ in name

2012-04-02 Thread Thorsten Kampe
* Daniel D (Sun, 1 Apr 2012 07:49:49 + (UTC)) > > > Thorsten Kampe thorstenkampe.de> writes: > > > * Daniel D (Fri, 30 Mar 2012 21:52:35 -0700) > > > > > > > > Is ~ allowed on a smb share name when mounting it? I keep getting > > > >

Re: error mounting smb shared with ~ in name

2012-04-01 Thread Daniel D
> Thorsten Kampe thorstenkampe.de> writes: > > > > > * Daniel D (Fri, 30 Mar 2012 21:52:35 -0700) > > > > > > Is ~ allowed on a smb share name when mounting it? I keep getting errors > > > while trying to mount //server/~foo via fstab. > &

Re: error mounting smb shared with ~ in name

2012-03-30 Thread Thorsten Kampe
* Daniel D (Fri, 30 Mar 2012 21:52:35 -0700) > > Is ~ allowed on a smb share name when mounting it? I keep getting errors > while trying to mount //server/~foo via fstab. > > If yes, can someone give me some tips for what to do to mount a share named > \\server\~foo ? >

error mounting smb shared with ~ in name

2012-03-30 Thread Daniel D
Howdy, Is ~ allowed on a smb share name when mounting it? I keep getting errors while trying to mount //server/~foo via fstab. If yes, can someone give me some tips for what to do to mount a share named \\server\~foo ? Here’s what I already tried: - ls //server/~foo works – prints out

Re: 1.7.9: Problem with line endings of Perl output redirected to a file with textmode mounting

2011-06-07 Thread Craig A. Berry
On Tue, Jun 7, 2011 at 8:40 AM, Reini Urban wrote: > 2011/5/24 Reini Urban: >> 2011/5/18 Sven Severus: >>> Ups! The original sequence starting at offset 4095 (0xfff) >>> became a three character sequence ! The is duplicated! >>> >>> In other files created by Perl with output redirection I ob

Re: 1.7.9: Problem with line endings of Perl output redirected to a file with textmode mounting

2011-06-07 Thread Reini Urban
line endings (hex: 0d 0a). >> It is located in a directory with textmode mounting in cygwin. >> One sequence of foo.h is split by a 4096 byte boundary within >> the file: "od -c -Ax foo.h" shows a (='\r') at byte offset 4095 >> (0xfff) >>

Re: 1.7.9: Problem with line endings of Perl output redirected to a file with textmode mounting

2011-05-24 Thread Sven Severus
Tue, 24 May 2011, Reini Urban wrote: > Yes, this looks like a PerlIO buffering bug for MSWin32 and cygwin. > The last char of the buffer is not stored when checking the first char > of the new buffer. > I think first we have to provide a sample test case to perl core. Thank you for your response.

Re: 1.7.9: Problem with line endings of Perl output redirected to a file with textmode mounting

2011-05-23 Thread Reini Urban
ted in a directory with textmode mounting in cygwin. > One sequence of foo.h is split by a 4096 byte boundary within > the file: "od -c -Ax foo.h" shows a (='\r') at byte offset 4095 > (0xfff) > and a (='\n') at offset 4096 (0x1000): > ... > 000ff0   /  

1.7.9: Problem with line endings of Perl output redirected to a file with textmode mounting

2011-05-17 Thread Sven Severus
Hello all, let me report a strange behaviour with Cygwin Perl (I'm using cygwin1.dll 1.7.9-1, full installation 2 weeks ago). File foo.h is an ordinary text file, all lines are terminated with DOS style line endings (hex: 0d 0a). It is located in a directory with textmode mounting in c

Re: Mounting shares that require passwords

2010-08-13 Thread Daniel Colascione
On 8/13/10 10:13 AM, Steven Collins wrote: > I'm attempting to execute "net use" from the bash command prompt in an > xterm session that was started via the "XWin Server" menu item. The > 'ps' command lists the TTY as "con", so I wouldn't expect to be using > a pty. Am I? If so, is there a work aro

Re: Mounting shares that require passwords

2010-08-13 Thread Steven Collins
On Fri, Aug 13, 2010 at 11:07, Christopher Faylor <> wrote: > On Fri, Aug 13, 2010 at 10:56:55AM -0600, Steven Collins wrote: >>On Fri, Aug 13, 2010 at 10:28, Jeremy Bopp <> wrote: >>> On 8/13/2010 11:24 AM, Steven Collins wrote: Is there some way within cygwin to successfully mount a share th

Re: Mounting shares that require passwords

2010-08-13 Thread Christopher Faylor
On Fri, Aug 13, 2010 at 10:56:55AM -0600, Steven Collins wrote: >On Fri, Aug 13, 2010 at 10:28, Jeremy Bopp <> wrote: >> On 8/13/2010 11:24 AM, Steven Collins wrote: >>> Is there some way within cygwin to successfully mount a share that >>> requires a password. Until I run the "net use" command or

Re: Mounting shares that require passwords

2010-08-13 Thread Steven Collins
On Fri, Aug 13, 2010 at 10:28, Jeremy Bopp <> wrote: > On 8/13/2010 11:24 AM, Steven Collins wrote: >> Is there some way within cygwin to successfully mount a share that >> requires a password. Until I run the "net use" command or other >> Windows application to open the share with the password Cyg

Re: Mounting shares that require passwords

2010-08-13 Thread Jeremy Bopp
On 8/13/2010 11:24 AM, Steven Collins wrote: > Is there some way within cygwin to successfully mount a share that > requires a password. Until I run the "net use" command or other > Windows application to open the share with the password Cygwin is > unable to access it. The best I've come up with s

Mounting shares that require passwords

2010-08-13 Thread Steven Collins
Is there some way within cygwin to successfully mount a share that requires a password. Until I run the "net use" command or other Windows application to open the share with the password Cygwin is unable to access it. The best I've come up with so far is to run the "net use" from my .bashrc. Is the

Re: Accessing SMB shares without explicit mounting

2010-08-08 Thread Andrew DeFaria
On 08/08/2010 12:40 PM, Phil Reynolds wrote: Quoting "Jeremy Bopp" : It sounds like your Samba configuration requires authentication in order to access this share. Are you able to access the share as \\server\share using the Windows file explorer without first mapping the share to a drive or

Re: Accessing SMB shares without explicit mounting

2010-08-08 Thread Phil Reynolds
Quoting "Jeremy Bopp" : It sounds like your Samba configuration requires authentication in order to access this share. Are you able to access the share as \\server\share using the Windows file explorer without first mapping the share to a drive or authenticating in some other way? Cygwin uses

Re: Accessing SMB shares without explicit mounting

2010-08-08 Thread Jeremy Bopp
On 08/08/2010 03:42 AM, Phil Reynolds wrote: > In order to cut down on the overall time my backups are taking, I am > thinking of running flexbackup under cygwin. However, I will want it to > write to a directory I have shared from my Linux box using samba, > without mounting it explic

Accessing SMB shares without explicit mounting

2010-08-08 Thread Phil Reynolds
In order to cut down on the overall time my backups are taking, I am thinking of running flexbackup under cygwin. However, I will want it to write to a directory I have shared from my Linux box using samba, without mounting it explicitly. I understand that this at least ought to be

Re: file owner and group lost when mounting samba share

2010-01-08 Thread dsula1
http://cygwin.com/faq/ > Documentation: http://cygwin.com/docs.html > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > > > -- View this message in context: http://old.nabble.com/file-owner-and-group-lost-when-mounting-samba-share-tp27

Re: file owner and group lost when mounting samba share

2010-01-08 Thread Larry Hall (Cygwin)
On 01/08/2010 03:31 PM, dsula1 wrote: Hi, I mounted a network samba share in cygwin mount x:/prj /prj and it works with the exceptions that the file nd group owner of the files are only displayed as ???. Any ideas what could be going on ? Certainly. These IDs aren't in your '/etc/passwd

Re: file owner and group lost when mounting samba share

2010-01-08 Thread dsula1
; and it works with the exceptions that the file nd group owner of the files > are only displayed as ???. > > Any ideas what could be going on ? > > Thank you. > -- View this message in context: http://old.nabble.com/file-owner-and-group-lost-when-mounting-samba-share-tp27

file owner and group lost when mounting samba share

2010-01-08 Thread dsula1
-group-lost-when-mounting-samba-share-tp27081894p27081894.html Sent from the Cygwin list mailing list archive at Nabble.com. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info

Re: Mounting EXT2FS as Windows filesystem

2009-05-18 Thread dmccunney
On Mon, May 18, 2009 at 8:24 AM, Kelly Jones wrote: > I just did: > > dd if=/dev/zero of=test.fs bs=1 count=1 > /usr/sbin/mke2fs.exe test.fs > > to create an EXT2FS. > > Question: how do I mount this so that Windows sees it as a regular > filesystem? You need a driver. Windows doesn't gr

Re: Mounting EXT2FS as Windows filesystem

2009-05-18 Thread Lenik
On 2009-5-18 20:24, Kelly Jones wrote: I just did: dd if=/dev/zero of=test.fs bs=1 count=1 /usr/sbin/mke2fs.exe test.fs to create an EXT2FS. Question: how do I mount this so that Windows sees it as a regular filesystem? My goal is to create something that's both a single file and also

Mounting EXT2FS as Windows filesystem

2009-05-18 Thread Kelly Jones
I just did: dd if=/dev/zero of=test.fs bs=1 count=1 /usr/sbin/mke2fs.exe test.fs to create an EXT2FS. Question: how do I mount this so that Windows sees it as a regular filesystem? My goal is to create something that's both a single file and also a filesystem. Reason: Mozy backup encryp

Re: Mounting tar files

2007-11-28 Thread Ignazio Di Napoli
card? If you want a portable Cygwin, why not put most of it onto a CD? Because a SD card is smaller and read/write. Mounting a CD ISO copied on the SD would also be possible, but as you said it would require the installation of software. I though it could be possible to manage the whole thing

Re: Mounting tar files

2007-11-27 Thread joekrahn
programs around that mount ISO images as a virtual filesystem. But, if you have to install extra support software, what is the point of installing Cygwin on an SD card? If you want a portable Cygwin, why not put most of it onto a CD? -- View this message in context: http://www.nabble.com/Mounting-tar-

Mounting tar files

2007-11-27 Thread Ignazio Di Napoli
Hi all. I want to copy my Cygwin installation on my SD card. Since it's formed by many small files, and my flash memory performance is very poor with such files, I was wondering if there is some way to mount a tar file, or something like, even if in read-only way, searching in the archive if t

Re: File permissions... Mounting...

2007-10-11 Thread Larry Hall (Cygwin)
Eric Uratchko wrote: That's just it-- I've changed the domain user to a million different things. Right now there is no authentication, it's set to full perms to everyone. I can open it in everything. I can go to /cygdrive and see c and z, z is the mapped network share. Then I SSH in to the box

RE: File permissions... Mounting...

2007-10-11 Thread Eric Uratchko
That's just it-- I've changed the domain user to a million different things. Right now there is no authentication, it's set to full perms to everyone. I can open it in everything. I can go to /cygdrive and see c and z, z is the mapped network share. Then I SSH in to the box and z is gone ... Anyth

Re: File permissions... Mounting...

2007-10-10 Thread Larry Hall (Cygwin)
Eric Uratchko wrote: Never a dull moment, that's what I'll say right now. Hokay ... So.. I'm in a test environment. Security is not an issue. Permissions could very well be root to everything without passwords and that would be fine, in fact that would make my life easier. But. Since that isn't

File permissions... Mounting...

2007-10-10 Thread Eric Uratchko
Never a dull moment, that's what I'll say right now. Hokay ... So.. I'm in a test environment. Security is not an issue. Permissions could very well be root to everything without passwords and that would be fine, in fact that would make my life easier. But. Since that isn't the case... [EMAIL PRO

RE: Problems mounting root filesystem off of NFS

2006-03-17 Thread doodsaq
Oops, missing Guest account...that fixed the setegid stuff... however still can't login, something's wrong with my inittab I think. -- View this message in context: http://www.nabble.com/Problems-mounting-root-filesystem-off-of-NFS-t1293038.html#a3464265 Sent from the Cygwin User

RE: Problems mounting root filesystem off of NFS

2006-03-17 Thread doodsaq
in nfsd.log as the PPC board boots). Any help greatly appreciated, thank you! -- View this message in context: http://www.nabble.com/Problems-mounting-root-filesystem-off-of-NFS-t1293038.html#a3463433 Sent from the Cygwin Users forum at Nabble.com. -- Unsubscribe info: http://cygwin.com

RE: Problems mounting root filesystem off of NFS

2006-03-16 Thread doodsaq
x27;ll try this, thanks! I'm completely unfamiliar with configuring static map files for NFS so I'm gonna have to do some reading here. Thanks for your suggestions! -- View this message in context: http://www.nabble.com/Problems-mounting-root-filesystem-off-of-NFS-t1293038.html#a344

RE: Problems mounting root filesystem off of NFS

2006-03-16 Thread Robb, Sam
> I'm trying to get Linux running on a PPC board to mount an NFS root > filesystem off of a Windows XP machine -- in this case the > NFS filesystem is exported by the NFS server in Cygwin. While it > mounts OK, Linux fails to come up due to various errors, e.g. 1) Did you install the server us

Problems mounting root filesystem off of NFS

2006-03-16 Thread doodsaq
an do that [FAILED] Activating swap partitions: [ OK ] mount: only root can do that mount: only root can do that mount: only root can do that /etc/rc.d/rc.sysinit: line 456: /etc/rc.modules: Permission denied Checking filesystems Checking all file systems. [ OK ] Mounting local filesystems: mount: on

Re: Mounting a remote file system

2006-02-24 Thread Brian Dessent
David Vergin wrote: > This conversation: > http://mail.kde.org/pipermail/freenx-knx/2005-December/002725.html > suggests that someone is working on getting this running in cygwin. But > I can't find any follow-up. I wouldn't get your hopes up. I certainly haven't seen anyone mention any such thi

Mounting a remote file system

2006-02-24 Thread David Vergin
This got me a little excited -- mounting a remote file system on a local mountpoint... From: http://fuse.sourceforge.net/sshfs.html > SSHFS: SSH Filesystem > This is a filesystem client based on the SSH File Transfer Protocol. > Since most SSH servers already support this protocol i

  1   2   >