Skip to content

天楚锐齿

人工智能 云计算 大数据 物联网 IT 通信 嵌入式

天楚锐齿

  • 下载
  • 物联网
  • 云计算
  • 大数据
  • 人工智能
  • Linux&Android
  • 网络
  • 通信
  • 嵌入式
  • 杂七杂八

OpenStack 安装和使用(二)

2018-03-14
建立服务和访问点:
建立keystone服务:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 service-create –name=keystone –type=identity –description=”Keystone Identity Service”
+————-+———————————-+
|   Property  |              Value               |
+————-+———————————-+
| description | Keystone Identity Service        |
| id          | 0ad1e477af5e4ef698b48cb9aec2ae61 |
| name        | keystone                         |
| type        | identity                         |
+————-+———————————-+
建立keystone服务的访问点:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 endpoint-create \
  –region RegionHanborq \
–service_id=0ad1e477af5e4ef698b48cb9aec2ae61 \
–publicurl=http://10.24.1.47:5000/v2.0 \
–internalurl=http://10.24.1.47:5000/v2.0 \
–adminurl=http://10.24.1.47:35357/v2.0
+————-+———————————-+
|   Property  |              Value               |
+————-+———————————-+
| adminurl    | http://10.24.1.47:35357/v2.0     |
| id          | cabcc01fc08842c3bd56d1534ae38cde |
| internalurl | http://10.24.1.47:5000/v2.0      |
| publicurl   | http://10.24.1.47:5000/v2.0      |
| region      | RegionHanborq                    |
| service_id  | 0ad1e477af5e4ef698b48cb9aec2ae61 |
+————-+———————————-+
建立nova服务:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 service-create –name=nova –type=compute –description=”Nova Compute Service”
+————-+———————————-+
|   Property  |              Value               |
+————-+———————————-+
| description | Nova Compute Service             |
| id          | 4eb163f3847144d094c003d9ae928908 |
| name        | nova                             |
| type        | compute                          |
+————-+———————————-+
建立nova服务的访问点:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 endpoint-create \
  –region RegionHanborq \
–service_id=4eb163f3847144d094c003d9ae928908 \
  –publicurl=’http://10.24.1.47:8774/v2/%(tenant_id)s’ \
–internalurl=’http://10.24.1.47:8774/v2/%(tenant_id)s’ \
–adminurl=’http://10.24.1.47:8774/v2/%(tenant_id)s’
+————-+—————————————–+

|   Property  |                  Value                  |
+————-+—————————————–+
| adminurl    | http://10.24.1.47:8774/v2/%(tenant_id)s |
| id          | 3b32c5dfc3f94b8f836da6725131b013        |
| internalurl | http://10.24.1.47:8774/v2/%(tenant_id)s |
| publicurl   | http://10.24.1.47:8774/v2/%(tenant_id)s |
| region      | RegionHanborq                           |
| service_id  | 4eb163f3847144d094c003d9ae928908        |
+————-+—————————————–+

建立volume服务:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 service-create –name=volume –type=volume –description=”Nova Volume Service”
+————-+———————————-+
|   Property  |              Value               |
+————-+———————————-+
| description | Nova Volume Service              |
| id          | 9f19952076ae4613a6c4fbc05b53125d |
| name        | volume                           |
| type        | volume                           |
+————-+———————————-+
建立volume服务的访问点:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 endpoint-create \
  –region RegionHanborq \
–service_id=9f19952076ae4613a6c4fbc05b53125d \
  –publicurl=’http://10.24.1.47:8776/v1/%(tenant_id)s’ \
–internalurl=’http://10.24.1.47:8776/v1/%(tenant_id)s’ \
–adminurl=’http://10.24.1.47:8776/v1/%(tenant_id)s’
+————-+—————————————–+

|   Property  |                  Value                  |
+————-+—————————————–+
| adminurl    | http://10.24.1.47:8776/v1/%(tenant_id)s |
| id          | 3de88e79eded428dbd3f506c88f62a85        |
| internalurl | http://10.24.1.47:8776/v1/%(tenant_id)s |
| publicurl   | http://10.24.1.47:8776/v1/%(tenant_id)s |
| region      | RegionHanborq                           |
| service_id  | 9f19952076ae4613a6c4fbc05b53125d        |
+————-+—————————————–+

