「S3」- 概念术语

Amazon S3 提供了一个简单的 Web 服务接口,可随时在 Web 上的任何位置存储和检索任何数量的数据。同时提供了丰富的 SDK,支持 Java、Python、Ruby 和 PHP 等多种程序开发语言;
特性特征
安全与访问管理:S3 可以针对每个对象存储桶或者对象设置独立的访问控制策略,可以允许某些 S3 或者访问,或者全部对外开放等。另外,S3 还支持对对象的限时访问,提供一个仅在规定时间内有效的 URL;
支持各种语言的 SDK 进行编程访问:亚马逊提供的 SDK 支持 C++、C#、Java、PHP、Python 和 Ruby 等常见的语言,使应用的开发能够更加灵活简单;
多元化使用 S3 服务:现在可以通过 3 种方式使用 S3 服务。通过 S3 SDK 编程访问。通过 REST API 进行访问。通过命令行 CLI 进行访问;
存储对象的版本控制:对于 S3 存储桶中的每个对象,可以使用版本控制功能来保存各个版本,可以用于数据恢复
概念术语
AccessKey、SecretKey
使用 S3 需要 S3 颁发的 AccessKey(长度为 20 个字符的 ASCII 字符串)和 SecretKey(长度为 40 个字符的 ASCII 字符串)。AccessKey 用于标识客户的身份,SecretKey 作为私钥形式存放于客户服务器,不在网络中传递。SecretKey 通常用作计算请求签名的密钥,用以保证该请求是来自指定的客户的。使用 AccessKey 进行身份识别,加上 SecretKey 进行数字签名,即可完成应用接入与认证授权;
Region(区域)
创建 Bucket 时需要选择 Region,Region 一般用于标识资源存储的物理位置,比如中国区、欧洲区等;
Region 的外网域名
比如 s3.cn.ceph.work,表示中国区的 S3 服务对外接入地址;
Service(服务)
S3 提供给用户的虚拟存储空间,在这个虚拟空间中,每个用户可拥有一个到多个 Bucket;
Bucket(存储空间)
Bucket 是存放 Object 的容器,所有的 Object 都必须存放在特定的 Bucket 中。在 RGW 中默认每个用户最多可以创建 1000 个 Bucket,每个 Bucket 中可以存放无限多个 Object。Bucket 不能嵌套,每个 Bucket 中只能存放 Object,不能再存放 Bucket,Bucket 下的 Object 是一个平级的结构。Bucket 的名称全局唯一且命名规则与 DNS 命名规则相同;
关于 Bucket 的命名规范如下: 1)仅包含小写英文字母(a~z)、数字(0~9)、中[……]

READ MORE

「STORAGE」- 软件定义存储(Software-defined Storage)

问题描述
传统的存储是一体化方案,将硬件(通常是行业专有硬件)和专有软件捆绑销售。如果部署专有存储,无论是硬件还是软件都将被某供应商锁定。
假设多个x86服务器有不同容量的存储单元,且都需要借助不同种类的存储软件才能使用这些存储单元,那么存储和运维管理将是一件非常痛苦的事情。
解决方案
软件定义存储是指存储软件与硬件分开的存储体系结构。
软件定义存储允许将这些硬件上的存储单元重新规划,并将其全部变成灵活且可扩展的存储单元。
原理简述
所有软件与硬件解耦,通过软件来替代硬件,以增加灵活性; 采用通用的x86架构服务器即可完成存储软件的安装和运行。
特性特征
1)避免技术锁定:与传统的NAS或SAN存储系统不同,软件定义存储能在任何行业标准的x86架构服务器上部署和运行,消除了软件对专有硬件的依赖。 2)易扩展:用户可以根据需要扩展存储容量,不必费力地添加其他专有硬件(节省成本)。 3)高灵活:允许用户在需要时升级或降级硬件。 4)借助软件定义存储,我们几乎可以随时按需对存储容量进行调整,从而使成本效益达到最佳;
最明显的缺点: 1)与传统硬件存储方案相比,软件定义存储的性能损失相对较多;
应用场景
WIP
Ceph
Software, Distributed Object Store, Object Storage, Filesystem, Block Storage
MINIO (Multi-Cloud Object Storage)
MinIO | High Performance, Kubernetes Native Object Storage
GlusterFS, Gluster File System
Red Hat is the major vendor of a commercially supported version of GlusterFS.
FastDFS
百度百科/fastdfs FastDFS特性及问题思考
OpenIO
Object Storage,
Lustre (Distributed File System)
Parallel distributed file system designed for high-performance computing environments.
Cinder (OpenStack Block Storage)
Manila (OpenStackShared File System)
Swift (OpenStack Object Storage)
相关链接
Ceph,TFS,FastDFS,MogileFS,Moos[……]

