* [gentoo-user] problem mounting windows share on samba
@ 2021-03-18 10:15 John Covici
2021-03-18 12:10 ` Hund
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: John Covici @ 2021-03-18 10:15 UTC (permalink / raw
To: gentoo-user
Hi. I have a strange problem mounting a windows share on my gentoo
box. I have two windows disks that I can share c and d drive. If I
write
mount.smb3 //ccs2/c the c drive is mounted. If I say mount.smb3
//ccs2/d the system does not complain, but I get the c drive
instead. In both cases it asks for the password and I give it.
Windows version is 20h2 and samba version is 4.13.4.
Thanks in advance for any suggestions.
--
Your life is like a penny. You're going to lose it. The question is:
How do
you spend it?
John Covici wb2una
covici@ccs.covici.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] problem mounting windows share on samba
2021-03-18 10:15 [gentoo-user] problem mounting windows share on samba John Covici
@ 2021-03-18 12:10 ` Hund
2021-03-18 12:12 ` Hund
2021-03-18 15:48 ` [gentoo-user] " Grant Edwards
2 siblings, 0 replies; 5+ messages in thread
From: Hund @ 2021-03-18 12:10 UTC (permalink / raw
To: gentoo-user
On March 18, 2021 11:15:18 AM GMT+01:00, John Covici <covici@ccs.covici.com> wrote:
>Hi. I have a strange problem mounting a windows share on my gentoo
>box. I have two windows disks that I can share c and d drive. If I
>write
>mount.smb3 //ccs2/c the c drive is mounted. If I say mount.smb3
>//ccs2/d the system does not complain, but I get the c drive
>instead. In both cases it asks for the password and I give it.
>
>Windows version is 20h2 and samba version is 4.13.4.
>
>Thanks in advance for any suggestions.
>
Linux doesn't care about "C:/" or anything. Just mount it like you would with any other disk in a Linux based operating system:
```
# mount /dev/sdb1 /mnt/windows
```
Or whatever device name it is and wherever you may want to mount it.
--
Hund
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] problem mounting windows share on samba
2021-03-18 10:15 [gentoo-user] problem mounting windows share on samba John Covici
2021-03-18 12:10 ` Hund
@ 2021-03-18 12:12 ` Hund
2021-03-18 15:48 ` [gentoo-user] " Grant Edwards
2 siblings, 0 replies; 5+ messages in thread
From: Hund @ 2021-03-18 12:12 UTC (permalink / raw
To: gentoo-user
On March 18, 2021 11:15:18 AM GMT+01:00, John Covici <covici@ccs.covici.com> wrote:
>Hi. I have a strange problem mounting a windows share on my gentoo
>box. I have two windows disks that I can share c and d drive. If I
>write
>mount.smb3 //ccs2/c the c drive is mounted. If I say mount.smb3
>//ccs2/d the system does not complain, but I get the c drive
>instead. In both cases it asks for the password and I give it.
>
>Windows version is 20h2 and samba version is 4.13.4.
>
>Thanks in advance for any suggestions.
>
Just ignore my previous message. I read your message a bit fast. I thought it was a local device.
My apologies!
--
Hund
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-user] Re: problem mounting windows share on samba
2021-03-18 10:15 [gentoo-user] problem mounting windows share on samba John Covici
2021-03-18 12:10 ` Hund
2021-03-18 12:12 ` Hund
@ 2021-03-18 15:48 ` Grant Edwards
2021-03-18 16:36 ` John Covici
2 siblings, 1 reply; 5+ messages in thread
From: Grant Edwards @ 2021-03-18 15:48 UTC (permalink / raw
To: gentoo-user
On 2021-03-18, John Covici <covici@ccs.covici.com> wrote:
> Hi. I have a strange problem mounting a windows share on my gentoo
> box. I have two windows disks that I can share c and d drive. If I
> write
> mount.smb3 //ccs2/c the c drive is mounted. If I say mount.smb3
> //ccs2/d the system does not complain, but I get the c drive
> instead. In both cases it asks for the password and I give it.
>
> Windows version is 20h2 and samba version is 4.13.4.
This is probably irrelevant, but I thought everybody switched from the
samba client to cifs many years ago. Is there some particular reason
you're using samba instead of the kernel's cifs support?
--
Grant
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Re: problem mounting windows share on samba
2021-03-18 15:48 ` [gentoo-user] " Grant Edwards
@ 2021-03-18 16:36 ` John Covici
0 siblings, 0 replies; 5+ messages in thread
From: John Covici @ 2021-03-18 16:36 UTC (permalink / raw
To: gentoo-user
On Thu, 18 Mar 2021 11:48:46 -0400,
Grant Edwards wrote:
>
> On 2021-03-18, John Covici <covici@ccs.covici.com> wrote:
>
> > Hi. I have a strange problem mounting a windows share on my gentoo
> > box. I have two windows disks that I can share c and d drive. If I
> > write
> > mount.smb3 //ccs2/c the c drive is mounted. If I say mount.smb3
> > //ccs2/d the system does not complain, but I get the c drive
> > instead. In both cases it asks for the password and I give it.
> >
> > Windows version is 20h2 and samba version is 4.13.4.
>
> This is probably irrelevant, but I thought everybody switched from the
> samba client to cifs many years ago. Is there some particular reason
> you're using samba instead of the kernel's cifs support?
>
> --
> Grant
>
>
>
I was using the samba client, but I also tried the cifs using
mount.cifs with the same result.
--
Your life is like a penny. You're going to lose it. The question is:
How do
you spend it?
John Covici wb2una
covici@ccs.covici.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-03-18 16:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-18 10:15 [gentoo-user] problem mounting windows share on samba John Covici
2021-03-18 12:10 ` Hund
2021-03-18 12:12 ` Hund
2021-03-18 15:48 ` [gentoo-user] " Grant Edwards
2021-03-18 16:36 ` John Covici
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox