zoukankan      html  css  js  c++  java
  • Ubuntu系统安装软件包(其他软件包的安装 思路类似)—— Steps to Install XFS Package in Ubuntu

    原文:https://www.storagetutorials.com/install-create-xfs-filesystem-ubuntu/

    1. Verify if the “xfsprogs package” is installed or not on your server. Also, if the package is not installed on the server, you will not find “mkfs.xfs” command.

    apt list --installed | grep -i xfs

    2. Now, install the xfsprogs package if not present. Below is the command to do that and output from our Ubuntu terminal.

    apt-get install xfsprogs
    root@ubuntu:~# apt-get install xfsprogs
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    The following additional packages will be installed:
      libreadline5
    Suggested packages:
      xfsdump attr quota
    The following NEW packages will be installed:
      libreadline5 xfsprogs
    0 upgraded, 2 newly installed, 0 to remove and 288 not upgraded.
    Need to get 696 kB of archives.
    After this operation, 3,744 kB of additional disk space will be used.
    Do you want to continue? [Y/n] y
    Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libreadline5 amd64 5.2+dfsg-3build1 [99.5 kB]
    Get:2 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 xfsprogs amd64 4.3.0+nmu1ubuntu1.1 [597 kB]
    Fetched 696 kB in 1s (443 kB/s)
    Selecting previously unselected package libreadline5:amd64.
    (Reading database ... 177984 files and directories currently installed.)
    Preparing to unpack .../libreadline5_5.2+dfsg-3build1_amd64.deb ...
    Unpacking libreadline5:amd64 (5.2+dfsg-3build1) ...
    Selecting previously unselected package xfsprogs.
    Preparing to unpack .../xfsprogs_4.3.0+nmu1ubuntu1.1_amd64.deb ...
    Unpacking xfsprogs (4.3.0+nmu1ubuntu1.1) ...
    Processing triggers for libc-bin (2.23-0ubuntu9) ...
    Processing triggers for man-db (2.7.5-1) ...
    Setting up libreadline5:amd64 (5.2+dfsg-3build1) ...
    Setting up xfsprogs (4.3.0+nmu1ubuntu1.1) ...
    update-initramfs: deferring update (trigger activated)
    Processing triggers for libc-bin (2.23-0ubuntu9) ...
    Processing triggers for initramfs-tools (0.122ubuntu8.8) ...
    update-initramfs: Generating /boot/initrd.img-4.10.0-28-generic
    root@ubuntu:~#
    
    root@ubuntu:~ # apt list --installed | grep -i xfs
    
    WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
    
    xfsprogs/xenial-updates,now 4.3.0+nmu1ubuntu1.1 amd64 [installed]

    Steps to Create XFS File System in Ubuntu

    3. Now, once you have installed the XFS package following the above steps, now it is time to create your XFS file system. Take the block device and format it using “mkfs.xfs” command as given below.

    root@ubuntu:~# mkfs.xfs /dev/sdb
    meta-data=/dev/sdb               isize=512    agcount=4, agsize=32768 blks
             =                       sectsz=512   attr=2, projid32bit=1
             =                       crc=1        finobt=1, sparse=0
    data     =                       bsize=4096   blocks=131072, imaxpct=25
             =                       sunit=0      swidth=0 blks
    naming   =version 2              bsize=4096   ascii-ci=0 ftype=1
    log      =internal log           bsize=4096   blocks=855, version=2
             =                       sectsz=512   sunit=0 blks, lazy-count=1
    realtime =none                   extsz=4096   blocks=0, rtextents=0
    root@ubuntu:~#
    

    If you don’t have extra space on your server, please add additional disk and scan it on the server without rebooting it.

    4. Now, once your block device is formatted as XFS, you can mount it using “mount” command.

    root@ubuntu:~# mount /dev/sdb /mnt
    root@ubuntu:~# df -hP /mnt
    Filesystem      Size  Used Avail Use% Mounted on
    /dev/sdb        509M   27M  483M   6% /mnt
    

    In the above example, we have mounted the file system temporarily, to mount it permanently put its entry in /etc/fstab file.

    This is how simply you can install the XFS package and create your XFS filesystem.

    We hope you enjoyed reading this tutorial and parallelly you have installed XFS and created your XFS file system. In case of any problem or doubt, please let us know through your comments and email. Do not forget to subscribe to Storage Tutorials and follow us on social networking websites like Twitter, Facebook, etc.

     
     
  • 相关阅读:
    C# 创建线程
    离最近发表时间代码
    ORA12154: TNS: 无法解析指定的连接标识符
    SQL和LINQ按年月、按类型显示文章篇数
    对象的序列化和反序列化
    父类与子类间的隐藏与重写
    C# 进程启动与关闭
    猫叫老鼠跑的事件例子
    第十八章 12判断string类型字符串是否为空 简单
    第十八章 11 string字符串的比较 简单
  • 原文地址:https://www.cnblogs.com/panpanwelcome/p/13091848.html
Copyright © 2011-2022 走看看