Registered member login:
Register Now
Altirigos » Deployment Solution » DS Console/Web Console » Remote PXE server used for imaging...

» Current Poll
Do you leave the Aclient enabled?
YES - 82.31%
107 Votes
NO - 17.69%
23 Votes
Total Votes: 130
You may not vote on this poll.
» Stats
Members: 9,499
Threads: 11,754
Posts: 55,314
Top Poster: Nick (4,981)
Welcome our newest member, anthony.hardy
» Online Users: 24
0 members and 24 guests
No Members online
Most users online at once 294, 06-30-2007 at 12:24 PM.
» March 2010
S M T W T F S
28 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31 123
Reply
Old 03-26-2009, 04:31 PM   #1 (permalink)
 
JeffreyJRiggs's Avatar
 
Status: Super Altiris Admin
Join Date: 02-22-2006
Location: Williamstown, NJ
Age: 37
Posts: 506


Remote PXE server used for imaging...

Ok so need some help... firm and token replacement is not working on imaging...


so here is the laydown..
I have my altiris server at site 1
it has DS, PXE on it.. and images great.
At site 2 I installed a PXE server and pointed it to DS server.

I can now pxe boot....
I took our image and copied it out to the site and renamed it so I can make sure my image is truely from there..

ok that part works too...
on my pxe server I have the directory structure as follows...

\
---Builds
-----|
---------Drivers
---------Images
---------Scripts
---------Sysprep
---------Utils

now this is linux so in the boot disk it is set as..

//ServerSite1/eXpress /mnt/ds
//ServerSite2/Images /mnt/s2ds

so for my site 2 imaging the job points to
/mnt/s2ds/Builds/Images/HII/S2HII_Gold.img

this works... so the mount point is working...

nothing else works....
trying to firm a file over, sysprep or drivers doesnt work...

but if I pull them from site 1 it works... anyone have any experience with this and what to try?

thanks
Jeff

I have a thought in the back of my head so off to try....
__________________
SQL Fundamentals 101:
SELECT * FROM dbo.User WHERE Clue > '0'
Query batch completed, 0 rows
JeffreyJRiggs is offline   Reply With Quote
Old 03-26-2009, 04:55 PM   #2 (permalink)
 
jharings's Avatar
 
Status: Super Altiris Admin
Join Date: 02-17-2005
Location: Milwaukee, Wisconsin, USA
Age: 38
Posts: 400


What does your firm script look like? You may need to explicitly define the path, or at least provide a placeholder.
__________________
Jim Harings
XCEND Group
Technical Solutions Consultant
http://xcendgroup.com
jharings is offline   Reply With Quote
Old 03-27-2009, 08:13 AM   #3 (permalink)
 
JeffreyJRiggs's Avatar
 
Status: Super Altiris Admin
Join Date: 02-22-2006
Location: Williamstown, NJ
Age: 37
Posts: 506


Quote:
Originally Posted by jharings View Post
What does your firm script look like? You may need to explicitly define the path, or at least provide a placeholder.
well I did that... I even thought I saw it as I had a path statement pointing back to the first server.... so now it has both..

here is what I have... .(modified only to remove server info)

image works
/mnt/ptds/Builds/Images/HII/PTHII_Gold.img

this does not work...

Code:
# File Injection Script
export PATH=$PATH:/mnt/ds/RDeploy/Linux:/mnt/ptds/RDeploy/Linux
# Token Replacement Task for Sysprep.inf
# ReplaceTokens /mnt/ptds/Builds/Sysprep/SYSPREP_HII.INF /mnt/ptds/temp/%COMPNAME%.inf 
Firm Copy "/mnt/ptds/temp/%COMPNAME%.inf" "prod:/sysprep/sysprep.inf"
#Firm Delete "/mnt/ds/temp/%COMPNAME%.inf"
echo 'sysprep.inf' injected ... > /dev/tty1
# Copy Aclient to machine for DS Agent install
Firm Copy "/mnt/ptds/Builds/Utils/aclient.inp" "prod:/Temp/aclient.inp"
Firm copy "/mnt/ptds/Builds/Utils/altiris-aclient-6.9.366.X86.exe" "prod:/Temp/aclient.exe"
echo AClient injected ... > /dev/tty1
 