建立glance服务:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 service-create –name=glance –type=image –description=”Glance Image Service”
+————-+———————————-+
|   Property  |              Value               |
+————-+———————————-+
| description | Glance Image Service             |
| id          | f827d479585f403f97e915edc4c636ed |
| name        | glance                           |
| type        | image                            |
+————-+———————————-+
建立glance服务的访问点:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 endpoint-create \
  –region RegionHanborq \
–service_id=f827d479585f403f97e915edc4c636ed \
  –publicurl=http://10.24.1.47:9292/v1 \
–internalurl=http://10.24.1.47:9292/v1 \
–adminurl=http://10.24.1.47:9292/v1
+————-+———————————-+

|   Property  |              Value               |
+————-+———————————-+
| adminurl    | http://10.24.1.47:9292/v1        |
| id          | ab7c08e879f448279c447d6574a21d7c |
| internalurl | http://10.24.1.47:9292/v1        |
| publicurl   | http://10.24.1.47:9292/v1        |
| region      | RegionHanborq                    |
| service_id  | f827d479585f403f97e915edc4c636ed |
+————-+———————————-+

建立EC2服务:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 service-create –name=ec2 –type=ec2 –description=”EC2 Compatibility Layer”
+————-+———————————-+
|   Property  |              Value               |
+————-+———————————-+
| description | EC2 Compatibility Layer          |
| id          | e6152edec1104429afa1de55ca7b7f32 |
| name        | ec2                              |
| type        | ec2                              |
+————-+———————————-+
建立EC2服务的访问点:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 endpoint-create \
  –region RegionHanborq \
–service_id=e6152edec1104429afa1de55ca7b7f32 \
  –publicurl=http://10.24.1.47:8773/services/Cloud \
–internalurl=http://10.24.1.47:8773/services/Cloud \
–adminurl=http://10.24.1.47:8773/services/Admin
+————-+—————————————+

|   Property  |                 Value                 |
+————-+—————————————+
| adminurl    | http://10.24.1.47:8773/services/Admin |
| id          | d103c48c349545518dfb25e454c1e388      |
| internalurl | http://10.24.1.47:8773/services/Cloud |
| publicurl   | http://10.24.1.47:8773/services/Cloud |
| region      | RegionHanborq                         |
| service_id  | e6152edec1104429afa1de55ca7b7f32      |
+————-+—————————————+

建立对象存储的swift服务:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 service-create –name=swift –type=object-store –description=”Object Storage Service”
+————-+———————————-+
|   Property  |              Value               |
+————-+———————————-+
| description | Object Storage Service           |
| id          | 7e2feb47c52648a98716ba3176c35dc5 |
| name        | swift                            |
| type        | object-store                     |
+————-+———————————-+
建立swift服务的访问点:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 endpoint-create \
  –region RegionHanborq \
–service_id=7e2feb47c52648a98716ba3176c35dc5 \
  –publicurl ‘http://10.24.1.47:8080/v1/AUTH_%(tenant_id)s’ \
–adminurl ‘http://10.24.1.47:8080/’ \
  –internalurl ‘http://10.24.1.47:8080/v1/AUTH_%(tenant_id)s’
