Home > Articles

This chapter is from the book

Apply Your Knowledge

Exercises

CAUTION

Don't Do This on a Production System! Because some of the steps involved in the following exercises could render a system unbootable if they're not performed properly, you should not perform these exercises on a production system.

3.1 - Using OpenBoot Commands

In this exercise, you will halt the system and use the OpenBoot commands to set parameters and gather basic information about your system.

Estimated time: 30 minutes

  1. Issue the OpenBoot command to display the banner, as follows:

    banner
  2. Set parameters to their default values, as follows:
    reset-all
  3. Display the list of OpenBoot help topics, as follows:

    help
  4. Use the banner command to get the following information from your system:

    ROM revision

    Amount of installed memory

    System type

    System serial number

    Ethernet address

    Host ID

  5. Display the following list of OBP parameters by using the printenv command:

    Output-device
    Input-device
    Auto-boot
    Boot-device
  6. Set the auto-boot? parameter to false to prevent the system from booting automatically after a reset. From the OpenBoot ok prompt, type the following:

    setenv auto-boot? false

    Verify that the parameter has been set by typing the following:

    printenv auto-boot?

    From the Unix prompt, set the auto-boot? parameter back to true:

    eeprom auto-boot?=true

    Take the system back down to init state 0 and verify that the auto-boot? parameter is set to true.

  7. Use the following commands to display the list of disk devices attached to your system:

    probe-scsi
    probe-scsi-all
    probe-ide

    Explain the main differences between these commands.

CAUTION

Preventing a System Hang If any of these commands returns a message warning that your system will hang if you proceed, enter n to avoid running the command. Run reset-all before running probe- again and then respond y to this message.

  1. List the target number and the device type of each SCSI device attached to your system by using the OpenBoot commands in step 7.

  2. From the OpenBoot prompt, identify your default boot device as follows:

    printenv boot-device
  3. Use the show-disks OpenBoot command to get a listing of the disk drives on your system, as follows:

    show-disks

    Display the full device path for the disk4 device alias, as follows:

    devalias disk4

    Create a permanent device alias named disk4 that points to SCSI target 4, as follows:

    nvalias disk4 /iommu/sbus/espdma@f,400000/\
    esp@f,800000/sd@4,0

    Reset the system and verify that the device alias is still set by typing the following:

    reset
    devalias disk4
  4. Boot the system, log on as root, and use the eeprom command to list all NVRAM parameters.

  5. Use the eeprom command to list only the setting of the boot-device parameter, as follows:

    eeprom boot-device

    Reset boot-device to its default parameter from the OpenBoot prompt, as follows:

    set-default boot-device

    From the OpenBoot prompt, remove the alias disk4, as follows:

    nvunalias disk4

    Reset the system and verify that disk4 is no longer set, as follows:

    reset
    printenv

    Set all the OpenBoot parameters back to their default values, as follows:

    set-defaults

3.2 - Booting the System

This exercise takes you through the steps of powering on and booting the system.

Estimated time: 5 minutes

  1. Turn on power to all the peripheral devices, if any exist.

  2. If the OpenBoot parameter auto-boot is set to false, you should see the ok prompt shortly after you power on the system. If the system is set to auto-boot, you should see a message similar to the following displayed onscreen:

    SunOS Release 5.8 Version Generic_108621-04 64-bit
    Copyright 1983-2000 Sun Microsystems, Inc. \
    All rights reserved.

    You should see the system begin the boot process. Interrupt the boot process by pressing Stop+A. The ok prompt appears.

  3. At the ok prompt, type boot to boot the system.

3.3 - Booting an Alternate Kernel

In this exercise, you'll practice booting from a backup copy of the /etc/system file. You should use this process if your /etc/system file ever becomes corrupt or unbootable.

Estimated time: 15 minutes

  1. Log in as root.

  2. Create a backup copy of the /etc/system file by typing this:

    cp /etc/system /etc/system.orig
  3. Now remove the /etc/system file by typing this:

    rm /etc/system
  4. Halt the system by typing this:

    /usr/sbin/shutdown –y –g0 –i0
  5. At the ok prompt, boot the system by using the interactive option to supply the backup name of the /etc/system file. You do that by typing this:

    boot –a
  6. You are prompted to enter a filename for the kernel and a default directory for modules. Press Return to answer each of these questions. When you are prompted with this message to use the default /etc/system file

    Name of system file [etc/system]: 

    enter the following:

    /etc/system.orig
  7. Later you'll be asked to enter the root file system type and the physical name of the root device. At that point, press Return to answer both questions.

  8. When the system is ready, log in as root and put the original /etc/system file back in place:

    cp /etc/system.orig /etc/system

