zoukankan      html  css  js  c++  java
  • ubuntu10.04命令挂载windows硬盘与U盘

    分类: Linux
    在ubuntu10.04下,若开机进入字符界面则无法自动挂载windows硬盘。
     
    首先可查看磁盘信息:
    1. fdisk -l
    显示信息如下:
    Disk /dev/sda: 160.0 GB, 160041885696 bytes-------我的硬盘信息
    255 heads, 63 sectors/track, 19457 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0xc001c001
       Device Boot      Start         End      Blocks   Id  System
    /dev/sda1   *           1        1824    14651248+   7  HPFS/NTFS
    /dev/sda2            1825       19457   141637042    f  W95 Ext'd (LBA)
    /dev/sda5            1825        7296    43953808+   b  W95 FAT32
    /dev/sda6            7297       13375    48829536    b  W95 FAT32
    /dev/sda7           13376       13497      975872   82  Linux swap / Solaris
    /dev/sda8           13497       13509       96256   83  Linux
    /dev/sda9           13509       19458    47780864   83  Linux
    Disk /dev/sdb: 4008 MB, 4008706048 bytes-------我的U盘信息
    124 heads, 62 sectors/track, 1018 cylinders
    Units = cylinders of 7688 * 512 = 3936256 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x6f20736b
    #vi mount_windows.sh
    1. mount -t vfat /dev/disk/by-label/XURA_D /media/XURA_D -o iocharset=utf8
    2. mount -t vfat /dev/disk/by-label/XURA_E /media/XURA_E -o iocharset=utf8

    #chmod +x mount_windows.sh

    执行mount_windows.sh即可挂载windows下的D盘和E盘(/media目录下没有XURA_D和XURA_E则新建一个)。

    #vi mount_Udisk.sh

    1. mount -t vfat /dev/sdb /media/UDisk/ -o umask=000

    #chmod +x  mount_Udisk.sh

    执行mount_Udisk.sh即可挂载U盘(/media目录下没有UDisk则新建一个)。


  • 相关阅读:
    Educational Codeforces Round 64 (Rated for Div. 2)题解
    Codeforces Round #555 (Div. 3) F. Maximum Balanced Circle
    莫队算法总结
    cobalt strike使用笔记
    CMD命令行下载文件
    CTF线下赛AWD模式下的生存技巧
    python中multiprocessing模块
    密码重置
    python中的argparse模块
    python中BeautifulSoup模块
  • 原文地址:https://www.cnblogs.com/yuzaipiaofei/p/4124540.html
Copyright © 2011-2022 走看看