Home > Articles > Operating Systems, Server > Linux/UNIX/Open Source

This chapter is from the book

This chapter is from the book

Administering Local Filesystems

Now that you know what's available, it's time to decide which filesystem you want to use on your local system hard disks. (Hint: When creating a filesystem for a local hard disk, pseudo and network filesystem types are right out.)

Local Filesystem Creation

Local filesystem creation is taken care of for you at install time by the various OS install programs. To do it manually, simply invoke mkfs on the device file that you want to set up. On Solaris systems, this would be the device file in /dev/rdsk – the raw/character device file.

On both Red Hat and Solaris, mkfs is mainly a wrapper that sends arguments to a filesystem-specific filesystem-creation subprogram (such as mkfs.ext2 or mkfs_ufs). The mkfs front end for both operating systems allows you to specify things like file- system type on the command line.

Solaris also offers a ufs-specific filesystem-creation tool called newfs. It offers more flexibility and deeper feature management than the mkfs front end. For most applications, however, the defaults for the filesystem are adequate.

The operating system will generally warn you if you try to create a new filesystem on a device that is either mounted or already has a filesystem present. Make sure that that partition is unmounted and not in use on the system before running mkfs. Also realize that if you create a new filesystem where one already exists, the original filesystem is permanently destroyed (your only hope of recovering the data is your backups). Because mkfs is a nonreversible operation, the system is generally polite enough to query before you destroy data, but don't take that for granted. Use care when (re)formatting disk space.

Note that a detailed description of logical volumes goes beyond the scope of this book, so the filesystems discussed are the usual one-to-a-partition kind.

Local Filesystem Availability Management

Of course, filesystem administration only really begins when the filesystem is created. The next task is to get the system to recognize and make available the newly formatted space, probably in a reboot-survivable way. You will also want to periodically check on space usage, both to make sure that system areas have enough free space to function well and to check that no errant processes or users are taking up inordinate amounts of space.

The mount Command

Both Red Hat and Solaris use the mount command to make filesystems available to the Operating System. When invoked from the command line, the filesystem is mounted in a temporary fashion; that is, it will disappear after a reboot. The filesystem itself, along with its data, is intact, but unless another mount command is issued, it is inaccessible.

Under both Red Hat and Solaris, mount acts as a wrapper, much in the same way that mkfs does. You can specify filesystem type via a command-line switch to mount, thereby invoking the correct routines. If no filesystem type is specified, Red Hat assumes ext2 and Solaris assumes ufs. Note that only root (or rather, only UID 0 users) has the capability to run mount.

Filesystems require somewhere to attach to the directory structure on your system, a path by which the files can be accessed. And because UNIX uses hierarchical filesystems, it shouldn't be surprising that the attachment point, or mount point, must be a directory. Both Red Hat and Solaris provide a mount point called /mnt, intended to be used for temporary mounts.31 Figures 3.5 and 3.6 show part of a standard UNIX filesystem both before and after mounting a filesystem on /mnt.

Figure 3.5 Filesystem fragment before mount.

Figure 3.6 Filesystem fragment with /mnt mounted.

Note that mount is invoked on the hard disk block device,32 as in the following examples:

[linux:16 ~]mount /dev/hda1 /mnt

[sun:16 ~]mount /dev/dsk/c0t0d0s3 /mnt

A successful operation produces no output.

If you want to mount a filesystem from a remote server, you specify both the remote server and the filesystem name as it appears on the remote server on the command line, like so:

[sun:17 ~]mount linuxserver:/research/data /mnt
[linux:17 ~]mount bsdserver:/accounting /accounting

Note that these commands assume that the NFS server is configured properly and that your system is configured for client-side NFS.

Remember that it doesn't matter what the local filesystem type is on the remote server, just that there is a network file server program that can handle passing data across the network and back into the local filesystem. This means that even though Solaris does not directly understand ext2 filesystems, it can communicate with a Linux file server via NFS. Also remember that the mount point must already exist on your local system. For more on network-based filesystems and file-sharing mechanisms, see Chapter 13.

The umount Command

Of course, what goes on must also come off (or something like that). To take a mounted filesystem offline, issue the umount command on the filesystem name (or the associated device name). As with mount, only root (or other UID 0 users) has the capability to unmount a filesystem.

Where Did the n Go? or, Why Is It umount Instead of unmount?

The n was sacrificed on the two altars of lazy typists and limited computer memory, like the i and t in the list (ls) command or the e in the ch[ange]mode (chmod) command. It's yet another way you know that UNIX was written by geeks—save those keystrokes!