3.4 - Using Run Control Scripts

In this exercise, you'll practice creating run control scripts and shutting down the system.

Estimated time: 10 minutes

  1. Log in as root and change to the /etc/init.d directory. Copy the file named lp to test:

    cd /etc/init.d
    cp lp test
  2. Use the vi editor to edit the file named test. Replace line 16, which reads
    [ -f /usr/lib/lpsched ] && /usr/lib/lpsched

    with a line that reads

    echo ""; /usr/bin/banner "Ready"; echo ""

    Now replace line 20, which currently reads

    [ -f /usr/lib/lpshut ] && /usr/lib/lpshut

    with the following line:

    echo ""; /usr/bin/banner "System going down"; echo ""
  3. Verify that the test script runs properly by using the start and stop arguments:

    ./test start
    ./test stop
  4. Change to the /etc/rc2.d directory and create a hard link to the test script that you just created:

    cd /etc/rc2.d
    ln /etc/init.d/test S22test
  5. Change to the /etc/rcS.d directory and create another link to the test script that will run when the system goes into run level S:

    cd /etc/rcS.d
    ln /etc/init.d/test K99test
  6. Shut down the system to single-user mode:

    init S

    Watch the output on the console. Does the shutdown message from the K99test script appear?

  7. Halt the system:

    /usr/sbin/shutdown –y –g0 –i0
  8. At the ok prompt, boot up the system again:

    boot
  9. Watch the system messages on the console. Does the startup message from the S22test script appear?

