Displaying 20 results from an estimated 3000 matches similar to: "Need Help"
1999 Aug 25
2
Change passwd via web
hi all,
I am looking for a cgi script which can be used to change the smbpasswd via
web browser. Anyone done this already ?. Any pointers will he appreciated
much.
Thanks
rakesh
--------------------------------------------------------------------
Rakesh Jain Systems Administrator, MIS Dept
BEA Systems, Inc. voice: +1-972-943-5135
4965, Preston Park Blvd fax: +1-972-943-5111
Suite 500
2015 Feb 27
5
[PATCH 0/4] firstboot: assorted enhancements
This patchset attempts to address a number of shortcomings in the
firstboot infrastructure I came across while working with v2v conversion
of various Windows VMs.
Roman Kagan (4):
firstboot: consolidate line ending conversion
firstboot: enhance firstboot driver script for Windows
firstboot: make script naming descriptive
convert_windows: split firstboot into steps
2023 Mar 09
2
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
On Thu, Mar 09, 2023 at 03:47:10PM +0200, Andrey Drobyshev wrote:
> On 3/8/23 22:52, Richard W.M. Jones wrote:
> > On Wed, Mar 08, 2023 at 08:05:35PM +0200, Andrey Drobyshev wrote:
> >> During conversion we copy the necessary drivers to the directory
> >> "%systemroot%\Drivers\Virtio", adding it to the DevicePath registry
> >> value. As documented in
2020 Mar 02
2
[PATCH 0/1] Delay installation of QEMU-GA
This is a replacement for previously posted patch "Delay firstboot scripts to
some later time":
https://www.redhat.com/archives/libguestfs/2019-November/msg00134.html
Instead of delaying all the firstboot scripts we just delay the QEMU-GA
installation that we know is problematic. I will possibly send a similar patch
for RHEV-APT installation later.
Tom?? Golembiovsk? (1):
windows:
2023 Mar 16
3
[V2V PATCH v4 0/2] convert_windows: add firstboot script to install drivers with pnputil
While messing around this script, I added one more tiny patch making
wait-pnp log its output into the common log.txt file, as suggested by
Richard here:
https://listman.redhat.com/archives/libguestfs/2023-March/031023.html
Discussion on v3:
https://listman.redhat.com/archives/libguestfs/2023-March/031070.html
v3 -> v4:
* Remove unneeded line break from the script;
* Add another small
2009 Sep 04
2
[LLVMdev] Error in Hello World Pass
Hi,
I am trying to compile the Hello World pass (described at
http://llvm.org/docs/WritingAnLLVMPass.html#basiccode) in an LLVM Project
and I get an error, 'no match for ‘operator<<’ at line
llvm::cerr << "*Hello: *" << F.getName() << "\n";
But when I looked up in the LLVM API Documentation, I think "<<"
operator is not overloaded
2016 Sep 01
3
[PATCH v2 0/2] v2v:windows: prevent conflicts with PnP on firstboot
Wait for driver installations fired by the PnP manager to complete
before running firstboot scripts.
The first patch is a minor refactoring to pave the way for the second
patch. The latter contains the bulk of the changes as well as the
description of the idea.
Roman Kagan (2):
v2v:windows: factor out getting CurrentControlSet
v2v:windows: prevent conflicts with PnP on firstboot
---
v1
2020 Mar 03
2
[PATCH v3] windows: delay installation of qemu-ga MSI
Instead of running firstboot script during early boot schedule a task
delayed for 2 minutes.
During the first boot, after virt-v2v conversion, Windows installs the
drivers injected by virt-v2v. When this installation is finished
Windows enforces some kind of internal reboot. This unfortunately
terminates any running firstboot scripts thus killing the installation
of qemu-ga MSI.
This is just a
2023 Mar 08
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
On Wed, Mar 08, 2023 at 08:05:35PM +0200, Andrey Drobyshev wrote:
> During conversion we copy the necessary drivers to the directory
> "%systemroot%\Drivers\Virtio", adding it to the DevicePath registry
> value. As documented in [1], this should be enough for Windows to find
> device drivers and successfully install them.
>
> However, it doesn't always happen.
2005 Dec 27
1
Rails/Ajax question from a newbie (to both)
I''m trying to get a Rico LiveGrid working, and I am a bit stuck on how to
accomplish this.
I have a page that successfully queries a controller and updates a <div>
containing a table. I have two
versions of the action; one uses the render_partial to return a rendered
version of that table, and the
other returns an XML-RPC document, and this is where I hit a snag.
The Rico LiveGrid
2009 Sep 10
3
[LLVMdev] Finding call points to a function
Hi,
I am writing an LLVM Pass and I would like to know how would I do the
following:
1. I have a function foo, and I need to get all the call points calling this
function in each Function of the Module. The only way I can think of is to
iterate over the BasicBlocks of each Function, look for all the Call
Instructions and check if the called function is foo. I was wondering if
there is any other
2023 Mar 09
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
On 3/8/23 22:52, Richard W.M. Jones wrote:
> On Wed, Mar 08, 2023 at 08:05:35PM +0200, Andrey Drobyshev wrote:
>> During conversion we copy the necessary drivers to the directory
>> "%systemroot%\Drivers\Virtio", adding it to the DevicePath registry
>> value. As documented in [1], this should be enough for Windows to find
>> device drivers and successfully
2023 Mar 09
1
[V2V PATCH v2 0/1] convert_windows: add firstboot script to install drivers with pnputil
v1 discussion:
https://listman.redhat.com/archives/libguestfs/2023-March/031001.html
v1 -> v2:
* Omit redirecting output to a separate log with "%~dpn0.log".
Andrey Drobyshev (1):
convert_windows: add firstboot script to install drivers with pnputil
convert/convert_windows.ml | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
--
2.31.1
2023 Mar 08
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
During conversion we copy the necessary drivers to the directory
"%systemroot%\Drivers\Virtio", adding it to the DevicePath registry
value. As documented in [1], this should be enough for Windows to find
device drivers and successfully install them.
However, it doesn't always happen. Commit 73e009c04 ("v2v: windows:
Document use of pnputil to install drivers.") describes
2023 Mar 08
1
[V2V PATCH 0/1] convert_windows: add firstboot script to install drivers with pnputil
I've been experiencing problem with the drivers not always being installed.
This patch merely implements the solution offered by Richard in the
commit 73e009c04 ("v2v: windows: Document use of pnputil to install
drivers."). The solution wasn't implemented back then, but rather added
merely as a comment. Thus I wonder is there some issues which it may
cause?
The most obvious
2001 Dec 20
1
Samba Returns Access Denied
I have Linux Server 7.0 running Samba with 1 nic ip 199.168.1.2 and the
Win2k server with 2 Nic one having the DHCP ip from the DSL and other being
my internal 199.168.1.1, Now I installed samba and setup a smb.conf file
smbd and nmbd runs fine also testparam doe's not show any errors and when I
run the smbclient on the same machine It's authenticates fine, but when I
try to access
2023 Mar 13
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
On 3/9/23 14:48, Richard W.M. Jones wrote:
> On Thu, Mar 09, 2023 at 03:47:10PM +0200, Andrey Drobyshev wrote:
>> On 3/8/23 22:52, Richard W.M. Jones wrote:
>>> On Wed, Mar 08, 2023 at 08:05:35PM +0200, Andrey Drobyshev wrote:
>>>> During conversion we copy the necessary drivers to the directory
>>>> "%systemroot%\Drivers\Virtio", adding it to
2012 Aug 07
1
Samba User authentication from external LDAP server
I need to authenticate samba users from external LDAP server, tried a
few options but when I change LDAP password, the samba password does
not change. Is it possible to do away with Samba password and only use
LDAP password
Rakesh
2013 Oct 31
6
need help !!!
Hi,
I am using puppet 2.7.20 server on linux and windows client with same
version of puppet.
Until recently everything was working fine but lately I have started
getting the error below
[0m
[0;32minfo: Caching catalog for node_windows [0m
[0;37mdebug: Puppet::Type::Exec::ProviderShell: feature posix is
missing [0m
[0;37mdebug: Puppet::Type::Exec::ProviderPosix: feature posix is
missing [0m
2023 Mar 09
1
[V2V PATCH v2 1/1] convert_windows: add firstboot script to install drivers with pnputil
During conversion we copy the necessary drivers to the directory
"%systemroot%\Drivers\Virtio", adding it to the DevicePath registry
value. As documented in [1], this should be enough for Windows to find
device drivers and successfully install them.
However, it doesn't always happen. Commit 73e009c04 ("v2v: windows:
Document use of pnputil to install drivers.") describes