+————-+———————————————-+
|   Property  |                    Value                     |
+————-+———————————————-+
| adminurl    | http://10.24.1.47:8080/                      |
| id          | c7d71561f5e54dc0be7cbfce3e791b3d             |
| internalurl | http://10.24.1.47:8080/v1/AUTH_%(tenant_id)s |
| publicurl   | http://10.24.1.47:8080/v1/AUTH_%(tenant_id)s |
| region      | RegionHanborq                                |
| service_id  | 7e2feb47c52648a98716ba3176c35dc5             |
+————-+———————————————-+
查看一下这些列表:
[root@cc ~]# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 endpoint-list
+———————————-+—————+———————————————-+———————————————-+—————————————–+
|                id                |     region    |                  publicurl                   |                 internalurl                  |                 adminurl                |
+———————————-+—————+———————————————-+———————————————-+—————————————–+
| 3b32c5dfc3f94b8f836da6725131b013 | RegionHanborq | http://10.24.1.47:8774/v2/%(tenant_id)s      | http://10.24.1.47:8774/v2/%(tenant_id)s      | http://10.24.1.47:8774/v2/%(tenant_id)s |
| 3de88e79eded428dbd3f506c88f62a85 | RegionHanborq | http://10.24.1.47:8776/v1/%(tenant_id)s      | http://10.24.1.47:8776/v1/%(tenant_id)s      | http://10.24.1.47:8776/v1/%(tenant_id)s |
| ab7c08e879f448279c447d6574a21d7c | RegionHanborq | http://10.24.1.47:9292/v1                    | http://10.24.1.47:9292/v1                    | http://10.24.1.47:9292/v1               |
| c7d71561f5e54dc0be7cbfce3e791b3d | RegionHanborq | http://10.24.1.47:8080/v1/AUTH_%(tenant_id)s | http://10.24.1.47:8080/v1/AUTH_%(tenant_id)s | http://10.24.1.47:8080/                 |
| cabcc01fc08842c3bd56d1534ae38cde | RegionHanborq | http://10.24.1.47:5000/v2.0                  | http://10.24.1.47:5000/v2.0                  | http://10.24.1.47:35357/v2.0            |
| d103c48c349545518dfb25e454c1e388 | RegionHanborq | http://10.24.1.47:8773/services/Cloud        | http://10.24.1.47:8773/services/Cloud        | http://10.24.1.47:8773/services/Admin   |
+———————————-+—————+———————————————-+———————————————-+—————————————–+
[root@cc ~]#
[root@cc ~]# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 service-list
+———————————-+———-+————–+—————————+
|                id                |   name   |     type     |        description        |
+———————————-+———-+————–+—————————+
| 0ad1e477af5e4ef698b48cb9aec2ae61 | keystone | identity     | Keystone Identity Service |
| 4eb163f3847144d094c003d9ae928908 | nova     | compute      | Nova Compute Service      |
| 7e2feb47c52648a98716ba3176c35dc5 | swift    | object-store | Object Storage Service    |
| 9f19952076ae4613a6c4fbc05b53125d | volume   | volume       | Nova Volume Service       |
| e6152edec1104429afa1de55ca7b7f32 | ec2      | ec2          | EC2 Compatibility Layer   |
| f827d479585f403f97e915edc4c636ed | glance   | image        | Glance Image Service      |
+———————————-+———-+————–+—————————+
建立ec2-credentials:
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 ec2-credentials-create
+———–+———————————-+
|  Property |              Value               |
+———–+———————————-+
| access    | 0cbf78260bd546e9bec3492e04950a85 |
| secret    | 9ae082b31f5e4505a080bf9d85968c7b |
| tenant_id | 94d38db32a7d4107beeed36d9e98bf06 |   这个为租户id
| user_id   | cd5e2e764fc7420dad016f9af7be7123 |      这个为admin用户id
+———–+———————————-+
# keystone –token c8701a128708a76161e3 –endpoint http://127.0.0.1:35357/v2.0 ec2-credentials-list

+———+———————————-+———————————-+
|  tenant |              access              |              secret              |
+———+———————————-+———————————-+
| hanborq | 0cbf78260bd546e9bec3492e04950a85 | 9ae082b31f5e4505a080bf9d85968c7b |
+———+———————————-+———————————-+

导入到.bash_profile里面,给Eucalyptus tools使用,不是必须的:

# echo “export EC2_URL=http://localhost:8773/services/Cloud” >  ec2rc
# echo “export EC2_USER_ID=\$(keystone user-list | awk ‘/admin / {print \$2}’)” >> ec2rc
# echo “export EC2_ACCESS_KEY=\$(keystone ec2-credentials-list –user \$EC2_USER_ID | awk ‘/hanborq / {print \$4}’)” >> ec2rc
# echo “export EC2_SECRET_KEY=\$(keystone ec2-credentials-list –user \$EC2_USER_ID | awk ‘/hanborq / {print \$6}’)” >> ec2rc

