Displaying 20 results from an estimated 25 matches for "os_major".
2024 Mar 04
2
Almost all print driver uploads fail
Hi,
I'm working on a minimal print server setup for Windows 10/11 x64 clients.
No domain, no Kerberos, no LDAP, only a few local users on a standalone
server with some shared CUPS printers.
Printing works well.
After setting 'spoolss: os_major = 6' and 'spoolss: os_minor = 1' The
*Kyocera KX Universal Driver* has uploaded well. But, that's all.
No success uploading other print drivers, like *HP Universal Printing
PCL6* and *Canon Generic Plus PCL6
*All of them are failing with messages like:
"Unable to instal...
2015 Aug 10
0
[PATCH 3/4] v2v: copy virtio drivers without guestfs handle leak
...virtio_drivers driverdir =
(* Copy the matching drivers to the driverdir. *)
-
- let drivers = find_virtio_win_drivers virtio_win in
-
- (* Filter out only drivers matching the current guest. *)
- let drivers =
- List.filter (
- fun { vwd_os_arch = arch;
- vwd_os_major = os_major; vwd_os_minor = os_minor;
- vwd_os_variant = os_variant } ->
- arch = inspect.i_arch &&
- os_major = inspect.i_major_version &&
- os_minor = inspect.i_minor_version &&
- (match os_variant with
- | Vwd_client ->...
2015 Oct 13
2
[PATCH v2 2/4] v2v: copy virtio drivers without guestfs handle leak
...virtio_drivers driverdir =
(* Copy the matching drivers to the driverdir. *)
-
- let drivers = find_virtio_win_drivers virtio_win in
-
- (* Filter out only drivers matching the current guest. *)
- let drivers =
- List.filter (
- fun { vwd_os_arch = arch;
- vwd_os_major = os_major; vwd_os_minor = os_minor;
- vwd_os_variant = os_variant } ->
- arch = inspect.i_arch &&
- os_major = inspect.i_major_version &&
- os_minor = inspect.i_minor_version &&
- (match os_variant with
- | Vwd_client ->...
2018 Sep 17
5
Kyocera P6230cdn driver installation on print server fails
...after files have been copied to the print$ share into x64/{...} or
W32X86/{...} directories. I can't find anything enlightening in the
samba log files (low log level shows nothing helpful, high log level
shows to much) and eventvwr (AFAIR Event ID 215 which brings nothing
helpful). I have set os_major/minor to 6/0. I don't believe, that
rights are missing.
Any ideas?
Thanks
Matthias
2010 Dec 07
0
[PATCH]: A daemon to support HyperV KVP functionality
...Pv6,
+ OSBuildNumber,
+ OSName,
+ OSMajorVersion,
+ OSMinorVersion,
+ OSVersion,
+ ProcessorArchitecture
+};
+
+/*
+ * End of shared definitions.
+ */
+
+static char kvp_send_buffer[4096];
+static char kvp_recv_buffer[4096];
+static struct sockaddr_nl addr;
+
+static char os_name[100];
+static char os_major[50];
+static char os_minor[50];
+static char processor_arch[50];
+static char os_build[100];
+static char *lic_version;
+
+void kvp_get_os_info(void)
+{
+ FILE *file;
+ char *eol;
+ struct utsname buf;
+
+ uname(&buf);
+ strcpy(os_build, buf.release);
+ strcpy(processor_arch, buf.machine);
+
+...
2010 Dec 07
0
[PATCH]: A daemon to support HyperV KVP functionality
...Pv6,
+ OSBuildNumber,
+ OSName,
+ OSMajorVersion,
+ OSMinorVersion,
+ OSVersion,
+ ProcessorArchitecture
+};
+
+/*
+ * End of shared definitions.
+ */
+
+static char kvp_send_buffer[4096];
+static char kvp_recv_buffer[4096];
+static struct sockaddr_nl addr;
+
+static char os_name[100];
+static char os_major[50];
+static char os_minor[50];
+static char processor_arch[50];
+static char os_build[100];
+static char *lic_version;
+
+void kvp_get_os_info(void)
+{
+ FILE *file;
+ char *eol;
+ struct utsname buf;
+
+ uname(&buf);
+ strcpy(os_build, buf.release);
+ strcpy(processor_arch, buf.machine);
+
+...
2010 Dec 08
0
No subject
...Pv6,
+ OSBuildNumber,
+ OSName,
+ OSMajorVersion,
+ OSMinorVersion,
+ OSVersion,
+ ProcessorArchitecture
+};
+
+/*
+ * End of shared definitions.
+ */
+
+static char kvp_send_buffer[4096];
+static char kvp_recv_buffer[4096];
+static struct sockaddr_nl addr;
+
+static char os_name[100];
+static char os_major[50];
+static char os_minor[50];
+static char processor_arch[50];
+static char os_build[100];
+static char *lic_version;
+
+void kvp_get_os_info(void)
+{
+ FILE *file;
+ char *eol;
+ struct utsname buf;
+
+ uname(&buf);
+ strcpy(os_build, buf.release);
+ strcpy(processor_arch, buf.machine);
+
+...
2010 Dec 08
0
No subject
...Pv6,
+ OSBuildNumber,
+ OSName,
+ OSMajorVersion,
+ OSMinorVersion,
+ OSVersion,
+ ProcessorArchitecture
+};
+
+/*
+ * End of shared definitions.
+ */
+
+static char kvp_send_buffer[4096];
+static char kvp_recv_buffer[4096];
+static struct sockaddr_nl addr;
+
+static char os_name[100];
+static char os_major[50];
+static char os_minor[50];
+static char processor_arch[50];
+static char os_build[100];
+static char *lic_version;
+
+void kvp_get_os_info(void)
+{
+ FILE *file;
+ char *eol;
+ struct utsname buf;
+
+ uname(&buf);
+ strcpy(os_build, buf.release);
+ strcpy(processor_arch, buf.machine);
+
+...
2010 Dec 17
0
[PATCH 4/4] Staging: hv: Add a user-space daemon to support key/value pair (KVP)
...Pv6,
+ OSBuildNumber,
+ OSName,
+ OSMajorVersion,
+ OSMinorVersion,
+ OSVersion,
+ ProcessorArchitecture
+};
+
+/*
+ * End of shared definitions.
+ */
+
+static char kvp_send_buffer[4096];
+static char kvp_recv_buffer[4096];
+static struct sockaddr_nl addr;
+
+static char os_name[100];
+static char os_major[50];
+static char os_minor[50];
+static char processor_arch[50];
+static char os_build[100];
+static char *lic_version;
+
+void kvp_get_os_info(void)
+{
+ FILE *file;
+ char *eol;
+ struct utsname buf;
+
+ uname(&buf);
+ strcpy(os_build, buf.release);
+ strcpy(processor_arch, buf.machine);
+
+...
2010 Dec 17
0
[PATCH 4/4] Staging: hv: Add a user-space daemon to support key/value pair (KVP)
...Pv6,
+ OSBuildNumber,
+ OSName,
+ OSMajorVersion,
+ OSMinorVersion,
+ OSVersion,
+ ProcessorArchitecture
+};
+
+/*
+ * End of shared definitions.
+ */
+
+static char kvp_send_buffer[4096];
+static char kvp_recv_buffer[4096];
+static struct sockaddr_nl addr;
+
+static char os_name[100];
+static char os_major[50];
+static char os_minor[50];
+static char processor_arch[50];
+static char os_build[100];
+static char *lic_version;
+
+void kvp_get_os_info(void)
+{
+ FILE *file;
+ char *eol;
+ struct utsname buf;
+
+ uname(&buf);
+ strcpy(os_build, buf.release);
+ strcpy(processor_arch, buf.machine);
+
+...
2015 Aug 10
15
[PATCH 0/4] v2v: simplify driver copying from virtio-win iso
Libguestfs supports passing an ISO image as a source of virtio windows
drivers to v2v.
That support, however, looks too heavy-weight: in order to access those
drivers, a separate guestfs handle is created (and thus a new emulator
process is started), which runs until v2v completes.
This series attempts to make it simpler and lighter-weight, by making
the relevant code more local, and by
2018 Sep 17
2
Kyocera P6230cdn driver installation on print server fails
First of all, I forgot to mention, that I have Debian 9 with standard
Samba 4.5.
Modifying the oemsetup.inf should not be neccessary as I have set the
os_major/minor to 6/0.
The generic driver which comes with Windows is a Type 4 which should
not be supported by samba as far as I read.
I tried the van-belle driver. Same situation.
I have found samba 4.8 for stretch at http://apt.van-belle.nl. I think
I will try that one (there is no samba in backports...
2015 Oct 14
5
[PATCH v3 0/3] v2v: simplify driver copying from virtio-win iso
Libguestfs supports passing an ISO image as a source of virtio windows
drivers to v2v.
This series attempts to make it simpler and better scoped.
Roman Kagan (3):
v2v: consolidate virtio-win file copying
v2v: copy virtio drivers without guestfs handle leak
v2v: drop useless forced gc
---
changes since v2:
- drop patch 4 (reuse of the master guestfs handle for hot-adding the
ISO image)
2015 Jun 23
0
[PATCH v2] v2v: Support loading virtio-win drivers from virtio-win.iso (RHBZ#1234351).
...in8.1")
- | "x86_64", 6, 3, "Server" ->
- Some (virtio_win_dir // "drivers/amd64/Win2012R2")
+ (* Filter out only drivers matching the current guest. *)
+ let drivers =
+ List.filter (
+ fun { vwd_os_arch = arch;
+ vwd_os_major = os_major; vwd_os_minor = os_minor;
+ vwd_os_variant = os_variant } ->
+ arch = inspect.i_arch &&
+ os_major = inspect.i_major_version &&
+ os_minor = inspect.i_minor_version &&
+ (match os_variant with
+ | Vwd_client ->...
2015 Jun 23
2
[PATCH v2] v2v: Support loading virtio-win drivers from
In version 2:
- Add a bunch of debugging output.
- Recognize Windows Vista, Windows 10.
- Compare driver paths case-insensitively.
2019 Apr 08
0
Unable to upload printer drivers
...machine. What I see now is that just at the beginning of
> the upload the
> > following error is in within the PrintService log:
> >
> > [Eventinformation]
> > Maybe that helps getting to the root cause of the problem?
> just some follow up. In the configuration the os_major, os_minor and
> os_build numbers are set to match Windows Server
> 2008R2(6.1.7601) as one
> of my drivers needs those settings. That seems to result in the Not
> supported-error. When I change the Version back to their
> defaults (thus
> Windows Server 2003) I am able to up...
2015 Jun 22
2
[PATCH] v2v: Support loading virtio-win drivers from virtio-win.iso (RHBZ#1234351).
...in8.1")
- | "x86_64", 6, 3, "Server" ->
- Some (virtio_win_dir // "drivers/amd64/Win2012R2")
+ (* Filter out only drivers matching the current guest. *)
+ let drivers =
+ List.filter (
+ fun { vwd_os_arch = arch;
+ vwd_os_major = os_major; vwd_os_minor = os_minor;
+ vwd_os_variant = os_variant } ->
+ arch = inspect.i_arch &&
+ os_major = inspect.i_major_version &&
+ os_minor = inspect.i_minor_version &&
+ (match os_variant with
+ | Vwd_client ->...
2018 Sep 17
0
Kyocera P6230cdn driver installation on print server fails
...ally at van-belle it is 4.6.7 (or 4.6.9) for stretch.
On Mon, Sep 17, 2018 at 06:50:38PM +0200, Matthias via samba wrote:
> First of all, I forgot to mention, that I have Debian 9 with standard
> Samba 4.5.
>
> Modifying the oemsetup.inf should not be neccessary as I have set the
> os_major/minor to 6/0.
>
> The generic driver which comes with Windows is a Type 4 which should
> not be supported by samba as far as I read.
>
> I tried the van-belle driver. Same situation.
>
> I have found samba 4.8 for stretch at http://apt.van-belle.nl. I think
> I will try...
2019 Apr 08
4
Unable to upload printer drivers
Hi,
Am 25.03.2019 um 14:12 schrieb Marco Gaiarin via samba:
> [...]
> Some drivers there's no way to load (for example, some samsung MFP).
> Some other load, but you have to do 2-5 try before they work.
I did now try many different drivers from different vendors none of them
worked thus I think there is something else wrong.
I then did some more tests, trying to find anything being
2019 Apr 10
0
Unable to upload printer drivers
...y first guess here is, incorrect folder rights, what is in
> >> the windows event logs?
> >> If I leave the spoolss versions unchanged I see the error from the
> >> attached error1.xml.
> >>
> >> If I change the spoolss versions to:
> >> spoolss:os_major = 6
> >> spoolss:os_minor = 1
> >> spoolss:os_build = 7601
> >> I receive the errors from error2.xml
> >>
> >> I'm currently running Windows 10-1709 on my client machine. I
> >> will also
> >> try it with 1803 to see if that hast so...