Tag Archives: PASS

factory reset NX8V2

By skywise

I currently have a NX8e but I have to update it to an NX8V2 in order to use a piece of monitoring equipment.
I have a NX8V2 panel along with a bunch of other goodies I plan to put into the house while I’m at it.
The problem is that I don’t know the codes for the NX8V2.
It’s currently disarmed and only complaining about it’s clock on my test bench.
I have a 584 HA module so I can talk to it serially and I have DL900 V4 on a laptop.
(I tried V3 as well but it complained about signal level??, windows 7 BTW)
When I try to connect with the panel, it thinks it’s a R128.. (Aussie 8v2?) and when I reset the customer to R128 it complains about not being able to get any params.
Error Reading data from module 0…..83″
None of the parts have been together before (NX8V2, 148RF keypad, or NX584E)

I did manage to accidentally arm it but just as luckily managed to disarm it (code 9999 is a valid user code it seems)

It’s label reads:
NX-8-V2 V1.02 74A2
SSO#208036627
ST#02 SQ#0088
PASS 13:27 01-28-05

How can I do a total factory reset of the panel? I don’t care about anything inside it, just want it squeaky clean so I can begin programming it for my home.

Thanks

From: http://www.doityourself.com/forum/electronic-alarms-home-security-devices/493195-factory-reset-nx8v2.html

How to display files of server2 in server1?

By Little

hi,

i have two servers in unix. say server1 and server2. my shell script is running on server1.

In server2, there is a directory (/etc/data/) which contains some text files.

I want to write the list of filenames in server2 in a file and display the file in server1.

In short, i want to display the filenames present in server2 in server1.

i thought i can use FTP like..

Code:

ftp server2 <<FTP1
quote USER aaaa
quote PASS bbbb
cd /etc/data
Files=`ls -l | cut -c45-`
FTP1


In the aboce code i tried to populate a variable with the file names which are present in server2, but it doesnt work.

can any1 help doing this? or suggest some other method..

Thanks

…read more

Source: FULL ARTICLE at The UNIX and Linux Forums

ARIAD Announces Support of Patients with Resistant or Intolerant CML Through Its Donation to Chronic

By Business Wirevia The Motley Fool

Filed under:

ARIAD Announces Support of Patients with Resistant or Intolerant CML Through Its Donation to Chronic Disease Fund

CAMBRIDGE, Mass.–(BUSINESS WIRE)– ARIAD Pharmaceuticals, Inc. (NAS: ARIA) today announced that it had made a donation to the Chronic Disease Fund (CDF) in support of patients with chronic myeloid leukemia (CML) who are resistant or intolerant to prior therapy. CDF is an independent non-profit charitable organization that helps eligible patients with chronic diseases, cancer and other life-altering conditions obtain the life-saving medications they need. Through ARIAD‘s contribution, the organization will provide financial assistance to eligible patients with resistant or intolerant CML who require help paying their out-of-pocket expenses, including co-pays or co-insurance. CDF will determine the distribution of these funds and patient eligibility.

“Approximately 5,000 new cases of CML are diagnosed each year in the United States, and over time, many of these patients will develop resistance or intolerance to tyrosine kinase inhibitors,” said Marty Duvall, senior vice president, commercial operations at ARIAD. “ARIAD is dedicated to helping these refractory or intolerant patients receive the medications they need, and we are proud to support the CDF as it assists patients.”

In addition, ARIAD has a patient assistance and support program designed to help healthcare professionals or patients access, afford and adhere to treatment. Information on the ARIAD PASS™ program for patient assistance is available by calling 1-855-447-PASS (855-447-7277) or visiting www.ARIADPASS.com.

About ARIAD

ARIAD Pharmaceuticals, Inc., headquartered in Cambridge, Massachusetts and Lausanne, Switzerland, is an integrated global oncology company focused on transforming the lives of cancer patients with breakthrough medicines. ARIAD is working on new medicines to advance the treatment of various forms of chronic and acute leukemia, lung cancer and other difficult-to-treat cancers. ARIAD utilizes computational and structural approaches to design small-molecule drugs that overcome resistance to existing cancer medicines. For additional information, visit http://www.ariad.com or follow ARIAD on Twitter (@ARIADPharm).

ARIAD Pharmaceuticals, Inc.
For Investors:
Kendra Adams, 617-503-7028
Kendra.adams@ariad.com
or
For Media:
Liza Heapes, 617-621-2315
Liza.heapes@ariad.com

KEYWORDS:   United States  North America  Massachusetts

INDUSTRY KEYWORDS:

The article ARIAD Announces Support of Patients with Resistant or Intolerant CML Through Its Donation to Chronic Disease Fund originally appeared on Fool.com.

Try …read more
Source: FULL ARTICLE at DailyFinance

Shell : sftp autologin not working …

By scriptscript

Hi folks,

for sftp autologin, while browing in unix.com forums.. I got the below code. I tried to execute that code but no luck.

Code:

#!/bin/sh
HOST=yourservername
USER=yourusername
PASS=yourpassword
echo "sftping file ..."
lftp -u ${USER},${PASS} sftp://${HOST} <<EOF
cd /tmp
get tmpfile
bye
EOF
echo "done"


the error message is as follows

Code:

ubuntu1[johng]/mypath>sh sftp_new.sh
sftping file ...
sftp_new.sh: line 8: lftp: command not found


Could anyone please help me what went wrong….

…read more
Source: FULL ARTICLE at The UNIX and Linux Forums

Need to split a string

By adshocker

Hi,

We have a SunOS 5.10 Generic_142900-13 sun4v sparc SUNW,T5240.

I’m trying to find a way to split a string into 2 variables.

Ex:
parm1=”192.168.1.101/parent/child”

What I need to do is split the string above into:

host=”192.168.1.101″
location=”parent/child”

I saw the solution provided here http://www.unix.com/shell-programmin…tion-file.html but somehow we don’t have the -o option for grep as I keep getting illegal option –o.

The purpose of this is for a shell script already created to do an FTP function. Originally it was intended for accepting HOST, USER, PASS and FILE parameters only. Basically file goes to whatever the main directory on FTP connect. Now users are passing HOST/folder as value for HOST parameter which gives out an error now since 192.168.1.101/parent/child is not a valid HOST. And it would be a lot of work to add another parameter for LOCATION because a lot of other programs are already using this script so I’m trying to avoid this solution for now.

I’d appreciate any suggestions.

Thanks.

…read more
Source: FULL ARTICLE at The UNIX and Linux Forums