READ MORE

「CEPH」- 概念术语:Manager,ceph-mgr,Ceph Manager,Ceph Mgr,Ceph MGR

功能作用
Ceph Mgr 从整个集群中收集状态信息;
Ceph Mgr 与 Ceph Mon 进程一起运行,提供附加的监控功能,并与外部监控系统和管理系统连接。建议将 Ceph Mgr 和 Ceph Mon 放在同个节点上运行,但并非强制要求;
Ceph Mgr 还提供其他服务(如 Ceph Dashboard WebUI)、跟踪运行时指标,并通过基于 Web 浏览器的仪表板和 RESTful API 公开集群信息。参考 Ceph Documentation/Ceph Manager Daemon 文档,获取 Ceph Mgr 提供的模块信息;
高可用性
WIP
Ceph Orchestrator
Introduction to the Ceph Orchestrator Red Hat Ceph Storage 5 ceph-mgr orchestrator modules — Ceph Documentation
Ceph Storage Orchestrators are manager modules that primarily act as a bridge between a Red Hat Ceph Storage cluster and deployment tools like Rook and Cephadm for a unified experience. They also integrate with the Ceph command line interface and Ceph Dashboard.

Orchestrator CLI : These are common APIs used in Orchestrators and include a set of commands that can be implemented. These APIs also provide a common command line interface (CLI) to orchestrate ceph-mgr modules with external orchestration services.
Cephadm Orchestrator – This is a Ceph Orchestrator module that does not rely on an external tool such as Rook or Ansible, but rather manages nodes in a cluster by establishing an SSH connection and issuing explicit management comma[……]

READ MORE

「CEPH」- CephFS(文件系统)

解决方案
CephFS,基于 RADOS 服务,是个高性能分布式并行文件系统,是个符合 POSIX 标准的文件系统,是一个高可用、可扩展的文件系统。

(注:该图示的含义是 CephFS 能够直接挂载使用,并且 CephFS 能够向 Client 提供 NFS、CIFS 等等多种文件系统)
原理简述
CephFS 将文件元数据与文件内容数据进行分离存储,以降低复杂性并提高稳定性;

