similar to: Writing an automated install script

Displaying 20 results from an estimated 1700 matches similar to: "Writing an automated install script"

2008 Jul 23
5
Is Wine supporting .tlb files
In the course of the installation of trados, I have the runtime of the installshield ISProbe.tlb failing with error 2 (not found), although it's correctly there as well as dao2535.tlb of microsoft shared (not there but I could get it from the XP installation). Questions are: Why is the first seen as not found although it's there - is this a registry problem? Are these files important
2008 Oct 15
11
Want to help Wine?
Howdy Wine users! Looking for an easy way to help Wine? There are plenty of bug reports that could use a retest in current Wine, but developers are busy fixing bugs :-). Here's a list of bugs (536) that have a download available, but haven't been checked on in the last 6 months. If you'd got time and bandwidth to kill, and want to help Wine, please test them. After testing, leave a
2008 Jun 21
3
How many votes would Trados need to get into support
Hi! How I am seeing it, the cat is biting the tail. Translators are not to technical savy and most of them will never be able to debug anything. They will not be using Wine until the software is really working on it and Mac users are not bothered, they use parallel. I could start a list with the translators I know are using Linux and just dual booting for Trados. Now to get some votes, I would
2008 May 07
2
Wine and translation (memories)
I think we will take over to finish the missing parts of the German and French translation. To do this and since I do not want to play around with the .rc format, Trados can directly process a .rc file without the next to process back and forth to another format and because for the 3-4 missing files, and since I want to remain consistent with the rest, I will create a Translation Memory under
2013 Feb 23
2
[LLVMdev] ARM assembler's syntax in clang
Hi, Jim, Why "asm" name is a horrible hack? Do you have any suggestion for cross-platform support of my ARM assembly code? Thanks! ashi On Feb 21, 2013, at 2:00 AM, Jim Grosbach <grosbach at apple.com> wrote: > You were correct the first time. That post is talking about a Windows target. Ashi is working on iOS. Underscores are normal and expected. Using an "asm" name
2010 Oct 08
23
O2CB global heartbeat - hopefully final drop!
All, This is hopefully the final drop of the patches for adding global heartbeat to the o2cb stack. The diff from the previous set is here: http://oss.oracle.com/~smushran/global-hb-diff-2010-10-07 Implemented most of the suggestions provided by Joel and Wengang. The most important one was to activate the feature only at the end, Also, got mostly a clean run with checkpatch.pl. Sunil
2008 Apr 04
1
Re: New winetricks 20080402: new verbs dotnet20, win2k, flash, m
I have no trouble to install fusion.dll regsvr fusion.dll will however only work if msvcrt70.dll is in the system32. vcrun2005 is installing properly. However it is not passing the check of the Installshield (i.e. something is not fully/correctly registered). doing the Winetrick before starting the Installshield is not changing a thing. To write a script I would have to learn programming and
2019 Feb 14
2
[PATCH] v2v: windows: save log file from rhev-apt installer
Store log from MSI installer. Log file will be located in firstboot scripts-done directory with name rhev-apt.log. The path has to be double-quoted to handle spaces in path name properly. Hopefully this can help resolve RHBZ#1584678 someday. Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- v2v/convert_windows.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git
2013 Mar 04
2
[LLVMdev] ARM assembler's syntax in clang
Hi, all. Another problem in ARM assembly: I use LDR to load an external symbol : LDR R7,=DataTable But clang gives error: unexpected token in operand to the '=', Then I change the code to: LDR R7,=DataTable The error becomes: unsupported relocation on symbol. How can I get around this in clang? Thanks in advance! On Mon, Feb 25, 2013 at 7:14 PM, Ashi <ashi08104 at
2013 Feb 25
0
[LLVMdev] ARM assembler's syntax in clang
Hi,all, I've some problem when using clang compile my ARM assembly code: 1 .qn directive In GAS, .qn directive is used to create typed and/or indexed register aliases for use in Advanced SIMD Extension (Neon) instructions.( http://sourceware.org/binutils/docs/as/ARM-Directives.html#ARM-Directives) But clang's integrated-as seems have different syntax, for example, my code: input .qn
2009 May 12
1
Power function for ratio of lognormal means: two equally valid results? [SEC=Unclassified]
Hi All This is a general stats problem that I am dealing with using R, so any help is greater appreciated. I have two lognormal distributions with means M1 and M2. If we have: H0: log(M1/M2)=0 H1: log(M1/M2) !=0 equivalent to log(M1/M2)=log(1+P) where P<0 or P>0. If we calculate the power for a value of P=0.1 or P=-0.1 (i.e. a 10% difference) and say assume SE{log(M1/M2)}=0.05, and
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
2013 Feb 01
29
cumulative sum by group and under some criteria
Thank you very much for your reply. Your code work well with this example. I modified a little to fit my real data, I got an error massage. Error in split.default(x = seq_len(nrow(x)), f = f, drop = drop, ...) : Group length is 0 but data length > 0 On Thu, Jan 31, 2013 at 12:21 PM, arun kirshna [via R] < ml-node+s789695n4657196h87@n4.nabble.com> wrote: > Hi, > Try this: >
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:
2013 Mar 06
3
[LLVMdev] ARM assembler's syntax in clang
Hi Ashi, Your first LDR is a pseudoinstruction that is supported by some tools (gas and armasm, at least), but not by LLVM. Roughly speaking, it turns into a PC-relative load from a literal pool. To do what you're trying to achieve you can write your own literal pool in your assembly. You can see some examples of this sort of thing at
2013 Mar 05
0
[LLVMdev] ARM assembler's syntax in clang
Hi, all. The previous post have a typo: problem in ARM assembly: I use LDR to load an external symbol : LDR R7,=DataTable But clang gives error: unexpected token in operand to the '=', Then I change the code to: LDR R7,DataTable The error becomes: unsupported relocation on symbol. How can I get around this in clang? My problem is actually how to load external symbol in
2008 Jun 21
9
wine only installed on linux?
Can wine only be installed on a linux platform or is there a way to download it and run it on windows xp?
2020 Mar 05
1
Re: [PATCH v3] windows: delay installation of qemu-ga MSI
On Thu, Mar 05, 2020 at 08:49:04AM +0000, Richard W.M. Jones wrote: > On Tue, Mar 03, 2020 at 03:45:49PM +0100, Tomáš Golembiovský wrote: > > 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
2003 Mar 05
8
How to draw several plots in one figure?
Hey, I want to draw several plots sequently, but have to make them dispaly in one figure. So how to achieve this? Thanks. Fred
2004 Jun 29
5
SIP->Asterisk->GnuGK->Cisco 5300
Hi all, I would like to call from SIP client to Asterisk then GnuGk, then Cisco 5300 to PSTN phone. Is this possible? I need simple config asterisk and gnugk.Can somebody help me? Ganbaa -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040629/cfe09e1e/attachment.htm