# chmod 600 ec2rc
# cat ec2rc >> ~/.bash_profile
# . ~/.bash_profile
校验Identity Service:
安装curl:
# yum install curl openssl
校验:
[root@cc ~]# curl -d ‘{“auth”: {“tenantName”: “adminTenant”, “passwordCredentials”:{“username”: “admin”, “password”: “123456”}}}’ -H “Content-type: application/json” http://10.24.1.47:35357/v2.0/tokens | python -mjson.tool
% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Dload  Upload   Total   Spent    Left  Speed
100   350    0   244  100   106   2733   1187 –:–:– –:–:– –:–:–  2772
{
“access”: {
“serviceCatalog”: {},
“token”: {
“expires”: “2012-07-17T09:03:07Z”,
“id”: “878fafae0d5d4a239b3916bc5517fc7e”
},
“user”: {
“id”: “cd5e2e764fc7420dad016f9af7be7123”,
“name”: “admin”,
“roles”: [],
“roles_links”: [],
“username”: “admin”
}
}
}
[root@cc ~]#
[root@cc ~]# curl -d ‘{“auth”: {“tenantName”: “hanborq”, “passwordCredentials”:{“username”: “admin”, “password”: “123456”}}}’ -H “Content-type: application/json” http://10.24.1.47:35357/v2.0/tokens | python -mjson.tool
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current

Dload  Upload   Total   Spent    Left  Speed
100  2296    0  2194  100   102  23032   1070 –:–:– –:–:– –:–:– 23340
{
“access”: {
“serviceCatalog”: [
{
“endpoints”: [
{
“adminURL”: “http://10.24.1.47:8774/v2/94d38db32a7d4107beeed36d9e98bf06”,
“internalURL”: “http://10.24.1.47:8774/v2/94d38db32a7d4107beeed36d9e98bf06”,
“publicURL”: “http://10.24.1.47:8774/v2/94d38db32a7d4107beeed36d9e98bf06”,
“region”: “RegionHanborq”
}
],
“endpoints_links”: [],
“name”: “nova”,
“type”: “compute”
},
{
“endpoints”: [
{
“adminURL”: “http://10.24.1.47:9292/v1”,
“internalURL”: “http://10.24.1.47:9292/v1”,
“publicURL”: “http://10.24.1.47:9292/v1”,
“region”: “RegionHanborq”
}
],
“endpoints_links”: [],
“name”: “glance”,
“type”: “image”
},
{
“endpoints”: [
{
“adminURL”: “http://10.24.1.47:8776/v1/94d38db32a7d4107beeed36d9e98bf06”,
“internalURL”: “http://10.24.1.47:8776/v1/94d38db32a7d4107beeed36d9e98bf06”,
“publicURL”: “http://10.24.1.47:8776/v1/94d38db32a7d4107beeed36d9e98bf06”,
“region”: “RegionHanborq”
}
],
“endpoints_links”: [],
“name”: “volume”,
“type”: “volume”
},
{
“endpoints”: [
{
“adminURL”: “http://10.24.1.47:8773/services/Admin”,
“internalURL”: “http://10.24.1.47:8773/services/Cloud”,
“publicURL”: “http://10.24.1.47:8773/services/Cloud”,
“region”: “RegionHanborq”
}
],
“endpoints_links”: [],
“name”: “ec2”,
“type”: “ec2”
},
{
“endpoints”: [
{
“adminURL”: “http://10.24.1.47:8080/”,
“internalURL”: “http://10.24.1.47:8080/v1/AUTH_94d38db32a7d4107beeed36d9e98bf06”,
“publicURL”: “http://10.24.1.47:8080/v1/AUTH_94d38db32a7d4107beeed36d9e98bf06”,
“region”: “RegionHanborq”
}
],
“endpoints_links”: [],
“name”: “swift”,
“type”: “object-store”
},
{
“endpoints”: [
{
“adminURL”: “http://10.24.1.47:35357/v2.0”,
“internalURL”: “http://10.24.1.47:5000/v2.0”,
“publicURL”: “http://10.24.1.47:5000/v2.0”,
“region”: “RegionHanborq”
}
],
“endpoints_links”: [],
“name”: “keystone”,
“type”: “identity”
}
],
“token”: {
“expires”: “2012-07-17T09:03:47Z”,
“id”: “6a8f81a63c7b4af895f43a52d2d744f0”,
“tenant”: {
“description”: “HanBorq Tenant”,
“enabled”: true,
“id”: “94d38db32a7d4107beeed36d9e98bf06”,
“name”: “hanborq”
}
},
“user”: {
“id”: “cd5e2e764fc7420dad016f9af7be7123”,
“name”: “admin”,
“roles”: [
{
“id”: “428438feb3eb4946907b519383f38ceb”,
“name”: “admin”
},
{
“id”: “aee579c6430c46d9861c5b684d42ebb7”,
“name”: “member”
}
],
“roles_links”: [],
“username”: “admin”
}
}
}