# Set MODEL variable to product name
MODEL="%#!computer@prod_name%"
echo The Computer model for this machine is "$MODEL" > /dev/tty1
case "$MODEL" in
'OptiPlex GX620')
echo Copying Drivers for OptiPlex GX620... > /dev/tty1
Firm -recurse Copy "/mnt/ptds/Builds/Drivers/Opti_620/DRIVERS" "prod:/drivers" > /dev/tty1
;;
'OptiPlex 745')
echo Copying drivers for OptiPlex 745 ... > /dev/tty1
Firm -recurse Copy "/mnt/ptds/Builds/Drivers/Opti_745/DRIVERS" "prod:/drivers" > /dev/tty1
;;
'OptiPlex 755')
echo Copying Drivers for OptiPlex 755... > /dev/tty1
Firm -recurse Copy "/mnt/ptds/Builds/Drivers/Opti_755/DRIVERS" "prod:/drivers" > /dev/tty1
;;
'17097HU')
echo Copying Drivers for IBM X60... > /dev/tty1
firm -recurse copy "/mnt/ptds/Builds/Drivers/IBM_X60/Drivers" "prod:/Drivers" > /dev/tty1
;;
'63717DU')
echo Copying Drivers for IBM T60... > /dev/tty1
firm -recurse copy "/mnt/ptds/Builds/Drivers/IBM_T60/Drivers" "prod:/Drivers" > /dev/tty1
;;
'889703U')
echo Copying Drivers for IBM T61... > /dev/tty1
firm -recurse copy "/mnt/ptds/Builds/Drivers/IBM_T60/Drivers" "prod:/Drivers" > /dev/tty1
;;
'HP Compaq 6510b (RM333UT#ABA)')
echo Copying Drivers for HP 6510b Laptop... > /dev/tty1
Firm -recurse Copy "/mnt/ptds/Builds/Drivers/HP6510b/Drivers" "prod:/Drivers" > /dev/tty1
;;
'HP Compaq 6530b (KR978UT#ABA)')
echo Copying Drivers for HP 6510b Laptop... > /dev/tty1
Firm -recurse Copy "/mnt/ptds/Builds/Drivers/HP6530b/Drivers" "prod:/Drivers" > /dev/tty1
;;
*)
echo This model is currently not supported by the standard image. > /dev/tty1
sleep 30
;;
esac
echo Driver injection complete, Exiting... > /dev/tty1
exit 0

now if I leave the /mnt/ds instead of /mnt/ptds the drivers work just fine.... but I want to pull the drivers local to that site.... i can understand if the image didnt work either.... but it does so the linux boot disk is mounting the correct location and all...

gonna call altiris in a few....
__________________
SQL Fundamentals 101:
SELECT * FROM dbo.User WHERE Clue > '0'
Query batch completed, 0 rows
JeffreyJRiggs is offline   Reply With Quote
Old 03-27-2009, 12:53 PM   #4 (permalink)
 
JeffreyJRiggs's Avatar
 
Status: Super Altiris Admin
Join Date: 02-22-2006
Location: Williamstown, NJ
Age: 37
Posts: 506


well the altiris guy told me that since we only have 1 ds...

we have to allow the token replacement to happen on the main DS... and it is also easier for the main ds to firm in the drivers too... we setup this and it is working great... Was hoping to get it all done remotely but not gonna happen.....

oh well....
__________________
SQL Fundamentals 101:
SELECT * FROM dbo.User WHERE Clue > '0'
Query batch completed, 0 rows
JeffreyJRiggs is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -4. The time now is 11:57 PM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
vB.Sponsors
Altirigos