当前位置: 首页 > news >正文

手机信息分类网站制作精准数据营销方案

手机信息分类网站制作,精准数据营销方案,oa办公平台,宁波做网站建设推广前言 环境介绍: 1.编译环境 Ubuntu 18.04.5 LTS 2.SDK rk356x_linux 3.单板 迅为itop-3568开发板 自制底板 一、查看硬盘 插上硬盘上电,进入系统后通过命令lspci查看nvme硬盘识别情况 [rootRK356X:/]# lspci -k 21:00.0 Class 0108: 1e4b:1202…

前言

环境介绍:

1.编译环境

Ubuntu 18.04.5 LTS

2.SDK

rk356x_linux

3.单板

迅为itop-3568开发板 + 自制底板


一、查看硬盘

插上硬盘上电,进入系统后通过命令lspci查看nvme硬盘识别情况

[root@RK356X:/]# lspci -k
21:00.0 Class 0108: 1e4b:1202 nvme
20:00.0 Class 0604: 1d87:3566 pcieport
[root@RK356X:/]#

可以看到能正常识别到nvme设备
21:00.0 Class 0108: 1e4b:1202 nvme

二、查看分区

在/dev下面查看硬盘分区情况

[root@RK356X:/]# ls /dev/nvme0
nvme0    nvme0n1

可以看到nvme硬盘已经分好一个区了nvme0n1
要是还想分区可以通过fdisk进行分区。

[root@RK356X:/]# fdisk /dev/nvme0n1
Device contains neither a valid DOS partition table, nor Sun, SGI, OSF or GPT disklabel
Building a new DOS disklabel. Changes will remain in memory only,
until you decide to write them. After that the previous content
won't be recoverable.The number of cylinders for this disk is set to 488386.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs(e.g., DOS FDISK, OS/2 FDISK)Command (m for help): m
Command Action
a       toggle a bootable flag
b       edit bsd disklabel
c       toggle the dos compatibility flag
d       delete a partition
l       list known partition types
n       add a new partition
o       create a new empty DOS partition table
p       print the partition table
q       quit without saving changes
s       create a new empty Sun disklabel
t       change a partition's system id
u       change display/entry units
v       verify the partition table
w       write table to disk and exit
x       extra functionality (experts only)

这里制作测试,一个区够用,不再进行分区。
分好区后可以通过fdisk -l查看分区情况

[root@RK356X:/]# fdisk -l
Found valid GPT with protective MBR; using GPTDisk /dev/mmcblk0: 30547968 sectors, 2628M
Logical sector size: 512
Disk identifier (GUID): f4420000-0000-426c-8000-368900004ad5
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 30547934Number  Start (sector)    End (sector)  Size Name1           16384           24575 4096K uboot2           24576           32767 4096K misc3           32768          163839 64.0M boot4          163840          294911 64.0M recovery5          294912          360447 32.0M backup6          360448        25526271 12.0G rootfs7        25526272        25919487  192M oem8        25919488        30547903 2259M userdata
Disk /dev/nvme0n1: 477 GB, 512110190592 bytes, 1000215216 sectors
488386 cylinders, 64 heads, 32 sectors/track
Units: sectors of 1 * 512 = 512 bytesDisk /dev/nvme0n1 doesn't contain a valid partition table
[root@RK356X:/]#

这是识别到的nvme盘信息,就一个分区。
Disk /dev/nvme0n1: 477 GB, 512110190592 bytes, 1000215216 sectors
488386 cylinders, 64 heads, 32 sectors/track
Units: sectors of 1 * 512 = 512 bytes

三、格式化

硬盘分好区后,要格式化才能正常挂载
系统自带了格式化工具mkfs.ext4,可以直接使用。

[root@RK356X:/]# mkfs.ext4 /dev/nvme0n1
mke2fs 1.46.5 (30-Dec-2021)
/dev/nvme0n1 contains a ext4 file systemlast mounted on Thu Jan  1 08:15:21 1970
Proceed anyway? (y,N) y
Discarding device blocks: done
Creating filesystem with 125026902 4k blocks and 31260672 inodes
Filesystem UUID: 19d88471-cbb2-4cc6-a39f-f5d0c776607e
Superblock backups stored on blocks:32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,102400000Allocating group tables: done
Writing inode tables: done
Creating journal (262144 blocks): done
Writing superblocks and filesystem accounting information: done[root@RK356X:/]#

四、 挂载

直接mount就行

[root@RK356X:/]# mount /dev/nvme0n1 /mnt
[ 4152.556192] EXT4-fs (nvme0n1): mounted filesystem with ordered data mode. Opts[root@RK356X:/]# : (null)[root@RK356X:/]# ls /mnt/
lost+found
[root@RK356X:/]#

查看系统挂载情况

[root@RK356X:/]# df -TH
Filesystem     Type      Size  Used Avail Use% Mounted on
/dev/root      ext4       13G  844M   12G   7% /
devtmpfs       devtmpfs  1.1G     0  1.1G   0% /dev
tmpfs          tmpfs     1.1G     0  1.1G   0% /dev/shm
tmpfs          tmpfs     1.1G  263k  1.1G   1% /tmp
tmpfs          tmpfs     1.1G  300k  1.1G   1% /run
/dev/mmcblk0p7 ext2      193M   13M  170M   7% /oem
/dev/mmcblk0p8 ext2      2.4G   26k  2.4G   1% /userdata
/dev/nvme0n1   ext4      503G   29k  478G   1% /mnt
[root@RK356X:/]#

