N cards conflict with the windows hard disk and mount the shared permissions problems when installing ubuntu

First, the conflict with the N card:

In the installation options Press e to enter edit mode 1. Install found quiet splash 在后边加nomodeset 最终改为 puiet splash nomodeset 后边的带下划线的不要改动按F10进入安装界面

2. The next step of installation

3. After restarting the system, and if the win ubuntu system is a dual system to see if only the fourth step a fifth step install ubuntu see

Press e found on ubuntu option selection system 4. Restart quiet splashtopuiet splash nomodeset 后边的带下划线的不要改动按F10进入系统,进入系统后点击右下角菜单找到 软件和更新 点击附加驱动 在N卡选项下选择最高版本的N卡驱动不要使用开源驱动 点击应用 应用进度条完成后重启就可以看到系统正确进入系统不会出现假死

5. Press stop only if the system is turned on ubuntu esc key input mode grub will enter this mode normal carriage return will re-enter the guide, then press esc system frame selection will appear on the first option by e enter the edit mode operations performed at this time the fourth step F10 will be saved into the system

Second, the mount NTFS correct operation:

1. The need to mount a disc manually mount

2. Use the command sudo blkid View UUID 

  找到类似:/dev/sdb1: LABEL="DATA" UUID="321FC6CB45AE2FD2" TYPE="ntfs" PTTYPE="dos" PARTUUID="600451aa-01"
          /dev/sdb2: LABEL="study" UUID="6E00E13D21AD3019" TYPE="ntfs" PTTYPE="dos" PARTUUID="600451aa-02"
       /dev/sdb3: LABEL="code" UUID="01A4E1AC0389279D" TYPE="ntfs" PTTYPE="dos" PARTUUID="600451aa-03"
       /dev/sdb4: LABEL="software" UUID="7C79E0326D357D7D" TYPE="ntfs" PTTYPE="dos" PARTUUID="600451aa-04"

/ Dev / sbdX is mounted partition LABEL = value is the letter of the name of the partition

3. Edit / etc / fstab file command: sudo vim / etc / fstab

Inserting the end of the file: the UUID = 321FC6CB45AE2FD2 / mnt / Defaults the DATA NTFS-3G, the locale-zh_CN.UTF. 8 = 0 0

        UUID is just checked out of the UUID / mnt is that you need to mount the folder DATA partition is displayed in the folder name of the letter written on the line followed behind, need to mount several letters to write a few lines UUID and other information needs and check out the correspondence

4. already mounted disk repair: sudo ntfsfix partition names such as: sudo ntfsfix / dev sda2 need to mount needs / All repair

  Mounting volume... OK Processing of $MFT and $MFTMirr completed successfully. Checking the alternate boot sector... OK NTFS volume version   is 3.1. NTFS partition /dev/sda2 was processed successfully.

  The success of a similar information

5. unmount all mounted: umount / mnt / the DATA   here just write mount to mount the partition in a folder on the line to be completely uninstalled again

6. then re-mount it: Mount -o rw / dev / sdb1  / mnt / write front of the DATA follow here, / dev / sdb1 is the UUID corresponds to just check out the edited file to mount it again one by one mount

You can see the original folder lock is now possible to control the operation 7. After restarting

Guess you like

Origin www.cnblogs.com/aikang525/p/12113799.html