Metadata Server(MDS)
元数据管理: CephFS 依赖运行 MDS 来协调对 RADOS Cluster 的访问,并管理与其文件相关的元数据。 Ceph MDS 用于处理文件元数据信息,最终还是以对象存储在 Ceph Cluster 中; Ceph MDS 管理存储在 CephFS 中与文件相关的元数据,并协调对共享Ceph存储集群的访问。
Metadata(元数据)主要负责记录数据的属性,如文件存储位置、文件大小和存储时间等,负责资源查找、文件记录、存储位置记录、访问授权等功能。CephFS,既然是文件系统,其也需要进行 Metadata 的处理;
CephFS 使用 Metadata Server(MDS),来管理文件系统的命名空间,以及客户端如何访问到后端 OSD 数据存储中;
MDS(Metadata Server)以一个 Daemon 进程运行一个服务,即元数据服务器,主要负责 CephFS 集群中文件和目录的管理,确保它们的一致性,MDS 也可以像 MON 或 OSD 一样多节点部署实现冗余;
在使用 CephFS 前首先要安装和启动 ceph-mds 服务;
CephFS 主要依赖 MDS 提供服务,MDS 提供了一个包含智能缓存层的一致性文件系统,MDS 不会直接向客户端提供任何数据,所有的数据都只由后端 OSD 提供,这样的好处就是极大地降低了自身读写次数。除此之外,它还具备动态子树划分的特点,MDS 守护进程可以加入和退出,快速地接管故障节点。MDS 守护进程可以被配置为活跃或被动状态,活跃的 MDS 被称为主 MDS,其他的 MDS 进入 Standby 状态,当主 MDS 节点发生故障时,第二 MDS 节点将接管其工作并被提升为主节点;
Metadata 信息采用在内存中缓存的方式响应外部访问请求
Cllient
libcephfs,对多客户端支持扮演重要的角色。Ceph 允许客户端通过 libcephfs 直接与 CephFS 进行交互; CephFS 支持原生 Linux 内核驱动,所以能够在 Linux 中使用 mount 挂载 CephFS;
文件内容数据: Ceph Cluster 用于存储文件内容数据,用[……]

READ MORE

「Ceph」- Metadata Server(MDS)

原理简述
首先看一下客户端访问CephFS的过程。在CephFS中,客户端是使用CephFS的所有操作请求的入口。客户端将元数据读写请求发送到活跃的MDS,从中获取文件元数据,并且安全地缓存元数据和文件数据。
MDS将元数据提供给客户端,缓存热的元数据是为了减少对后端元数据池的请求,管理客户端的缓存是为了保证缓存一致性。CephFS工作过程是,在活跃的MDS之间复制热的元数据,并将元数据变化信息合并到日志,定期刷新到后端元数据池中,使数据在集群间实时同步,具体如图2-4所示。
详细交互过程

当 Client 打开文件时,客户端向 MDS 发送请求,实际上就是 MDS 向 OSD 定位该文件所在的文件索引节点(File Inode),该索引节点包含一个唯一的数字、文件所有者、大小和权限等其他元数据;
MDS 会赋予 Client 读和缓存文件内容的权限,访问被授权后返回给客户端 File Inode 值、Layout(Layout 可以定义文件内容如何被映射到 Object)、文件大小,
Client 根据 MDS 返回的信息定位到要访问的文件,然后直接与 OSD 执行 File IO 交互;
同样,当客户端对文件执行写操作时,MDS 赋予 Client 带有缓冲区的写权限,Client 对文件写操作后提交给 MDS,MDS 会将该新文件的信息重新写入到 OSD 中的 Object 中;
树状结构

图是个 MDS 树状结构,MDS 集群为了适应分布式缓存元数据的特点,采用了一种叫作动态子树分区(Subtree Partitioning)的策略,Subtree 可以理解为横跨多个 MDS 节点的目录层级结构,MDS 统计一个目录中元数据信息被访问的频繁程度并计数,MDS 还维护了一个称作权重的树,其记录的是最近元数据的负载情况,MDS 会定期的加载并比较前后权重值的大小,然后根据权重值适当地迁移子树以实现工作流分散在每个 MDS 中。访问程度频繁被称为热点的目录还可以进行 Hash 算法后存在多个 MDS 上;
客户端挂载

客户端访问 Ceph FS 主要有分为 Kernel 内核驱动和 Ceph FS FUSE 两种方式,Linux Kernel 2.6.34 开始加入了对 Ceph FS 的原生支持,如果客户端使用的内核版本较低或者一些应用程序依赖问题,也可以通过 FUSE(Filesystem in Userspace)客户端来挂载 Ceph 文件系统;
MDS 需要使用两个 Pool,一个 Pool 用来存储数据,一个 Pool 用来存储元数据。所以,创建 fs_data 和 fs_metadata 两个存储池,一个用来存储数据,另一个存储元数[……]