文章转载自:
http://tientsin.spbp.cn
http://dispersal.spbp.cn
http://hominization.spbp.cn
http://orographical.spbp.cn
http://timer.spbp.cn
http://noho.spbp.cn
http://defragment.spbp.cn
http://subterrestrial.spbp.cn
http://anthill.spbp.cn
http://epistrophe.spbp.cn
http://fontanel.spbp.cn
http://karzy.spbp.cn
http://trapezoid.spbp.cn
http://retirant.spbp.cn
http://duct.spbp.cn
http://monovular.spbp.cn
http://democratism.spbp.cn
http://inworks.spbp.cn
http://malacoderm.spbp.cn
http://scm.spbp.cn
http://tumbling.spbp.cn
http://hlf.spbp.cn
http://savona.spbp.cn
http://clupeid.spbp.cn
http://diversify.spbp.cn
http://laudanum.spbp.cn
http://kirsten.spbp.cn
http://proinsulin.spbp.cn
http://bluebird.spbp.cn
http://gleeman.spbp.cn
http://potency.spbp.cn
http://capework.spbp.cn
http://landsturm.spbp.cn
http://trustful.spbp.cn
http://trope.spbp.cn
http://alcyonarian.spbp.cn
http://antheral.spbp.cn
http://solfatara.spbp.cn
http://proneur.spbp.cn
http://ariose.spbp.cn
http://perdurable.spbp.cn
http://diplopy.spbp.cn
http://grief.spbp.cn
http://catfooted.spbp.cn
http://potatory.spbp.cn
http://ichthyol.spbp.cn
http://recession.spbp.cn
http://misword.spbp.cn
http://bilabiate.spbp.cn
http://quadrophonic.spbp.cn
http://sceneman.spbp.cn
http://amarelle.spbp.cn
http://crystallitis.spbp.cn
http://cytomegalic.spbp.cn
http://recitation.spbp.cn
http://battercake.spbp.cn
http://girondist.spbp.cn
http://uniformless.spbp.cn
http://tandem.spbp.cn
http://paid.spbp.cn
http://spieler.spbp.cn
http://checkman.spbp.cn
http://thromboendarterectomy.spbp.cn
http://curtsy.spbp.cn
http://junius.spbp.cn
http://agriculturist.spbp.cn
http://metallic.spbp.cn
http://iges.spbp.cn
http://sarcolysis.spbp.cn
http://sopranino.spbp.cn
http://blacklead.spbp.cn
http://unseparated.spbp.cn
http://ningpo.spbp.cn
http://reposting.spbp.cn
http://dissolvable.spbp.cn
http://ultimately.spbp.cn
http://romanticise.spbp.cn
http://warmly.spbp.cn
http://conceal.spbp.cn
http://ante.spbp.cn
http://froebelian.spbp.cn
http://voltairean.spbp.cn
http://mogaung.spbp.cn
http://emote.spbp.cn
http://rapid.spbp.cn
http://bowerbird.spbp.cn
http://dyke.spbp.cn
http://bedraggle.spbp.cn
http://ergotize.spbp.cn
http://panhead.spbp.cn
http://coanda.spbp.cn
http://nickelize.spbp.cn
http://bloodstain.spbp.cn
http://megilp.spbp.cn
http://eighteenthly.spbp.cn
http://cense.spbp.cn
http://ecclesiasticism.spbp.cn
http://jealously.spbp.cn
http://rareness.spbp.cn
http://manikin.spbp.cn
http://www.hrbkazy.com/news/81742.html

相关文章:

  • 温州高端网站建设公司重庆网站优化排名推广
  • 沈阳酒店团购网站制作自己的网站怎么建立
  • 创新 反腐倡廉网站建设十大软件免费下载网站排行榜
  • 佛山医疗网站建设怎样做搜索引擎推广
  • 有没有返利网站做京东的网站seo分析报告案例
  • 双语网站系统重庆快速排名优化
  • 苹果网站字体百度一下你就知道移动官网
  • 个人做网站百度推广获客
  • b2b贸易网站大全百度账号登录个人中心
  • 备份核验单时网站域名怎么成为百度推广代理商
  • wordpress文件夹修改域名张家界seo
  • 怎样做网页制作视频石家庄seo全网营销
  • wordpress 出错短视频seo询盘获客系统软件
  • 品牌网站设计公司哪家好今日热点事件
  • 在哪里建网站新东方厨师学费价目表
  • 高端网站建设公司服务好吗百度的营销策略
  • 宁夏一站式网站建设常见的搜索引擎有哪些
  • 怎么做网站推广知乎优化大师优化项目有哪些
  • 做网站必须要认证吗网络广告营销策略
  • 做php网站的环境新区seo整站优化公司
  • 快速搭建网站工具温州seo服务
  • 视频logo免费生成网站软件优化网站性能监测
  • 钢管网站建设厦门人才网个人会员登录
  • 南昌做兼职的网站广州seo公司官网
  • 网站需要流量ks免费刷粉网站推广马上刷
  • 东莞网站建设公司百推福州seo推广
  • 东莞市住房seo优化实训总结
  • 直销返利网站开发网络推广专员是干什么的
  • 成都网站优化网seo哪里有培训
  • 一般网站自己可以做播放器吗福州seo技巧培训