similar to: Newbie Samba question from a (lowly) Mac user

Displaying 20 results from an estimated 6000 matches similar to: "Newbie Samba question from a (lowly) Mac user"

2019 Oct 15
2
nouveau kernel module will not load on old Sony Vaio laptop with 8400M GT
is there anyone here who can help with: https://bugs.freedesktop.org/show_bug.cgi?id=111853 nouveau kernel module won't load (not available) on Sony laptop with NVIDIA G86M [GeForce 8400M GT] ID: 10de:0426 ??? -- Evolution as taught in public schools is religion, not science. Team OS/2 ** Reg. Linux User #211409 ** a11y rocks! Felix Miata *** http://fm.no-ip.com/
2006 Dec 15
6
Samba Configuration on Linux
Hi All I am trying configuring samba on my linux machine. Below is the smb.conf file. After starting the samba services (smbd and nmbd), i am not able to access the samba exported folder from my network. [global] workgroup = TEST1 hosts allow = 10.2. 127. log file = /var/log/samba/%m.log max log size = 500 security = USER encrypt passwords = yes smb passwd file = /etc/samba/smbpasswd username
2020 Feb 28
1
where to report modesetting DDX bug?
> Felix Miata wrote in https://lists.freedesktop.org/archives/nouveau/2020-February/035583.html: OS Kernel State /boot/vmlinuz timestamp >> openSUSE 15.1/kernel 4.12.14 OK 2019-12-06 Fedora 31/5.3.16 kernel OK 2019-12-13 openSUSE 15.2/5.3.16 kernel OK 2019-12-31 Tumbleweed/5.4.7 kernel OK 2020-01-08 Mageia 7/5.4.10 kernel OK 2020-01-09 Mageia 8/5.4.11 kernel OK 2020-01-13
2010 Mar 08
1
Time stamps
I am new to SAMBA and I have what I'm not even sure is an issue. I am aware of the difference in time stamps between *nix and Windows. What I don't understand is this: I used touch to modify the time stamps of a large number of files on the file server from the server side to match the time in the file name. They were video files from my Digital Video Cam and the import program used
2019 Feb 26
2
funnel shift, select, and poison
If I got poison propagation right, it's probably only by luck! Hopefully, the funnel shift bug is fixed here: https://reviews.llvm.org/rL354905 Nuno, IIUC this means that you do *not* need to change the funnel shift semantics in Alive. So I think that means we're still on track to go with John's suggestion that only select and phi can block poison? (I don't know of any
2020 Feb 28
2
where to report modesetting DDX bug?
Video and input drivers Subgroups and projects on gitlab does not list modesetting DDX, presumably because it's not packaged separately from the server. Where's the right place to report a modesetting DDX bug that manifests only on an NVidia GPU? Directly against the server https://gitlab.freedesktop.org/xorg/xserver? Here are some particulars: How can I tell whether this should be
2005 Nov 12
1
Core Audio player for OS X?
On Nov 12, 2005, at 7:59 PM, Dan Pritts wrote: > On Sat, Nov 12, 2005 at 10:29:15AM -0500, Scott C. Brown 02 wrote: >> There are a few flac players on OS X now, but none (at least none >> that i know >> of) seem to use Core Audio. So they all freak out if i try to >> play a 24/96 >> file. > > Without even worrying about your 24/96 issue, which OSX flac
2013 Aug 09
1
[CIFS] mount error(13): Permission denied
This is from mount <mountpoint> on openSUSE 13.1m3 running 3.10.1 desktop kernel. The mountpoint and fstab entries are identical and working in openSUSE 12.3 on same system. I just spent several hours on IRC and elsewhere trying to figure this out before thinking to try booting something other than 13.1. :-( Fstab entry (redacted): //HOST/share /mountpoint cifs
2020 Apr 23
2
CIFS VFS: in dmesg when Linux accesses eComStation's (OS/2) FAT filesystem shares
Items in dmesg when FAT share's are accessed from web browser: CIFS VFS: bogus file nlink value 0 When accessed from FC/L (OFM (orthodox filemanager)): CIFS VFS: illegal date, month 0 day: 0 When the share is initially mounted: CIFS: Attempting to mount //hostname/E Use of the less secure dialect vers=1.0 is not recommended unless required for access to very old servers CIFS VFS: Send error
2019 Feb 25
2
funnel shift, select, and poison
Don't we need to distinguish funnel shift from the more specific rotate? I'm not seeing how rotate (a single input op shifted by some amount) gets into trouble like funnel shift (two variables concatenated and shifted by some amount). Eg, if in pseudo IR we have: %funnel_shift = fshl %x, %y, %sh ; this is problematic because either x or y can be poison, but we may not touch the poison when
2019 Feb 25
3
funnel shift, select, and poison
We have these transforms from funnel shift to a simpler shift op: // fshl(X, 0, C) -> shl X, C // fshl(X, undef, C) -> shl X, C // fshl(0, X, C) -> lshr X, (BW-C) // fshl(undef, X, C) -> lshr X, (BW-C) These were part of: https://reviews.llvm.org/D54778 In all cases, one operand must be 0 or undef and the shift amount is a constant, so I think these are safe.
2018 Jan 26
0
RFC: Using link-time optimization to eliminate retpolines
Wouldn't a branch funnel open the door to a type 1 attack? E.g. if the code looks like this, then a branch funnel basically turns into a standard type 1 pattern AFAICT: struct Base { virtual int f(long) = 0; }; struct A : Base { int f(long x) override { return 0; }; }; struct B : Base { int f(long x) override { // As in listing 1 in
2020 Apr 24
2
CIFS VFS: in dmesg when Linux accesses eComStation's (OS/2) FAT filesystem shares
Jeremy Allison via samba composed on 2020-04-23 09:24 (UTC-0700): > On Thu, Apr 23, 2020 at 02:59:18AM -0400, Felix Miata via samba wrote: >> Items in dmesg when FAT share's are accessed from web browser: >> CIFS VFS: bogus file nlink value 0 > nlink should never be zero. If an SMB server > returns that, then the CIFSFS client will have > to fake it to 1 at least.
2020 Apr 29
2
CIFS VFS: in dmesg when Linux accesses eComStation's (OS/2) FAT filesystem shares
Jeremy Allison via samba composed on 2020-04-24 11:13 (UTC-0700): > On Fri, Apr 24, 2020 at 04:31:53AM -0400, Felix Miata via samba wrote: >> Jeremy Allison via samba composed on 2020-04-23 09:24 (UTC-0700): >> >> CIFS: Attempting to mount //hostname/E >> >> Use of the less secure dialect vers=1.0 is not recommended unless required for >> >> access
2018 Jan 26
1
RFC: Using link-time optimization to eliminate retpolines
Hi, Sean Silva via llvm-dev wrote: > Wouldn't a branch funnel open the door to a type 1 attack? Only if the code looks exactly as you wrote it. If I understand this correctly the problem with indirect branches is that the "gadget", the code leaking the data, could be *anywhere* in the binary, giving the attacker much more freedom. So restricting these calls to one of the
2018 Jan 24
3
RFC: Using link-time optimization to eliminate retpolines
The proposed mitigation for variant 2 of CVE-2017-5715, “branch target injection”, is to send all indirect branches through an instruction sequence known as a retpoline. Because the purpose of a retpoline is to prevent attacker-controlled speculation, we also end up losing the benefits of benign speculation, which can lead to a measurable loss of performance. We can regain some of those benefits
2005 Jun 06
2
Ogg Vorbis QuickTime Component
Hi all, I don't know if this is the place to ask about this, but I'm going to try anyway. There is an ogg-vorbis plugin for iTunes on Mac OS X that is downloadable from http://www.macupdate.com/info.php/id/14259 or http://www.versiontracker.com/dyn/moreinfo/mac/13012&mode=feedback Unfortunately, this plug-in (a Quicktime component) crashes iTunes for the latest version of
2019 Feb 25
4
funnel shift, select, and poison
There's a question about the behavior of funnel shift [1] + select and poison here that reminds me of previous discussions about select and poison [2]: https://github.com/AliveToolkit/alive2/pull/32#discussion_r257528880 Example: define i8 @fshl_zero_shift_guard(i8 %x, i8 %y, i8 %sh) { %c = icmp eq i8 %sh, 0 %f = fshl i8 %x, i8 %y, i8 %sh %s = select i1 %c, i8 %x, i8 %f ; shift amount is 0
2012 Dec 22
2
Eliminating Samba4 (as a name)
Now that Samba 4.0 has been released - a very proud moment for the whole Samba Team - I want to emphasise something that most of the team has been trying to do over the past few months, but that we haven't really announced: That is, gong forward, we are generally avoiding using the term Samba4 (and Samba3 for that matter). The reason is that while these terms were useful for a time before
2018 Jul 02
2
Rotates, once again
On 7/2/2018 3:16 PM, Sanjay Patel wrote: > I also agree that the per-element rotate for vectors is what we want for > this intrinsic. > > So I have this so far: > > declare i32 @llvm.catshift.i32(i32 %a, i32 %b, i32 %shift_amount) > declare <2 x i32> @llvm.catshift.v2i32(<2 x i32> %a, <2 x i32> %b, <2 x i32> %shift_amount) > > For