READ MORE

「CEPH」- iSCSI Gateway

解决方案
作为存储管理员,你可以为 Ceph Cluster 安装和配置 iSCSI Gateway。借助 iSCSI Gateway,你可以有效地对 Ceph RBD 进行功能接口适配,采用熟悉和常用的iSCSI来访问Ceph。
iSCSI Gateway 将 Ceph 与 iSCSI 标准集成在一起,以提供将 RBD Image 导出为 SCSI 磁盘的高可用iSCSI启动器。iSCSI协议允许启动器通过 TCP/IP 网络将SCSI命令发送到iSCSI目标器,以此提供在异构客户端访问 Ceph Cluster 的能力。
简单来说, Ceph Cluster 实现了iSCSI启动器的多点(多机头)集群,保证了访问的高可用性,为Windows等系统提供数据存储能力。因此,部署 iSCSI Gateway时,我们需要指定多节点。[……]

READ MORE

「SYNOLOGY」- DSM 洗白

顾名思义,“洗白”就是让黑群晖接近正版白群晖的过程。洗白比较繁琐且无法保证长期使用的安全和稳定。
解决方案
第一步、购买 SN / MAC 口令

亲!购买的订单编号:1855042647569410686
SN: xxxx MAC1: xxxx MAC2: xxxx
单网口请使用mac1,如果引导文件有mac2请删除,并将netif_num改为1
群晖安装及洗白教程
https://www.ainas.cc:88/?page_id=8
引导文件及常用工具下载
https://www.ainas.cc:88/?page_id=2
查看黑群晖洗白是否成功
https://www.ainas.cc:88/?p=304
一年内SN出现问题可免费更换2次,
当天确认収货并且好坪的赠送一次。
感谢您的惠顾,欢迎下次光临!

第二步、按照教程进行激活
通过 SSH 登录,通过 mount 挂载,修改 grub.cfg 配置完成激活; https://www.ainas.cc:88/?p=1302
我们使用 PVE 环境部署,所以要在 PVE 中修改虚拟机的 MAC 地址;
第三步、检查洗白成功
https://www.ainas.cc:88/?p=304[……]

READ MORE

「PVE」- 日志、监控、告警

监控(Monitoring)
External Metric Server – Proxmox VE
在 PVE 中,针对监控解决方案: 1)官方:其并未提供直接的监控方案,但其支持将自身指标主动写入 InfluxDB 与 Graphite 数据库; 2)第三方:提供很多开源的解决方案,诸如 prometheus-pve-exporter 支持抓取 PVE Cluster 指标;
我们已知的解决方案:
节点监控、虚拟机监控:pve-exporter + Prometheus + Grafana(废弃)
pve-exporter + Prometheus + Grafana
# 01/13/2023 早期我们使用该方案进行监控,但是现在我们决定更换方案。

原因如下:
1)目前(prometheus-pve-exporter 2.0.1)该方案无法抓取 Disk Usage 指标;
2)该监控方案为开源项目,我们认为(并未实际对比)官方方案会更好(或未来会发展更好);

节点监控、虚拟机监控:PVE Metirc Server + InfluxDB + Grafana
PVE Metirc Server + InfluxDB + Grafana
Telegraf + InfluxDB
Telegraf + InfluxDB
Zabbix + Proxmox
Proxmox monitoring and integration with Zabbix
监控 Ceph 集群
Prometheus Module: 1)https://docs.ceph.com/en/latest/mgr/prometheus/#
Prometheus:
Grafana Dashboard: 1)https://grafana.com/grafana/dashboards/2842-ceph-cluster/ 2)https://grafana.com/grafana/dashboards/5342-ceph-pools/ 3)https://grafana.com/grafana/dashboards/5336-ceph-osd-single/[……]

