similar to: Problem with FlexLM licensing

Displaying 20 results from an estimated 1600 matches similar to: "Problem with FlexLM licensing"

2015 Feb 12
7
Cronjob and sudo
I need to remove empty files out of a directory that are over 6 hours old so I created this script and put it in cron.hourly. #!/bin/sh cd /var/list sudo -u matt find /var/list -mmin +360 -empty -user matt -exec rm {} \; I want to run it as matt rather than root for just an added bit of safety. Problem is I get this. "sudo: sorry, you must have a tty to run sudo" Is there another
2012 Sep 27
1
rename network card device /dev/p3p2 to /dev/eth0
Hello, My name is Manfred. I have to install a flexlm license server on a pc with centos 6.3 as operating system. This machine contains two network cards. An Ethernet card and a wifi card. For the Ethernet card centos generates a device called p3p2. For the wifi card centos generates a device called wlan0. In this configuration the flexlm license program called lmgrd only got the mac address of
2008 Jul 10
4
Re: Problem with FlexLM licensing
I have the same problem. copying the dll to system32 and/or win32xoem don't fix this problem... :(
2008 Oct 22
2
LMTools
Hi guys. I need some help to try to make a license server work on Wine. I am trying to port some engineering applications to linux via Wine. If I can make it works, I can prove to my boss that we can get out of windows (finally). I am trying to use softwares like i-Deas, Unigraphics and HyperWorks under Wine in my Ubuntu distro. My problem starts in license, that uses the LMTools to get up.
2008 Jul 16
2
Re: Problem with FlexLM licensing
Where do you get your Linux FlexLM server? It's not that you are really deciding when you buy a software.
2009 Jul 21
6
ModelSim
I installed ModelSim with wine but it doesn't function? Someone has the answers? Thank you
2001 Sep 06
1
Running soft with flexlm MAC based license under wine?
Hello, When I try to run the FlexLM protected (with NIC MAC based licecnse) software under wine (Linux) I get the following messages: fixme:win32:DeviceIoControl Unimplemented control 256 for VxD device VNETBIOS fixme:win32:DeviceIoControl Unimplemented control 256 for VxD device VNETBIOS fixme:win32:DeviceIoControl Unimplemented control 256 for VxD device VNETBIOS And finally the program
2011 May 18
2
Request to Edit Wiki
Hello, I would like to contribute to the Wiki. A few things right off - I'd like to add to the "Yum and RPM Tricks" section and would also like to add information and tips on setting up CentOS machines for FPGA (Quartus/ISE/Modelsim) development. Also, I use CentOS on a day to day basis for development, and would be happy to document any useful tips I come across in the future.
2008 Jul 16
0
Re: Problem with FlexLM licensing
Thank you very much! that's great!! I made a bookmark, I hope I will be able to digest the instructions someday because the problems with the license manager are the last thing preventing the use of my software in a productive situation (even if not perfect). I guess Suse Linux Entreprise Desktop could match the entry for Suse Linux Enterprise Server.
2011 Sep 06
2
mac_int() does not call HMAC_CTX_init()
Last year I sent the email below describing a bug in openssh 5.6p1. I just noticed this bug still exists in 5.9p1. Probably my earlier email was treated as spam because it was in HTML format. -- Robert Dugal Team Lead SSL & PKI Group Certicom Corp. A Subsidiary of Research In Motion 4701 Tahoe Blvd., Building A Mississauga, ON L4W 0B5
2011 Sep 08
1
ssh_SSLeay_add_all_algorithms()
I am confused on how ssh_SSLeay_add_all_algorithms() get used in the ssh applications for openssh-5.7p1 and later releases. I don't see any of the applications making calls to ssh_SSLeay_add_all_algorithms(). There is a macro that redefines SSLeay_add_all_algorithms() to ssh_SSLeay_add_all_algorithms() but I don't see any code calling SSLeay_add_all_algorithms(). In openssh-5.6p1 and
2023 Mar 13
1
Versioning Rtools ARP entries
Hi, If I am not mistaken, all Rtools 4.2 (and 4.3) revisions have the same ARP [1] entries, i.e. all report version 4.2.0.1 (or 4.3.0.1). This makes it difficult to determine the installed version (is it possible to determine the installed revision?) and impossible for tools like winget [2] to update Rtools to the latest revision, AFAICT. Would it be possible to track the version in the
1999 Apr 28
3
License manager
Has anyone successfully incorporated a Win95 app that uses FlexLM license manager on a Samba file system. I would be extremely interested in talking with you as we are trying to install Parametric Technology's ProEngineer on our Samba file server. We do have a copy of the Unix version of the license manager, but I am not sure how I can get the Win95 client to talk to it. Any and all
2016 Dec 14
1
testing
Regarding the earlier mail about [xapian-core-1.2.24] /tests/api_replicate.cc compiled under MSYS/MINGW (g++ 5.3.0). It seems likely that the error was specific to certain g++ versions. https://github.com/mxe/mxe/issues/1448 Eric at ERICS-NETBOOK /c/WORK $ cat test.cpp #include <stdlib.h> int setenv(const char *name, const char *value, int overwrite) { return _putenv_s(name, value); }
2004 Mar 18
1
latest openssl vulnerability
Is it true that (dynamic) binaries are vulnerable if and only if they are linked with libssl.so.3, not with libcrypt or libcrypto? Thanks for your help. Andrew.
2008 Nov 15
4
fixme:ntdll - What I supposed to do to solve this problem?
When I am trying to run an application under wine, I am getting this error in console. Code: fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias 180, std (d/m/y): 17/02/2008, dlt (d/m/y): 19/10/2008 What is this and what I can do to solve it? The application is an license manager (lmgrd). I am using Ubuntu 8.10 x64 and wine is 1.1.8 []'s
2012 Oct 26
1
Is there any way of weighting individual data points in a logistic regression
Dear all. Apologies if I am asking a stupid question, but I have been unable to find a solution so far. I would like to run a logistic regression in which individual data points are assigned different weights (related to my confidence in their validity). These individual observations are binary (success/failure). My intuition was to use the "weights" option in the vlm function.
2015 Feb 12
0
Cronjob and sudo
On Thu, February 12, 2015 12:32 pm, Matt wrote: > I need to remove empty files out of a directory that are over 6 hours > old so I created this script and put it in cron.hourly. > > #!/bin/sh > cd /var/list > sudo -u matt find /var/list -mmin +360 -empty -user matt -exec rm {} \; > > I want to run it as matt rather than root for just an added bit of > safety. Problem is
2003 Jan 23
2
Question to Memdisk
Hi, I am currently working with Memdisk. I setup a floppy disk that boots DOS and performs a VLM login into a NetWare Server.
2012 Nov 21
1
driver looking for MAXIM MXE II
Hello: I have a UPS model MXE II MAXIM brand online, 3500VA 2100W. Connects to the PC by a USB 2.0 port. I wanted to use nut, but this brand is not on the list of nut drivers. lsusb returns: ... Bus 003 Device 003: ID 06DA: 0201 Phoenixtec Power Co., Ltd ... I did not find this manufacturer in the driver list. Anyone know if you can have compatibility with other make and model of UPS. With