From 7aa8830ba0315b61e7b589db39c8b0bf78049e13 Mon Sep 17 00:00:00 2001 From: Pete Travis Date: Sat, 22 Nov 2014 09:52:14 -0700 Subject: something is staged here... I'm sure it was useful. --- en-US/BOOT-BIOS_or_UEFI.xml | 14 +++++++------- en-US/Free_Space.xml | 18 +++++++++--------- en-US/GRUB-configuration.xml | 42 +++++++++++++++++++++--------------------- en-US/GRUB-reinstalling.xml | 6 +++--- en-US/GRUB-runtime.xml | 2 +- en-US/Introduction.xml | 10 +++++----- 6 files changed, 46 insertions(+), 46 deletions(-) diff --git a/en-US/BOOT-BIOS_or_UEFI.xml b/en-US/BOOT-BIOS_or_UEFI.xml index b30dd83..33d9f19 100644 --- a/en-US/BOOT-BIOS_or_UEFI.xml +++ b/en-US/BOOT-BIOS_or_UEFI.xml @@ -63,13 +63,13 @@ The system's boot menu gives you the option of booting media via UEFI, or has boot options describing operating systems instead of just physical drives. The boot order menu might look like this: - UEFI: Generic USB Stick - Generic USB Stick - UEFI: DVD-RW Drive - DVD-RW Drive - Fedora - Windows - +UEFI: Generic USB Stick +Generic USB Stick +UEFI: DVD-RW Drive +DVD-RW Drive +Fedora +Windows + diff --git a/en-US/Free_Space.xml b/en-US/Free_Space.xml index 85d0cae..54f56da 100644 --- a/en-US/Free_Space.xml +++ b/en-US/Free_Space.xml @@ -50,7 +50,7 @@ http://docs.fedoraproject.org/en-US/Fedora/19/html/Installation_Guide/ch-partiti Show available filesystems: - # blkid +# blkid /dev/sda1: SEC_TYPE="msdos" UUID="32AE-E651" TYPE="vfat" PARTLABEL="EFI System Partition" PARTUUID="0315942d-8c2c-414f-a560-cfa499494a72" /dev/sda2: UUID="593153ae-2b67-4a5b-9efa-fa3954953abd" TYPE="ext4" PARTUUID="68cadad8-6de2-4ef7-96ff-f58e5114fdcc" /dev/sda3: UUID="P2xKTQ-aQWG-z2Uv-jSw5-kkUK-SN5Q-cNf3PI" TYPE="LVM2_member" PARTUUID="7ba7ed40-b43f-4e71-b83e-51629bf7db47" @@ -63,7 +63,7 @@ http://docs.fedoraproject.org/en-US/Fedora/19/html/Installation_Guide/ch-partiti ntfs partitions indicate the existing Windows installation. Examine the partitions on the /dev/sda drive. - # parted /dev/sda print +# parted /dev/sda print Model: ATA ST9320328CS (scsi) Disk /dev/sda: 320GB Sector size (logical/physical): 512B/512B @@ -84,7 +84,7 @@ Number Start End Size File system Name Flags Partition number 5 is a large filesystem, and probably has some free space to share. Check how much of that space is in use. - # ntfsresize --info /dev/sda5 +# ntfsresize --info /dev/sda5 ntfsresize v2013.1.13 (libntfs-3g) Device name : /dev/sda5 NTFS volume version: 3.1 @@ -105,7 +105,7 @@ Please make a test run using both the -n and -s options before real resizing! Resize the filesystem. Make sure to balance the available space, despite the suggestion from ntfsresize to shrink to the bare minimum. A very full filesystem can cause problems for any operating system. - # ntfsresize --size 40G /dev/sda5 +# ntfsresize --size 40G /dev/sda5 ntfsresize v2013.1.13 (libntfs-3g) Device name : /dev/sda5 NTFS volume version: 3.1 @@ -150,7 +150,7 @@ can recover the partition table by TestDisk or Parted's rescue mode. To make sure that the partition is recreated accurately, work using sectors as units instead of bytes. The first figure we need is the sector the filesystem starts on. - # parted /dev/sda unit s print +# parted /dev/sda unit s print Model: ATA ST9320328CS (scsi) Disk /dev/sda: 625142448s Sector size (logical/physical): 512B/512B @@ -180,7 +180,7 @@ Number Start End Size File system Name After resizing, the filesystem is marked as dirty so it will be checked on the next Windows boot. Clear this flag so that we can run further commands. - #ntfsfix -d /dev/sda5 +#ntfsfix -d /dev/sda5 Mounting volume... OK Processing of $MFT and $MFTMirr completed successfully. Checking the alternate boot sector... OK @@ -192,7 +192,7 @@ NTFS partition /dev/sda5 was processed successfully. Find the cluster size and number of clusters. - # ntfsinfo -m /dev/sda5|grep Cluster +# ntfsinfo -m /dev/sda5|grep Cluster Cluster Size: 4096 Volume Size in Clusters: 9765624 Compression Block Clusters: 0 @@ -233,7 +233,7 @@ NTFS partition /dev/sda5 was processed successfully. Use parted to resize the ntfs filesystem on /dev/sda. Using the s after the number ensures parted uses sectors as the unit. - # parted /dev/sda +# parted /dev/sda GNU Parted 3.1 Using /dev/sda Welcome to GNU Parted! Type 'help' to view a list of commands. @@ -252,7 +252,7 @@ End? 310509504s Check the partition table to confirm the free space is available, and exit parted. - (parted) print free +(parted) print free Model: ATA ST9320328CS (scsi) Disk /dev/sda: 320GB Sector size (logical/physical): 512B/512B diff --git a/en-US/GRUB-configuration.xml b/en-US/GRUB-configuration.xml index d141456..3cb9e17 100644 --- a/en-US/GRUB-configuration.xml +++ b/en-US/GRUB-configuration.xml @@ -58,16 +58,16 @@ With root permissions, open the file /etc/default/grub. - # nano /etc/default/grub - - GRUB_TIMEOUT=0 - GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" - GRUB_DEFAULT=saved - GRUB_DISABLE_SUBMENU=true - GRUB_TERMINAL_OUTPUT="console" - GRUB_CMDLINE_LINUX="vconsole.font=latarcyrheb-sun16 $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) vconsole.keymap=us rhgb quiet" - GRUB_DISABLE_RECOVERY="true" - +# nano /etc/default/grub + +GRUB_TIMEOUT=0 +GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" +GRUB_DEFAULT=saved +GRUB_DISABLE_SUBMENU=true +GRUB_TERMINAL_OUTPUT="console" +GRUB_CMDLINE_LINUX="vconsole.font=latarcyrheb-sun16 $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) vconsole.keymap=us rhgb quiet" +GRUB_DISABLE_RECOVERY="true" + @@ -75,15 +75,15 @@ Add the parameter to the end of GRUB_CMDLINE_LINUX and save the file. - - GRUB_TIMEOUT=0 - GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" - GRUB_DEFAULT=saved - GRUB_DISABLE_SUBMENU=true - GRUB_TERMINAL_OUTPUT="console" - GRUB_CMDLINE_LINUX="vconsole.font=latarcyrheb-sun16 $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) vconsole.keymap=us rhgb quiet acpi_backlight=vendor" - GRUB_DISABLE_RECOVERY="true" - + +GRUB_TIMEOUT=0 +GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" +GRUB_DEFAULT=saved +GRUB_DISABLE_SUBMENU=true +GRUB_TERMINAL_OUTPUT="console" +GRUB_CMDLINE_LINUX="vconsole.font=latarcyrheb-sun16 $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) vconsole.keymap=us rhgb quiet acpi_backlight=vendor" +GRUB_DISABLE_RECOVERY="true" + @@ -96,7 +96,7 @@ For BIOS systems: - # grub2-mkconfig -o /boot/grub/grub2.cfg +# grub2-mkconfig -o /boot/grub/grub2.cfg @@ -104,7 +104,7 @@ For UEFI systems: - # grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg +# grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg diff --git a/en-US/GRUB-reinstalling.xml b/en-US/GRUB-reinstalling.xml index bb33401..57cb522 100644 --- a/en-US/GRUB-reinstalling.xml +++ b/en-US/GRUB-reinstalling.xml @@ -29,15 +29,15 @@ Refresh GRUB configuration on a BIOS system: - # grub2-mkconfig -o /boot/grub2/grub.cfg +# grub2-mkconfig -o /boot/grub2/grub.cfg Refresh GRUB configuration on UEFI systems: - #grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg +#grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg - \ No newline at end of file + diff --git a/en-US/GRUB-runtime.xml b/en-US/GRUB-runtime.xml index d28854f..68c6546 100644 --- a/en-US/GRUB-runtime.xml +++ b/en-US/GRUB-runtime.xml @@ -23,7 +23,7 @@ The rescue option is useful if you have problems after adding new hardware. You can use the rescue option to regenerate the initramfs for all boot entries using this command: - # dracut --regenerate-all --force +# dracut --regenerate-all --force diff --git a/en-US/Introduction.xml b/en-US/Introduction.xml index 383c249..93191e7 100644 --- a/en-US/Introduction.xml +++ b/en-US/Introduction.xml @@ -35,16 +35,16 @@ If your normal user account is configured as an administrator, you can use sudo to enter your user password and execute privileged commands: - [fedorauser@localhost ~]$ sudo <command> - [sudo] password for fedorauser: +[fedorauser@localhost ~]$ sudo <command> +[sudo] password for fedorauser: You can also open a root shell using the root password su. The hyphen ( - ) in the example is important because it ensures that you will work in a root environment, and not act on normal user files with root privileges. - [fedorauser@localhost ~]$ su - - Password: - [root@localhost ~]# +[fedorauser@localhost ~]$ su - +Password: +[root@localhost ~]# -- cgit