READ MORE

「Docker」- 部署 Registry 服务

[……]

READ MORE

「Prometheus」- 概念术语

概览系统(=> INTRODUCTION/Overview)
Prometheus(我们用 Prom 简写代指),监控及告警工具,由 SoundCloud 构建,现已开源,并且已经加入 CNCF 组织(紧随 Kubernetes 之后)。
Prom 采集指标,并作为时序数据存储。例如 指标信息、时间戳、被称为标签的键值对 一起存储。
特性特征: 1)多维度的数据模型(由指标名、键值对标识的时序数据) 2)PromQL 灵活的数据查询语句; 3)不依赖分布式存储;单个服务器节点是自治的; 4)HTTP and Pull 来主动抓取指标数据; 5)亦能够通过 Push Gateway 来主动推送数据; 6)通过静态配置或服务发现的方式来主动抓取指标; 7)支持多种图形模式和仪表板;
metrics, Time series
非专业术语,metrics 指数值化的测量。Time series,指随着时间的推移而记录的变化。
通过 Metrics 和 Time Series 能够反映出应用程序的运行情况,让我们找到问题所在。
核心组件
1)Prom Server 2)Client Libraries,用于与应用程序集成; 3)Push Gateway,推送网关,以允许应用主动推送; 4)Exporters,暴露指标; 5)Alertmanger,负责告警; 6)其他周边工具;
多数组件以 Go 编写,所以构建和运行比较容易。
系统架构

根据配置的 Job 来抓取指标(直接抓取或通过 Push-Gateway 来获取); 将指标进行本地存储,并针对指标运行规则(聚合并生成新的指标,或产生告警); 通过 Grafana 来显示指标;
应用场景
适用场景: 1)记录纯数字性质的指标; 2)它既适合以机器为中心的监控,也适合监控高度动态的面向服务的架构; 3)在微服务中,它对多维数据收集和查询的支持是一个特殊的优势。
潜在问题(或不适用的场景) 1)Prometheus 重视可靠性,而非精准性,所以如果需要较高精准度,则无法依赖于 Prometheus 来实现;
监控对比(=>INTRODUCTION/Comparison to alternatives)
Comparison to alternatives | Prometheus
官方 Comparison to alternatives 文档,提供 Prom 与其他监控产品的对比。
我们相信市场及多数人的选择,所以我们未曾详细阅读该文档。
常见问题(=> INTRODUCTION/FAQ)
FAQ | Prometheus
官方 FAQ 文档,是 P[……]

READ MORE

「Learning」- Key Results(关键结果)

所有「未实现」的 Node,全部采用空心; 所有「正实现」的 Node,全部采用金色(goldenrod1); 所有「已实现」的 Node,全部采用实心;所谓「已实现」,是指:其作为工具,能够满足日常需要,能够解决已知问题;[……]

READ MORE

「ENGLISH」- 概念术语

音素(Phoneme)
英语的音素是指语言中最小的音段,是构成单词和语音的基本单位。英语中的音素共有 44 个,包括 20 个元音和 24 个辅音;
举例:
元音:/i:/(eat)、/ɪ/(it)、/æ/(cat)、/ɑ:/(car)、/ʌ/(cup)、/ʊ/(put)、/ə/(sofa)、/ɜ:/(fur)、/ɔ:/(law)、/u:/(rule)
辅音:/p/(pen)、/b/(book)、/t/(top)、/d/(dog)、/k/(key)、/g/(go)、/f/(fish)、/v/(very)、/s/(sun)、/z/(zebra)、/ʃ/(she)、/ʒ/(vision)、/h/(hat)、/m/(man)、/n/(net)、/ŋ/(sing)、/l/(let)、/r/(red)、/j/(yes)、/w/(we)
音标(Phonetic Notation)
英语音标(”phonetic symbol”或”phonetic notation”)是一种用来表示英语单词发音的符号系统。它由音素(语音单元)的发音特征组成,包括元音、辅音、浊音、清音、鼻音、爆破音等。英语音标可以帮助人们准确地掌握英语语音,尤其是对于非英语母语的人来说,更是必不可少的工具。
例如,单词“cat”的音标是/kæt/,其中/k/是爆破音,/æ/是短元音,/t/是清辅音。
又如,单词“apple”的音标是/ˈæpl/,其中/ˈ/表示重音,/æ/是短元音,/p/是爆破音,/l/是辅音,最后的/e/是弱元音。
通过学习英语音标,人们可以更加准确地读出英语单词的发音,提高听说能力。[……]