The umount command is polite; if the filesystem is in use, it will not be unmounted because unmounted filesystems cannot be accessed. This means that you won't be able to accidentally unmount your root filesystem (which, incidentally, holds the kernel) or interrupt a write operation.

Of course, UNIX will let you do virtually anything, no matter how foolish or detrimental, if you really want to. By passing the command-line option to force the operation (usually –f; see the mount man page), the filesystem will be gracelessly dropped, killing any ongoing accesses and leaving the filesystem dirty. Be prepared to fsck a forcibly unmounted local filesystem and potentially suffer file corruption. Remote filesystems gracelessly dropped create problems for the remote server to deal with.

"Filesystem Busy" Resolution

Rather than forcing your system to unmount a busy filesystem, take the time to track down the processes or users still using those resources.

Under both Red Hat and Solaris, you can invoke the fuser command on the relevant filesystem name to get a list of processes currently requiring its presence. You might be surprised to find that your own shell is the obstacle; make sure that you are not currently in the filesystem that you are trying to unmount!

The fstab and vfstab Files

It would be awfully tedious and time-consuming to make sysadmins manually mount all filesystems manually every time the system rebooted. From laziness (and perhaps a sense of efficiency) is born automation. Recall the rc scripts mentioned in Chapter 1, "Startup and Shutdown," that take care of mounting routine filesystems (local, pseudo, and network) at boot-time. The rc scripts must get a list of these filesystems from somewhere, though.

On Red Hat, the relevant file is /etc/fstab; on Solaris, it is /etc/vfstab. Although both have the same basic function, their formats are quite different. Note that all lines beginning with a # are comments.

What's This "tab" File Business?

As with most "<something>tab" files, the "tab" is short for table. fstab, therefore, is the filesystem table file—it contains information about filesystems in tabular form. vfstab is the virtual filesystem table—a mild naming-convention difference that makes cross-platform sysadmin so interesting.