Review Questions

  1. The hardware-level user interface that you see before the operating system has been started is called what?

    1. OpenBoot

    2. EEPROM

    3. Firmware

    4. Boot PROM

  2. Which of the following is where the system identification information, such as the hosted, is stored?

    1. Firmware

    2. OpenBoot

    3. NVRAM

    4. Kernel

  3. What tasks are performed by OpenBoot? (Select the two best answers.)

    1. Executing POST

    2. Loading bootblk

    3. Executing ufsboot

    4. Loading the operating system kernel

  4. Which of the following is not a task of the OpenBoot firmware?

    1. Testing and initializing the system hardware

    2. Loading the kernel

    3. Starting up the operating system from either a mass storage device or from a network

    4. Allowing modification and management of system startup configuration, such as NVRAM parameters

  5. Which of the following is attached to a host computer through a hierarchy of interconnected buses on the device tree?

    1. SBus cards

    2. SCSI peripherals

    3. Plug-in device drivers

    4. Nodes

  6. What is /pci@1f,0/pci@1,1/ide@3/disk?

    1. Full device pathname

    2. Physical device

    3. Logical device

    4. Instance

  7. Which of the following is used to obtain information about devices and to display device pathnames in OpenBoot?

    1. show-devs

    2. dmesg

    3. pwd

    4. sysdef

  8. Which of the following commands creates a temporary device alias named disk3?

    1. setenv disk3 /iommu/sbus/espdma@f,400000/esp@f,800000/sd@3,0

    2. set disk3 /iommu/sbus/espdma@f,400000/esp@f,800000/sd@3,0

    3. nvalias disk3 /iommu/sbus/espdma@f,400000/esp@f,800000/sd@3,0

    4. devalias disk3 /iommu/sbus/espdma@f,400000/esp@f,800000/sd@3,0

  9. If you want to create permanent aliases in NVRAM (that show up after a reboot), which of the following commands should you use?

    1. devalias

    2. nvalias

    3. setenv

    4. eeprom

  10. Which NVRAM variable specifies the device from which to start up?

    1. boot-device

    2. boot-file

    3. output-device

    4. input-device

  11. Which command cannot be used to modify NVRAM variables?

    1. set-defaults

    2. setenv

    3. nvalias

    4. set-default

  12. If a system will not start due to a bad NVRAM variable, which of the following, performed before you see the OpenBoot prompt, resets the NVRAM variables to their default settings?

    1. set-default <variable>

    2. Stop+N

    3. set-defaults

    4. Ctrl+N

  13. Which of the following can restrict the set of operations that users are allowed to perform at the OpenBoot prompt?

    1. security-password

    2. security-mode

    3. set-secure

    4. set-security

  14. Which of the following is used in OpenBoot to test all devices that have built-in self-test methods below the specified device tree node?

    1. diag

    2. probe-scsi

    3. test-all

    4. test

  15. Which option do you use with the OpenBoot boot command so that you are prompted for the name of the standalone program to load?

    1. v

    2. f

    3. s

    4. a

  16. What resides in blocks 1–15 of the startup device?

    1. bootblk

    2. superblock

    3. kernel

    4. ufsboot

  17. Which of the following loads the operating system kernel?

    1. ufsboot

    2. openBoot

    3. bootblk

    4. init

  18. Which of the following commands lists all hardware devices, system devices, loadable modules, and the values of selected kernel tunable parameters?

    1. more /var/adm/messages

    2. adb

    3. dmesg

    4. sysdef

  19. What key combination would you enter to interrupt a system that is not responding?

    1. Ctrl+B

    2. Ctrl+C

    3. Stop+A

    4. Ctrl+Alt+Delete

    5. Ctrl+Break

  20. What is the function of the auto-boot parameter that is set in the OpenBoot PROM?

    1. Boots automatically after power-on or reset

    2. Sets the default boot device

    3. Reboots after a watchdog reset

    4. Automatically performs a system reboot when a system core file has been generated

  21. Which of the following commands is used to set the auto-boot parameter?

    1. setenv auto-boot?=false

    2. set auto-boot=false

    3. eeprom auto-boot?=false

    4. nvset

  22. To display all OpenBoot parameter settings, such as boot-device and ttya-mode, what should you type?

    1. nvalias

    2. devalias

    3. printenv

    4. show all

  23. To check the target IDs on all the SCSI devices connected to all the SCSI controllers, what should you type?

    1. test-all

    2. probe-scsi

    3. probe-scsi-all

    4. test-scsi

  24. The kernel reads which of the following files when loading? (This is where system configuration information is stored.)

    1. /etc/system

    2. /platform/<arch>/kernel/unix

    3. /etc/inittab

    4. /kernel/unix

  25. Select the sequence of events that best describes the boot process.

    1. Boot PROM phase, boot program phase, kernel initialization phase, init phase

    2. Boot program phase, boot PROM phase, kernel initialization phase, init phase

    3. Boot program phase, boot PROM phase, init phase, kernel initialization phase

    4. Boot PROM phase, boot program phase, init phase, kernel initialization phase

  26. What consists of a small static core and many dynamically loadable modules?

    1. The kernel

    2. ufsboot

    3. The shell

    4. The bootblock

  27. By default, how many usable system run states does Solaris 9 have?

    1. 3

    2. 7

    3. 6

    4. 8

  28. At what run state is the /export/home file system still available? (In this state, all services except the most basic operating system services are shut down in an orderly manner.)

    1. S

    2. 1

    3. 2

    4. 0

  29. What is the first task that the kernel starts up?

    1. sched

    2. init

    3. ufsboot

    4. load loadable modules

  30. How can system messages displayed at bootup be viewed later?

    1. By issuing the dmesg command

    2. By viewing the /var/messages file

    3. By issuing the sysdef command

    4. By viewing the /etc/boot.log file

  31. To boot a system into a single-user state, what command is entered at the ok prompt?

    1. boot

    2. boot –s

    3. boot –a

    4. boot -n

  32. Which command, typed at the ok prompt, stops and asks for input during the boot process?

    1. boot –i

    2. boot –a

    3. boot –v

    4. boot -s

  33. Which of the following programs examines the contents of the /etc/inittab file to determine the order for starting up other processes and what to do when one of these processes ends?

    1. init

    2. boot

    3. kernel

    4. swapper

  34. Which of the following commands is equivalent to the init 5 command?

    1. poweroff

    2. halt

    3. reboot

    4. boot –s

  35. Which of the following programs is responsible for executing ufsboot?

    1. bootblk

    2. kernel

    3. init

    4. boot

  36. What command do you use to change run levels?

    1. run

    2. init

    3. kill

    4. su

  37. The respawn action in the /etc/inittab file does which of the following:

    1. Restarts the command

    2. Reboots the system

    3. Restarts all system processes

    4. Waits for a command to be completed

  38. Where are the startup scripts for run level 3 located?

    1. /etc/rc.boot

    2. /etc/rc3

    3. /etc/rc3.d

    4. /sbin/rc3

  39. What is the best method to add a run control script for run level 3?

    1. Add the script to /usr/local/bin.

    2. Add the script to /etc/init.d and link it to the /etc/rc3.d directory.

    3. Add the script to /etc/rc3 and make a link to /etc/init.d.

    4. Add the script to /sbin/rc3.