使用Image Service
配置glance:
# glance-manage db_sync
# openstack-config –set /etc/glance/glance-api.conf paste_deploy flavor keystone
# openstack-config –set /etc/glance/glance-api.conf DEFAULT filesystem_store_datadir /var/lib/glance/images/
# openstack-config –set /etc/glance/glance-registry.conf paste_deploy flavor keystone
# openstack-config –set /etc/glance/glance-api-paste.ini filter:authtoken admin_tenant_name service
# openstack-config –set /etc/glance/glance-api-paste.ini filter:authtoken admin_user glance
# openstack-config –set /etc/glance/glance-api-paste.ini filter:authtoken admin_password glance
# openstack-config –set /etc/glance/glance-registry-paste.ini filter:authtoken admin_tenant_name service
# openstack-config –set /etc/glance/glance-registry-paste.ini filter:authtoken admin_user glance
# openstack-config –set /etc/glance/glance-registry-paste.ini filter:authtoken admin_password glance
# openstack-config –set /etc/glance/glance-registry-paste.ini DEFAULT sql_connection mysql://glance:glance@localhost/glance
重启glance:
# systemctl restart openstack-glance-api.service
# systemctl restart openstack-glance-registry.service
# ps axf|grep glance
如果发现服务不能启动,可以使用以下命令试试:
# nohup /usr/bin/glance-registry –config-file /etc/glance/glance-registry.conf –debug –verbose &
关于glance服务log位置:
# vi /var/log/glance/registry.log 和 # vi /var/log/glance/api.log
关于glance cache,这里可以不配置,需要时请参考http://docs.openstack.org/developer/glance/cache.html进行配置。
关于img的保存位置:在# vi /etc/glance/glance-api.conf里面定义(可以本地文件系统、swift、s3、RBD(Ceph、RADOS)),默认为本地文件系统,位置在/var/lib/glance/images/目录。
校验Glance:
# glance –version
glance 2012.1
# glance –os_username=admin –os_password=123456 –os_tenant=hanborq –os_auth_url=http://127.0.0.1:5000/v2.0 index
# glance index    前面已经把鉴权信息放入了~/.bash_profile里面,所以这里可以不用os_xxx参数了。
制作一个操作系统内核、ramdisk和img:
# mkdir /tmp/images
# cd /tmp/images/
# wget http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-12.1_2.6.35-22_1.tar.gz
# tar -zxvf ttylinux-uec-amd64-12.1_2.6.35-22_1.tar.gz
# glance add name=”tty-linux-kernel” disk_format=aki container_format=aki < ttylinux-uec-amd64-12.1_2.6.35-22_1-vmlinuz
Uploading image ‘tty-linux-kernel’
=====================================================================================================[100%] 41.7M/s, ETA  0h  0m  0s
Added new image with ID: 2eb1ed9e-b1f2-450a-8ce2-810580d09610
# glance add name=”tty-linux-ramdisk” disk_format=ari container_format=ari < ttylinux-uec-amd64-12.1_2.6.35-22_1-loader
Uploading image ‘tty-linux-ramdisk’
===============================================================================================[100%] 936.330177K/s, ETA  0h  0m  0s
Added new image with ID: e36a1d2d-7ae1-4496-b25c-3ee4be0a14d8
# glance add name=”tty-linux” disk_format=ami container_format=ami kernel_id=2eb1ed9e-b1f2-450a-8ce2-810580d09610 ramdisk_id=e36a1d2d-7ae1-4496-b25c-3ee4be0a14d8 < ttylinux-uec-amd64-12.1_2.6.35-22_1.img
Uploading image ‘tty-linux’
===============================================================================================[100%] 119.366753M/s, ETA  0h  0m  0s
Added new image with ID: e951ba9a-a5f1-40fb-916a-56fc2aeee429
# glance  index
ID                                   Name                           Disk Format          Container Format     Size
———————————— —————————— ——————– ——————– ————–
e951ba9a-a5f1-40fb-916a-56fc2aeee429 tty-linux                      ami                  ami                        25165824
e36a1d2d-7ae1-4496-b25c-3ee4be0a14d8 tty-linux-ramdisk              ari                  ari                           96629
2eb1ed9e-b1f2-450a-8ce2-810580d09610 tty-linux-kernel               aki                  aki                         4404752
# glance delete <id>
# glance details
1,299次阅读