READ MORE

「ENGLISH」- 音素

元音(20)

长元音发音: 1)在发音时,集中在口腔前半部分 2)都带有 : 后缀
短元音发音时: 2)在发音时,集中在口腔后半部分
辅音(28)[……]

READ MORE

「ENGLISH」- Capitalization in Titles

According to most style guides, nouns, pronouns, verbs, adjectives, and adverbs are the only words capitalized in titles of books, articles, and songs.
Prepositions, articles, and conjunctions aren’t capitalized (unless they’re the first or last word).
参考文献
Title Capitalization Rules | Grammarly[……]

READ MORE

「nil」- A

association
assure 向……保证 I can assure you of the reliability of the news. I assure you my actions will correspond with my words. He hastended to assure us that the press would not be informed. 急忙保证
addittionally 除此之外
availability 可用性 有效性 The availability of cheap long-term credit would help small business. Before travelling we must ensure the availabilit of petrol and oil.
available 可用的 可获得的 Since 1978, the amount of money availability to buy books has fallen by 17%.
address:演说、向……致辞;忙于;演讲、地址; He is due to address a conference on human rights next week. 发表演说 The two foreign ministers did not address each other directly when they last met. 外交部长,没有直接语言交流 Mr.King sought to address those fears when he spoke at the meeting. 试图消除恐惧
authentication;n.;身份验证; 认证;鉴定; the process or action of proving or showing something to be true, genuine, or valid. 所以 authentication 不能也有验证的意思。[……]

READ MORE

「nil」- B

bird have a bird’s eye view 看的长远,鸟瞰 Mr.Brow gave a bird’s-eye view of the situation.
balance a balanceing act 平衡 The UN must perform a delicate balancing act between the different sides in the conflict. 微妙的平衡
broad:宽的、广阔的、广泛的 He had broad shoulders and powerful arms. 肩膀宽大,双臂有力 Industrial modernization opens up broad prospects for youth. 工业现代化为青年开辟广阔前程。
broaden:扩大 是变宽 Our ountry has been trying to broaden its commerce with other nations. 扩大贸易 Education and experiences broaden his vision and understanding. 扩展视野
basis on as regular basis 经常 We’re going to be meeting there on a regular basis. I hope you all will speak about and watch our program on a daily basis.[……]

READ MORE

「nil」- C

内容简介
completely 完全地;complete 完全的、彻底的;完成; She used to be terribly shy, but a year abroad has compllete ly tranformaed her.
crucial:至关重要的、关键的;
critical:关键的; Environmentalists say a critical factor in the city’s pollution is its population.
conclusion 结论 jump to a conclusion 草率决定 We can safely draw some conclusion from our discussion. New evidence might lead to the conclusion that we are wrong. It look the jury some time to reach the conculustion that she was guilty.
consuming 强烈的 消耗的 consumption 消耗 all-consuming 耗时耗力的
cutback 减少、削减 People are concered about the cutback in federal welfare programs. 人们关注着联邦福利计划的削减。 The 200-person staff cutback was announced yesterday
cut cut short 缩短 打断
come into play 开始活动,开始起作用 The new rules have already come into play. Personal feelings should not come into play when one has to make business decisions.
common have……in common (with) 和……共同之处 The only thing we have in common is that we’ve both been to France.
case in some cases 在某些情况下。[……]

