{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

Linux环境编程/21世纪高等教育计算机规划教材

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Linux环境编程/21世纪高等教育计算机规划教材

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《21世纪高等教育计算机规划教材:Linux环境编程》介绍Linux环境下Shell编程、C语言系统编程和Gtk+编程三个方面的知识。第1章~3章介绍Linux操作系统的基础知识、Linux常用命令和Shell编程;第4章介绍C语言的基础知识;第5~第8章介绍Linux系统编程,包括文件I/O、标准I/O库、进程和信号以及进程间通信等方面的知识;第9~第10章介绍如何使用Gtk+库进行图形界面编程。
《21世纪高等教育计算机规划教材:Linux环境编程》编写的宗旨是引导读者快速入门,所以行文注重循序渐进、逻辑连贯、语言简洁、阐述清晰、例程详尽。
《21世纪高等教育计算机规划教材:Linux环境编程》适合作为高等院校计算机相关专业“Linux环境编程”课程的教材或参考书,也适合具有一定编程基础的读者将其作为学习Linux环境下应用程序开发之入门教程。
Catalogue

第1章 Linux基础
1.1 概述
1.1.1 Linux内核和发行版
1.1.2 Linux的发展要素
1.2 Linux的安装
1.2.1 在虚拟机上安装
1.2.2 在实体机上安装
1.3 Linux操作环境
1.3.1 GNOME简介
1.3.2 Linux文件系统
1.3.3 Shell
1.4 小结
1.5 习题

第2章 Linux Shell命令操作
2.1 获取帮助
2.1.1 ——help选项
2.1.2 man
2.1.3 info
2.2 通配符、引号、管道和输入输出重定向
2.2.1 通配符
2.2.2 转义字符
2.2.3 引号
2.2.4 管道
2.2.5 输入、输出重定向
2.3 基础操作
2.3.1 sudo
2.3.2 路径和当前工作目录
2.3.3 创建和删除文件
2.3.4 创建和删除目录
2.3.5 查看用户、日期和输出简单信息
2.3.6 命令历史和名称补全
2.3.7 ls命令
2.3.8 别名
2.4 浏览及搜索文件系统
2.4.1 find
2.4.2 which
2.4.3 whereis
2.4.4 locate
2.5 阅读文本文件
2.5.1 cat
2.5.2 more和less
2.5.3 head和tail
2.6 编辑文本文件
2.6.1 vi
2.6.2 gedit
2.7 文件内容操作命令
2.7.1 grep
2.7.2 sort
2.7.3 diff
2.7.4 wc
2.8 文件的复制、移动、链接和归档
2.8.1 cp
2.8.2 mv
2.8.3 ln
2.8.4 tar
2.9 文件系统操作
2.9.1 挂载——mount
2.9.2 卸载——umount
2.9.3 查看系统信息
2.10 用户管理
2.11 文件权限操作
2.12 进程相关命令
2.12.1 进程和作业
2.12.2 查看进程——ps
2.12.3 结束进程——kill
2.13 网络相关命令
2.14 小结
2.15 习题

第3章 Linux Shell编程
3.1 基础知识
3.1.1 第一个Shell程序
3.1.2 如何运行Shell程序
3.1.3 Shell的命令种类
3.1.4 Shell执行命令的顺序
3.1.5 注释、退出状态和逻辑操作
3.1.6 复合命令
3.2 Shell变量
3.2.1 变量的赋值与引用
3.2.2 命令替换
3.2.3 变量属性声明
3.2.4 数组变量
3.2.5 变量引用操作符
3.2.6 位置参数和特殊变量
3.2.7 read命令
3.2.8 export语句
3.3 控制结构
3.3.1 条件测试
3.3.2 if语句
3.3.3 case语句
3.3.4 while语句
3.3.5 until语句
3.3.6 for语句
3.3.7 break、continue和exit
3.4 Shell函数
3.5 Shell内部命令
3.6 Shell程序调试
3.7 小结
3.8 习题

第4章 Linux C语言编程基础
4.1 gcc编译器
4.1.1 概述
4.1.2 第一个C程序
4.1.3 编译选项
4.2 Eclipse CDT
4.2.1 简介、安装和启动
4.2.2 创建项目并运行
4.2.3 程序调试方法
4.3 C语言基础
4.3.1 C语言概述
4.3.2 数据类型
4.3.3 运算符与表达式
4.3.4 C语言的语句
4.3.5 控制结构
4.3.6 函数
4.3.7 内存管理
4.3.8 编译预处理
4.4 小结
4.5 习题

第5章 文件
5.1 Linux文件I/O概述
5.1.1 简介
5.1.2 文件和目录
5.1.3 文件和设备
5.1.4 系统调用和标准函数库
5.2 底层文件访问
5.2.1 文件描述符
5.2.2 文件的创建、打开和关闭
5.2.3 文件的读、写
5.2.4 文件的定位
5.2.5 文件属性的读取
5.2.6 文件属性的修改
5.3 链接文件的操作
5.3.1 创建硬链接
5.3.2 创建和读取符号链接
5.3.3 删除链接
5.4 目录文件的操作
5.4.1 目录文件的创建与删除
5.4.2 目录文件的打开与关闭
5.4.3 目录文件的读取
5.5 设备文件
5.6 小结
5.7 习题

第6章 标准I/O库
6.1 流和文件指针
6.2 缓存
6.3 流的打开和关闭
6.3.1 打开流
6.3.2 关闭流
6.4 基于字符和行的I/O
6.4.1 字符I/O
6.4.2 行I/O
6.5 二进制I/O
6.5.1 读二进制流
6.5.2 写二进制流
6.5.3 二进制I/O的常见用法
6.6 定位流
6.7 格式化I/O
6.7.1 格式化输出
6.7.2 格式化输入
6.8 临时文件
6.9 文件流和文件描述符
6.10 小结
6.11 习题

第7章 进程和信号
7.1 进程的基本概念
7.1.1 什么是进程
7.1.2 Linux进程环境
7.2 进程的结构
7.2.1 进程控制块和进程表
7.2.2 进程标识
7.2.3 进程的状态
7.3 进程控制
7.3.1 system函数
7.3.2 exec函数
7.3.3 fork函数
7.3.4 vfork函数
7.3.5 进程的终止状态
7.3.6 wait和waitpid函数
7.4 信号
7.4.1 简介
7.4.2 捕获信号
7.4.3 发送信号
7.4.4 信号集
7.4.5 sigaction函数
7.5 小结
7.6 习题

第8章 进程间通信
8.1 IPC简介
8.2 管道
8.2.1 pipe函数
8.2.2 popen和pcolse函数
8.3 命名管道(FIFO)
8.4 SysV IPC
8.5 信号量
8.5.1 简介
8.5.2 semget函数
8.5.3 semop函数
8.5.4 semctl函数
8.5.5 信号量的应用
8.6 共享内存
8.6.1 简介
8.6.2 shmget函数
8.6.3 shmat和shmdt函数
8.6.4 shmctl函数
8.6.5 共享内存的应用
8.7 消息队列
8.7.1 简介
8.7.2 msgget函数
8.7.3 msgsnd函数
8.7.4 msgrcv函数
8.7.5 msgctl函数
8.7.6 消息队列的应用
8.8 小结
8.9 习题

第9章 Gtk+编程基础
9.1 Gtk+简介
9.2 glib库
9.3 Gtk+程序结构
9.3.1 第一个Gtk+程序
9.3.2 Gtk+的数据类型
9.3.3 初始化Gtk+
9.3.4 创建和显示窗口/构件
9.3.5 Gtk+的主循环
9.4 响应Gtk+的信号
9.4.1 完善第一个Gtk+程序
9.4.2 事件和信号
9.5 构件的基本概念
9.5.1 有窗口构件和无窗口构件
9.5.2 敏感性
9.5.3 焦点、独占和缺省构件
9.5.4 构件状态
9.6 构件的排列
9.6.1 容器构件
9.6.2 尺寸分配
9.6.3 GtkWindow
9.6.4 GtkBox
9.6.5 GtkTable
9.7 小结
9.8 习题

第10章 Gtk+构件
10.1 基础构件
10.1.1 GtkImage
10.1.2 GtkButton
10.1.3 GtkEntry
10.1.4 GtkLabel
10.1.5 GtkCheckButton
10.1.6 GtkComboBoxText
10.1.7 GtkRadioButton
10.1.8 GtkScrolledWindow
10.1.9 GtkTextView
10.1.10 GtkSeparator
10.1.11 GtkFrame
10.2 菜单
10.3 工具栏
10.4 树型构件和列表构件
10.4.1 模型
10.4.2 视图
10.5 对话框
10.5.1 GtkMessageDialog
10.5.2 GtkFileChooserDialog
10.5.3 自定义对话框
10.6 小结
10.7 习题
参考文献

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book