Post navigation

前一篇:

OpenStack 安装和使用(一)

后一篇:

OpenStack 安装和使用(三)

发表回复 取消回复

要发表评论,您必须先登录。

个人介绍

需要么,有事情这里找联系方式:关于天楚锐齿

=== 美女同欣赏,好酒共品尝 ===

微信扫描二维码赞赏该文章:

扫描二维码分享该文章:

分类

  • Linux&Android (81)
  • Uncategorized (1)
  • 下载 (28)
  • 云计算 (38)
  • 人工智能 (9)
  • 大数据 (35)
  • 嵌入式 (34)
  • 杂七杂八 (35)
  • 物联网 (65)
  • 网络 (25)
  • 通信 (22)

归档

近期文章

  • 飞书机器人发送卡片interactive消息
  • Springboot JPA实现对数据库表统一的增删改查
  • WEB的内容安全策略CSP(Content-Security-Policy)
  • CSS利用@media和viewport实现响应式布局自动适配手机电脑等
  • VUE前端增加国际化支持

近期评论

  • linux爱好者 发表在《Linux策略路由及iptables mangle、ip rule、ip route关系及一种Network is unreachable错误》
  • maxshu 发表在《使用Android的HIDL+AIDL方式编写从HAL层到APP层的程序》
  • Ambition 发表在《使用Android的HIDL+AIDL方式编写从HAL层到APP层的程序》
  • Ambition 发表在《使用Android的HIDL+AIDL方式编写从HAL层到APP层的程序》
  • maxshu 发表在《Android9下用ethernet 的Tether模式来做路由器功能》

阅读量

  • 使用Android的HIDL+AIDL方式编写从HAL层到APP层的程序 - 23,810次阅读
  • 卸载深信服Ingress、SecurityDesktop客户端 - 18,519次阅读
  • 车机技术之车规级Linux-Automotive Grade Linux(AGL) - 10,569次阅读
  • linux下的unbound DNS服务器设置详解 - 9,323次阅读
  • 在Android9下用ndk编译vSomeIP和CommonAPI以及使用例子 - 9,136次阅读
  • linux的tee命令导致ssh客户端下的shell卡住不动 - 8,639次阅读
  • Linux策略路由及iptables mangle、ip rule、ip route关系及一种Network is unreachable错误 - 8,126次阅读
  • 车机技术之360°全景影像(环视)系统 - 8,088次阅读
  • 车机技术之Android Automotive - 7,940次阅读
  • Windows下安装QEMU并在qemu上安装ubuntu和debian - 7,840次阅读

其他操作

  • 注册
  • 登录
  • 条目 feed
  • 评论 feed
  • WordPress.org

联系方式

地址
深圳市科技园

时间
周一至周五:  9:00~12:00,14:00~18:00
周六和周日:10:00~12:00

标签

android AT命令 CAN centos docker Hadoop hdfs ip java kickstart linux mapreduce mini6410 modem nova OAuth openstack os python socket ssh uboot 内核 协议 安装 嵌入式 性能 报表 授权 操作系统 数据 数据库 月报 模型 汽车 深信服 源代码 统计 编译 脚本 虚拟机 调制解调器 车机 金融 鉴权
© 2025 天楚锐齿