READ MORE

「nil」- D

内容简介
defensive:防御的;防守的; Troops took up a defensive position around the town. Their questions about the money put her on the defensive. The Government hastily organized defensive measures against the raids.[……]

READ MORE

「nil」- G

内容简介
give off 发出 放出 If plastic and rubber are burnt, they’ll give off poisonous gased. Fireflies give off flashes of light when they fly at night. The flowers gave off a sweet fragrance.[……]

READ MORE

「nil」- H

内容简介
handle get a handle on 控制 掌控 When you have got a handle on your anxiety you can gegin to control it.
horizon:视野、眼界;地平线; broaden one’s horizons:开阔视野 In another fifteen minutes, the sun would begin ascending over the horizon. 地平线 The course in history opend up new horizons for the students. 打开新视野 Reading not only makes one knowledgeable but broadens one’s horizons as well. The visit to the Far East certainly broadened our horizons.[……]

READ MORE

「nil」- I

内容简介
important
intimate 亲密的
immerse be immersed in 沉浸于…… The whole city was immersed in a festival atmosphere.
issue 问题;期号;发行物; A key issue for higher education in the 1990’s is the need for greater diversity of courses. 重要议题、课程多样化。
inclusive 包括的 包含的 include v. 包含 including prep. 包括 The monthly rent is $450, inclusive of electricity and water. It’s an all inclusive price; there is nothing extra to pay. We have some excellent all-inclusive holidays at very reasonable prices.[……]

READ MORE

「nil」- J

内容简介
Jealous 嫉妒[……]

READ MORE

「nil」- M

内容简介
mentally 精神的
mental 精神
mature Boys mature more slowly than girls, both physically and psychologically.
make make time for 为什么腾出时间[……]

READ MORE

「nil」- N

内容简介
now now that 既然[……]

READ MORE

「English Words」- P

productive:富有成效的,多产的 We had a productive meeting that sloved problems.
product v. 生产 I’m quite pleased that we have the capacity to produce that much food.
production n.生产 The country is totally self-sufficient in food production.
products n.产品 Do you eat nonorganic cereals, bread, or other grain products?
persuad 说服[……]

READ MORE

「nil」- R

Rhyme 押韵 Rhyme the name: rhyme their name with another word
rock v. 摇动、使摇晃 His body rocked from side to side with the train. 随火车左右摇晃。 His death rocked the fashion bussines.
ridiculous 可笑的、荒谬的 He blushed to admit that he had made a ridiculous mistake.
right right way 立刻启程。 I suggest that we start out right way. The nearest research observatory should be contacted right away.
resort 度假圣地;凭借; Hawaii is a famous tourist resort. 度假圣地 The best means we should resort to is to build a long dam along the river. 我们应当采取的最好措施[……]

READ MORE

「nil」- S

内容简介
significant:意义重大 Your success today may be significant for your whole life.
signal 信号;发出信号;
sign 符号 As soon as the seat belt sign had been switched off, we rushed out.
sympton 信号、症状(内部变化,而导致外在表现) If the sympton persist, it is important to go to your doctor.
strive 努力 奋斗 Strive for the best, prepare for the worst.[……]

READ MORE

「nil」- T

内容简介
tropical 热带的 sub-tropical 亚热带 A number of tropical plants have been naturalized in China. Rice is the import cereal in many tropical and sub-tropical areas.
ton a ton of 大量的 Computers can store a ton of data and their laptop companions make all that information portable.[……]

READ MORE

「nil」- U

内容简介
urge 力劝;迫切要求[……]

READ MORE

「nil」- W

内容简介
write write off 勾销、取消 We decided to write off the rest of the day and go shopping. 取消当天日程去购物。 The president persuaded the West to write off Polish debts.
well as well 也 She has resigned. Two days later the three other teachers resigned as well.[……]

READ MORE