Also note that, as we have mentioned before, not all the entries in the [v]fstab must be mounted at any given time. This means that you can make entries for filesystems that you might want to regularly mount but not have come up on when the system boots (it's just a matter of setting the right options in the table file).

Red Hat: /etc/fstab

Note: We added the comment lines at the beginning of this file listing for the sake of clarity.

#device     	mount		FS   mount		dump	fsck
#to mount     	point		type  options	  frequency	pass
#
LABEL=/         	/		ext2  defaults    	1 	1
LABEL=/boot       /boot		ext2  defaults    	1 	2
/dev/fd0     	/mnt/floppy	auto  noauto,owner  	0 	0
none       	/proc		proc  defaults    	0 	0
none       	/dev/pts		devpts gid=5,mode=620 	0 	0
/dev/hda3   		swap		swap  defaults    	0 	0
/dev/cdrom       /mnt/cdrom	iso9660 noauto,owner,
						kudzu,ro		0 	0
bsdserver:/accounting	/accounting	nfs	rw,nosuid,nodev 	0 	0

The first field lists the local device name or remote filesystem to be mounted. Notice that pseudofilesystems have "none" in this field.

The second field lists the local mount point (which is also the mounted filesystem's local name). Notice that swap has "none" in this field.

The third field lists the filesystem type/instance. See the earlier table on filesystems currently supported by Red Hat.

The fourth field lists mounting options for the filesystem. These allow you to control read and write privileges, setuid bit honoring, and other performance- and security-related settings. Some recommended settings include these:

  • noauto—Do not mount the filesystem unless specifically invoked (i.e. mount –a will not mount it).

  • nodev—Do not honor any device files in the filesystem. This is a security precaution.

  • noexec—Do not execute any binaries in the filesystem. This is another security precaution that should be used with care (and not on an application server's application-service filesystems).

  • nosuid—Do not honor any setuid or setgid permission bits on any files in the filesystem. This is a security precaution that should be used with care; the filesystem containing the kernel, local password-changing binaries, and other critical programs should not have this option set.

  • usrquota—Enable user-based quotas (for ext2 filesystems only).

  • grpquota—Enable group-based quotas (for ext2 filesystems only).

  • ro—Mount the filesystem read-only. This is a security precaution that is not useful on filesystems that users need to write to (including home filesystems and tmp space).

For recommended remote filesystem mount options, see Chapter 13.

The fifth field lists how often dump should back up the filesystem. A value of "0" means that the filesystem is either not dumped at all or is dumped by some other method.

The sixth field lists the order in which fsck checks and corrects filesystem inconsistencies at boot time. A value of "0" means that the filesystem is not checked at all and must be checked manually if there is a problem. Note that network-based filesystems are never checked by fsck. Red Hat recommends that the root filesystem be assigned a value of "1" so that it is checked first and that all other filesystems be given a value of "2." All filesystems with the same field value are checked in parallel, if possible.

Although filesystem quotas are not indicated in the /etc/fstab file, they still need to be enabled for each filesystem that you want regulated via quotaon. Note that quotaon is called automatically at boot time via rc files but can be invoked manually when first setting up quotas on a filesystem.

Solaris: /etc/vfstab

#device          device       mount  FS  fsck mount  mount
#to mount         to fsck      point  type pass at boot options
#
/proc           -         /proc  proc -  no	 -
fd             -         /dev/fd fd  -  no	 -
swap      		-           /tmp  tmpfs -  yes	 -
/dev/dsk/c0t0d0s0     /dev/rdsk/c0t0d0s0 /    ufs  1  no 	 -
/dev/dsk/c0t0d0s3     /dev/rdsk/c0t0d0s3 /space ufs  1  yes	 -
/dev/dsk/c0t0d0s1     -         -    swap -  no 	 -
linuxserver:/research/data -         /mnt  nfs  -  yes	 nodev, _noexec,nosuid

The first field lists the local device name or remote filesystem to be mounted.

The second field lists the raw device that is passed to fsck. Note that this option is not available under Red Hat and is only applicable to local filesystem instances. Entries for which this field is not applicable should contain "-".

The third field lists the local mount point (which is also the mounted filesystem's local name). Notice that swap has "-" in this field.

The fourth field lists the filesystem type/instance. See Table 3.6 for filesystems currently supported by Solaris.

The fifth field lists the order in which fsck checks and corrects filesystem inconsistencies at boot time. A value of "-" means that the filesystem is not checked at all and must be checked manually if there is a problem. Note that network-based filesystems are never checked by fsck. All filesystems with the same field value are checked in parallel, if possible.

The sixth field lists whether the filesystem should be mounted at boot time.

The seventh field lists mounting options for the filesystem. As mentioned in the last section, these options allow you to control read and write privileges, setuid bit honoring, and other performance- and security-related settings. Some recommended settings include these:

  • nosuid—Do not honor any setuid or setgid permission bits on any files in the filesystem. This is a security precaution that should be used with care; the filesystem containing the kernel, local password-changing binaries, and other critical programs should not have this option set.

  • quota—Turn on full quota management for the filesystem.

  • ro—Mount the filesystem read-only. This is a security precaution that is not useful on filesystems that users need to write to (including home filesystems and tmp space).

Again, for recommended remote filesystem mount options, see Chapter 13.

So, How Do [v]fstab and mount Work Together?

  1. Through the rc files. At boot time, the system checks the [v]fstab file for both local and remote mount specifications.

  2. 2. At manual invocation of mount. If you call mount with just a filesystem name ("mount /space"), the system will first check if there is a related entry in [v]fstab. If so, the appropriate device will be mounted with the options given in [v]fstab. If not, the system will complain about either a missing mount point or a missing entry in the filesystem table file. Note that mount –a will mount all entries in [v]fstab, if possible.

Space Management

As mentioned before, there is really only one way to enforce space usage limitations within a filesystem: set quotas. Red Hat allows you to set quotas either by user or by group. Solaris limits you to setting user quotas only.

Be aware that these settings are done on a per-filesystem basis. Although this gives you good granularity for space allocation across different storage areas, it also means that you must assign and maintain quotas across all those areas. A user with no quota assigned for a given filesystem may use as much space as is available with no limits.

Tips for Handling Quotas

Your user creation scripts or procedures should add a default quota for the new user.

Disks with quotas should have quota checking enabled at boot time. This can be configured in [v]fstab.

Your user-deletion scripts should remove quotas. Unused quota entries add overhead to each disk write operation.

Quota Guidelines

Here are a few guidelines to keep in mind when setting quotas:

  • Define the goal for your use of quotas. Are you trying to prevent the disk from getting filled up by errant processes or mailer loops? Or are you trying to precisely divide out disk space, making sure that everyone gets the same-size slice of the pie?

  • This is a balancing act: If you dole out disk space exactly, you are likely to leave large portions unused when users are under their usage limit. This is, of course, not a problem until you realize that there is often quite differential usage among users—some (legitimately) need a great deal of space, while others don't. Strict rationing can cause resource starvation for no reason.

  • Are most of your users disk space–intensive? Will your users immediately use their entire quota or do they keep fairly minimal files on the system? General entropy (and our observations) suggests that eventually all available space will be filled, but you will need to monitor the system to find out the rate at which this occurs. This affects what kind of quotas you set and also how often you need to ask for more disk space (and how much).

  • Do users have access to write to system-critical areas? The answer here should be "No," but in case it isn't (for whatever reason), consider setting a fairly stringent quota for all users with access to the area. That way they won't damage system performance by filling up a filesystem.

  • Set quotas on all user-accessible filesystems. Though it might seem like overkill, every user should have a quota on every filesystem that they can access. This is especially important in space bill-back situations when users or departments must pay for the space they consume. If users can write to areas other than their own home filesystems, they might (intentionally or not) have files scattered and unaccounted for.

  • We recommend that, at the very least, you set user quotas to three-fourths of the partition size (perhaps slightly more if the partition is solely dedicated to the user in question). This will help cap runaway processes and also alert both users and admins when usage is nearing capacity.

  • Use caution when assigning quotas to system accounts (such as root). In fact, system accounts should not have quotas. Should you run into some pressing need, though, remember that if root can't write any more files, the system is going nowhere after a while.

Quota Definitions

You can limit two things by filesystem quotas: block usage (file space) and inode usage (number of files). Respectively, these prevent users from filling up too much space or hoarding too many inodes when both have a finite limit.

There are also two kinds of limit: soft and hard. The soft limit is the actual quota that the user is assigned, whether of blocks or of inodes. When the user has reached or surpassed this limit, the user has a preset grace period in which to lower usage (or get a quota boost from the sysadmin). After the grace period expires, the user will no longer be able to create new files. This might mean that the user can no longer log in, can no longer send or receive email, or other such unfortunate consequences. In fact, if a user reports one of these dilemmas, be sure to check quota usage before panicking about a deeper systemic problem.

The hard limit represents the absolute ceiling of resources that the user may consume within the grace period allotted. If there is no grace period, the soft limit effectively becomes the hard limit. We recommend a grace period of between three and seven days and a sensible margin of space between the soft and hard limits (this will vary, depending on your specific disk space, user pool, and applications).

Red Hat

Quotas are available by default with the ext2 filesystem. To enable quotas for a filesystem (listed in /etc/fstab) called /space, do the following:

  1. Become root.

  2. mount /space.

  3. Add "usrquota" and/or "grpquota" to the "mount options" column of the /etc/fstab entry for /space.

  4. touch /space/aquota.user /space/aquota.group

  5. chmod 600 /space/aquota.user /space/aquota.group

  6. quotacheck –auvg. (Note: This will produce some "truncation" error messages. This is okay.)

  7. Now you may add quotas for users on /space.

To set quotas for an individual user on a Red Hat system, you can use the command-line setquota or the interactive command edquota. Note that setquota can also be used to reset the grace period's expiration time.

When invoked, edquota reports on current usage on all filesystems that have quotas currently turned on. When edquota valjean is run, it brings up the following information with vi or your shell's current EDITOR environment variable. Simply edit the numbers to the right of the various "=" signs to set new limits:

Edit block and inode quota for user valjean:
Device /dev/hda1 (/space):
Used 2567KB, limits: soft=50000 hard=51000
Used 80 inodes, limits: soft=1000 hard=2000

Editing the informational statistics will have no effect on actual usage.

To check valjean's current space usage in all filesystems with quotas turned on, invoke quota –v valjean:

[linux:25 ~]quota -v valjean
Disk quotas for user valjean(24601):
   Filesystem blocks  quota  limit  grace  files  quota  limit  grace
   /dev/hda1    0  50000 51000        0  1000  2000    

The usage numbers should only be considered fully accurate if the quotacheck command is run on the filesystem of interest first. See the man page for more details.

If valjean does not have quotas set on any filesystem, you will see a message like, "Disk quotas for user valjean(24601): None".

Solaris

Quotas are also available by default with the ufs filesystem. To enable quotas for a filesystem (listed in /etc/vfstab) called /space, do the following:

  1. Become root.

  2. mount /space.

  3. touch /space/quotas

  4. chmod 600 /space/quotas

  5. Add "quota" to the "mount options" column of the /etc/vfstab entry for /space.

  6. /usr/sbin/quotaon /space

  7. Now you may add quotas for users.

To set quotas for an individual user on a Solaris system, you can use the interactive command edquota. Note that edquota -t can be used to reset the grace period's expiration time.

When edquota valjean is run, it brings up the following information with vi or your shell's current EDITOR environment variable. Again, all filesystems that currently have quotas turned on are displayed. Simply edit the numbers to the right of the various "=" signs to set new limits:

fs /space blocks (soft = 50000, hard = 51000) inodes (soft = 1000, hard = 2000)

Users with a UID greater than 67,108,864 cannot be assigned quotas under Solaris.

To check valjean's current space usage in all filesystems with quotas turned on, invoke quota –v valjean:

[sun:25 ~]quota -v valjean
Disk quotas for valjean (uid 24601):
Filesystem   usage quota limit  timeleft files quota limit  timeleft
/space     2543 50000 51000        75  1000  2000

Again, these usage numbers should only be considered fully accurate if the quotacheck command is run on the filesystem of interest first. See the man page for more details.

If valjean does not have quotas set on any filesystem, you will see a message like, "no disk quota for valjean (uid 24601)".

For both Red Hat and Solaris, to make quotas take effect, quotaon must be run at each boot. This is done automatically via the boot-time rc files after the steps just outlined are completed.

Filesystem Space Monitoring

Now that you know how to invoke mounts both automatically and manually, you need to know how to query the system for its current filesystem mount status. On both Red Hat and Solaris, use the df command. The -k option makes all sizes to be reported in kilobytes (Kb):

[linux:17 ~]df -k
Filesystem      1k-blocks   Used 	Available	Use% 	Mounted on
/dev/hda4       11179696  1381344  9230456 	14% 	/
/dev/hda1        31079   3485   25990 	12% 	/boot

[sun:17 ~]df -k
Filesystem      	kbytes   used	   avail capacity	Mounted on
/dev/dsk/c0t0d0s0   6191949 	 4845981  1284049  	80%  	/
/proc            0     0     0   	 0%  	/proc
fd              0     0     0   	 0%  	/dev/fd
mnttab            0     0     0  	 0%  	/etc/mnttab
swap          576368    16  576352    1%  	/var/run
swap          576464    112  576352    1%  	/tmp
/dev/dsk/c0t0d0s3   7995933   9623  7906351    1%  	/space

Notice that Solaris displays information about pseudofilesystems, whereas Red Hat does not.

Red Hat also supports the "-i" option for df; it reports statistics about the filesystem's inode usage:

[linux:18 ~]df -i
Filesystem      Inodes  	IUsed  	IFree 		IUse%	Mounted on
/dev/hda4      1419840  	79243 	1340597 		6% 	/
/dev/hda1        8032   26  	8006  		1% 	/boot
/dev/hda1        8032   26  	8006  		1% 	/mnt

There's also a command that allows you to examine and summarize disk usage by directory rather than filesystem: du. When passed the "-k" option, du will present its usage report in kilobytes (Kb).

Normally, du will recurse and print space usage information for every subdirectory. To simply present a summary of all file and subdirectory space usage under the directory specified, use the "-s" option.

For example, to see the space usage of all top-level directories in /usr, the command might look like this:

[linux:20 ~]du -ks /usr/*
88828  /usr/bin
4    /usr/dict
4    /usr/etc
40   /usr/games
120   /usr/html
19948  /usr/include
3996  /usr/kerberos
285016 /usr/lib
2264  /usr/libexec
66344  /usr/local
48   /usr/man
5132  /usr/sbin
392388 /usr/share
102200 /usr/src
0    /usr/tmp
79568  /usr/X11R6

But to see the total summary usage for /usr, leave off the wildcard:

[linux:21 ~]du -ks /usr
1045904 /usr

Notice that when /usr is also its own filesystem, df –k will give you equivalent usage information.

One final tool, quot, is offered only by Solaris. This handy command summarizes filesystem usage by user, whether or not quotas have been turned on. It also allows admins to get a true picture of who is using what space, regardless of how it is scattered among directories in the filesystem. The following shows using quot to report on diskspace used, the number of files extant, and the users who own them for all mounted filesystems:

[sun:26 ~]quot -af
/dev/rdsk/c0t0d0s0 (/):
3380940 58973  root  
1258565 63506  bin   
42709   681  daemon 
 8746   179  lp   
 186   11  adm   
  9    8  javert  
  6    6  eponine   
  5    5  fantine  
  2    6  nobody 
  1    1  valjean

/dev/rdsk/c0t0d0s3 (/space):
 7678   834  javert  
 1961    4  root

For more on space-monitoring considerations and method, see the second half of Chapter 23, "Requirements Analysis and Performance Monitoring."

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT 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 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 InformIT. 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.informit.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