Answers to Review Questions

  1. A. The hardware-level user interface that you see before the operating system starts is called the OBP. For more information, see the section "The OpenBoot Environment."

  2. C. NVRAM is where the system identification information—such as the host ID, Ethernet address, and TOD clock—is stored. For more information, see the section "The OpenBoot Environment."

  3. A, B. The two primary tasks of the OpenBoot firmware are to run the POST and to load the bootblock. For more information, see the section "The OpenBoot Environment."

  4. B. OpenBoot runs POSTs to initialize the system hardware. It also loads the primary startup program, bootblk, from the default startup device. The bootblk program finds and executes the secondary startup program, ufsboot, and loads it into memory. From that point, the ufsboot program loads the operating system kernel. For more information, see the section "The OpenBoot Environment."

  5. D. Devices called nodes are attached to a host computer through a hierarchy of interconnected buses on the device tree. A node that represents the host computer's main physical address bus forms the tree's root node. For more information, see the section "The OpenBoot Architecture."

  6. A. A full device pathname is a series of node names separated by slashes (/). The root of the tree is the machine node, which is not named explicitly but is indicated by a leading slash. Each device pathname has this form:

    driver-name@unit-address:device-arguments

    For more information, see the section "PROM Device Tree (Full Device Pathnames)."

  7. A. The OpenBoot command show-devs is used to obtain information about devices and to display device pathnames. For more information, see the section "PROM Device Tree (Full Device Pathnames)."

  8. D. You use the devalias command as follows to create a temporary device alias named disk3:

    devalias disk3 /iommu/sbus/espdma@f,400000/esp@f,800000/sd@3,0

    For more information, see the section "OpenBoot Device Aliases."

  9. B. or D. You use the nvalias command from the OpenBoot PROM or the eeprom command from the Unix prompt to create a permanent alias in NVRAM that remains in effect even after a reboot. For more information, see the section "OpenBoot Device Aliases."

  10. A. The NVRAM variable named boot-device contains the name of the default startup device. For more information, see the section "Booting a System."

  11. C. You use one of the following commands to modify NVRAM parameters: setenv, set-default, or set-defaults. For more information, see the section "OpenBoot NVRAM."

  12. B. To reset the NVRAM variables to their default settings, you hold down the Stop+N keys simultaneously while the machine is powering up. For more information, see the section "OpenBoot NVRAM."

  13. B. The OpenBoot command security-mode restricts the set of operations that users are allowed to perform at the OpenBoot prompt. For more information, see the section "OpenBoot Security."

  14. C. The OpenBoot command test-all tests all devices that have built-in self-test methods below the specified device tree node. For more information, see the section "OpenBoot Diagnostics."

  15. D. You issue the OpenBoot boot command with the –a option to be prompted for the name of the standalone program to load. For more information, see the section "The boot Command."

  16. A. The bootblock resides in blocks 1–15 of the startup device. For more information, see the section "The boot Command."

  17. A. The secondary startup program, ufsboot, loads the two-part operating system kernel. For more information, see the section "Booting a System."

  18. D. You use the sysdef command to list all hardware devices, system devices, and loadable modules, as well as the values of selected kernel tunable parameters. For more information, see the section "The Kernel."

  19. C. You interrupt a system that is not responding by pressing Stop+A. For more information, see the section "Stopping the System for Recovery Purposes."

  20. A. auto-boot? controls whether the system automatically starts up after a system reset or when the power is turned on. The default for this variable is true. When the system is powered on, the system automatically starts up to the default run level. For more information, see the section "OpenBoot NVRAM."

  21. C. eeprom auto-boot?=false is used to set the auto-boot? parameter. For more information, see the section "OpenBoot NVRAM."

  22. C. At the OpenBoot prompt, you use the printenv command to display all OpenBoot parameter settings. For more information, see the section "OpenBoot NVRAM."

  23. C. You use the probe-scsi-all command to check the target IDs on all the SCSI devices that are connected to all the SCSI controllers. For more information, see the section "OpenBoot Diagnostics."

  24. A. When the kernel is loading, it reads the /etc/system file, where system configuration information is stored. This file modifies the kernel's parameters and treatment of loadable modules. For more information, see the section "The Kernel."

  25. A. The boot process goes through the following four phases: Boot PROM phase, boot programs phase, kernel initialization phase, and init phase. For more information, see the section "Booting a System."

  26. A. The kernel consists of a two-piece static core that is made up of genunix and unix. genunix is the platform-independent generic kernel file, and unix is the platform-specific kernel file. When the system boots, ufsboot combines these two files and many dynamically loadable modules into memory to form the running kernel. For more information, see the section "The Kernel."

  27. B. Solaris 9 has eight run levels, but because run level 4 is currently not used, it has only seven usable run levels. For more information, see the section "System Run States."

  28. B. Run level 1 is a single-user (system administrator) state in which all local file systems are available. All services except the most basic operating system services are shut down in an orderly manner. For more information, see the section "System Run States."

  29. A. The first task for the kernel is to start the swapper process. The swapper process is the part of the kernel that schedules all other processes. The swapper has a process ID of 0 and is named sched. Its first job is to start up the init process. For more information, see the section "swapper."

  30. A. You use the dmesg command to view system messages that were displayed during the boot process. For more information, see the section "Booting a System."

  31. B. You issue the boot –s command at the OpenBoot ok prompt to boot the system into single-user mode. For more information, see the section "Booting a System."

  32. B. The boot –a command performs an interactive boot. With this option, you are prompted to enter the name of the kernel, the default modules directory, the name of the system file, the root file system type, and the device name for the root device. For more information, see the section "Booting a System."

  33. A. The /sbin/init command generates processes to set up the system based on the directions in /etc/inittab. The init process is the parent of all other processes. It examines the contents of the /etc/inittab file to determine the order for starting up other processes and what to do when one of these processes ends. For more information, see the section "System Run States."

  34. A. The poweroff command is equivalent to the init 5 command, which takes the system into run state 5, the power-down state. For more information, see the section "Commands to Shut Down the System."

  35. A. The bootblk program finds and executes the secondary boot program, called ufsboot, from the UFS and loads it into memory. For more information, see the section "Booting a System."

  36. B. You use the init command to change run levels. For more information, see the section "System Run States."

  37. A. In the /etc/inittab file, the respawn statement restarts a command if it dies. For more information, see the section "System Run States."

  38. C. A corresponding directory named /etc/rc<n>.d contains scripts to perform various actions for that run level. For example, startup scripts for run level 3 are located in the /etc/rc3.d directory. For more information, see the section "rc Scripts."

  39. B. To add a run control script for run level 3, you add the script to the /etc/init.d directory and link it, via a hard link, to the /etc/rc3.d directory. For more information, see the section "Adding Scripts to the Run Control Directories."

Suggested Readings and Resources

For more information on the OpenBoot environment and the boot process, refer to Inside Solaris 9 by Bill Calkins, 2002, New Riders.

For more information on the Solaris kernel and tuning the Solaris kernel parameters, refer to the following publications:

The Solaris Tunable Parameters Reference Manual, 2002, Sun Microsystems. This manual is available online at http://docs.sun.com.

Sun Performance and Tuning: Java and the Internet, by Adrian Cockroft, 1998, Prentice Hall.

Solaris Internals: Core Kernel Architecture, by Jim Mauro and Richard McDougall, 2000, Prentice Hall.

Resource Management, by Richard McDougall, Adrian Cockcroft, Evert Hoogendoorn, Enrique Vargas, Tom Bialaski, and Everet Hoogendoorn, 1999, Prentice Hall.

Pearson IT Certification Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Pearson IT Certification and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Pearson IT Certification products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.pearsonitcertification.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020