From 8cd35f2ca654f5616c7942e55575fbfcde766970 Mon Sep 17 00:00:00 2001 From: LazyWolf Lin Date: Sun, 2 Feb 2020 21:22:38 +0800 Subject: [PATCH 1/4] Translating 4 Key Changes to Look Out for in Linux Kernel 5.6.md. --- ...ges to Look Out for in Linux Kernel 5.6.md | 98 +++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md diff --git a/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md b/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md new file mode 100644 index 0000000000..6aa6c09972 --- /dev/null +++ b/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md @@ -0,0 +1,98 @@ +[#]: collector: (lujun9972) +[#]: translator: (LazyWolfLin) +[#]: reviewer: ( ) +[#]: publisher: ( ) +[#]: url: ( ) +[#]: subject: (4 Key Changes to Look Out for in Linux Kernel 5.6) +[#]: via: (https://itsfoss.com/linux-kernel-5-6/) +[#]: author: (Ankush Das https://itsfoss.com/author/ankush/) + +四大亮点带你看 Linux Kernel 5.6 +====== + +当我们体验 Linux 5.5 稳定发行版带来更好的硬件支持时,Linux 5.6 已经来了。 + +说实话,Linux 5.6 比 5.5 更令人兴奋。即使即将发布的 Ubuntu 20.04 LTS 发行版将开箱集成 Linux 5.5,你也需要真正了解 Linux 5.6 kernel 为我们提供的功能。 + +我将在本文中重点介绍Linux 5.6 发行版中值得期待的关键更改和功能: + +### Linux 5.6 功能亮点 + +![][1] + +I’ll try to keep the list of features up-to-date whenever there’s a piece of new information on Linux 5.6. But, for now, let’s take a look at what we already know so far: + +#### 1\. 支持 WireGuard + +WireGuard will be added to Linux 5.6 – potentially replacing [OpenVPN][2] for a variety of reasons. + +You can learn more about [WireGuard][3] on their official site to know the benefits. Of course, if you’ve used it, you might be aware of the reasons why it’s potentially better than OpenVPN. + +Also, [Ubuntu 20.04 LTS will be adding support for WireGuard][4]. + +#### 2\. 支持 USB4 + +Linux 5.6 will also include the support of **USB4**. + +In case you didn’t know about USB 4.0 (USB4), you can read the [announcement post][5]. + +As per the announcement – “_USB4 doubles the maximum aggregate bandwidth of USB and enables multiple simultaneous data and display protocols._“ + +Also, while we know that USB4 is based on the Thunderbolt protocol specification, it will be backward compatible with USB 2.0, USB 3.0, and Thunderbolt 3 – which is great news. + +#### 3\. 使用 LZO/LZ4 压缩 F2FS 数据 + +Linux 5.6 will also come with the support for F2FS data compression using LZO/LZ4 algorithms. + +In other words, it is just a new compression technique for the Linux file-system where you will be able to select particular file extensions. + +#### 4\. 解决 32 位系统的 2038 年问题 + +Unix and Linux store the time value in a 32-bit signed integer format which has the maximum value of 2147483647. Beyond this number, due to integer overflow, the values will be stored as a negative number. + +This means that for a 32-bit system, the time value cannot go beyond 2147483647 seconds after Jan. 1, 1970. In simpler terms, after 03:14:07 UTC on Jan. 19, 2038, due to integer overflow, the time will read as Dec. 13, 1901 instead of Jan. 19, 2038. + +Linux kernel 5.6 has a fix for this problem so that 32-bit systems can run beyond the year 2038. + +#### 5\. 改进硬件支持 + +Obviously, with the next release, the hardware support will improve as well. The plan to support newer wireless peripherals will be a priority too. + +The new kernel will also add the support for MX Master 3 mouse and other wireless Logitech products. + +In addition to Logitech products, you can expect a lot of different hardware support as well (including the support for AMD GPUs, NVIDIA GPUs, and Intel Tiger Lake chipset support). + +#### 6\. 其他更新 + +Also, in addition to all these major additions/support in Linux 5.6, there are several other changes that would be coming with the next kernel release: + + * Improvements in AMD Zen temperature/power reporting + * A fix for AMD CPUs overheating in ASUS TUF laptops + * Open-source NVIDIA RTX 2000 “Turing” graphics support + * FSCRYPT inline encryption. + + + +[Phoronix][6] 跟踪了 Linux 5.6 带来的许多技术性更改。因此,如果你好奇 Linux 5.6 所涉及的全部更改,则可以亲自了解一下。 + +现在你已经了解了 Linux 5.6 发布版带来的新功能,对此有什么看法呢?在下方评论中留下你的看法。 + +-------------------------------------------------------------------------------- + +via: https://itsfoss.com/linux-kernel-5-6/ + +作者:[Ankush Das][a] +选题:[lujun9972][b] +译者:[LazyWolfLin](https://github.com/LazyWolfLin) +校对:[校对者ID](https://github.com/校对者ID) + +本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 + +[a]: https://itsfoss.com/author/ankush/ +[b]: https://github.com/lujun9972 +[1]: https://i0.wp.com/itsfoss.com/wp-content/uploads/2020/02/linux-kernel-5.6.jpg?ssl=1 +[2]: https://openvpn.net/ +[3]: https://www.wireguard.com/ +[4]: https://www.phoronix.com/scan.php?page=news_item&px=Ubuntu-20.04-Adds-WireGuard +[5]: https://www.usb.org/sites/default/files/2019-09/USB-IF_USB4%20spec%20announcement_FINAL.pdf +[6]: https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.6-Spectacular From af6fed9160054e81515d37cd175e9b0faab1d544 Mon Sep 17 00:00:00 2001 From: LazyWolf Lin Date: Mon, 3 Feb 2020 10:53:39 +0800 Subject: [PATCH 2/4] Translating 4 Key Changes to Look Out for in Linux Kernel 5.6.md. --- ...ges to Look Out for in Linux Kernel 5.6.md | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md b/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md index 6aa6c09972..65022a8f4e 100644 --- a/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md +++ b/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md @@ -20,31 +20,31 @@ ![][1] -I’ll try to keep the list of features up-to-date whenever there’s a piece of new information on Linux 5.6. But, for now, let’s take a look at what we already know so far: +当 Linux 5.6 有新消息时,我将努力更新这份功能列表。但现在让我们先看一下当前已知的内容: #### 1\. 支持 WireGuard -WireGuard will be added to Linux 5.6 – potentially replacing [OpenVPN][2] for a variety of reasons. +WireGuard 将被添加到 Linux 5.6,出于各种原因的考虑它可能将取代 [OpenVPN][2]。 -You can learn more about [WireGuard][3] on their official site to know the benefits. Of course, if you’ve used it, you might be aware of the reasons why it’s potentially better than OpenVPN. +你可以在官网上进一步了解 [WireGuard][3] 的优点。当然,如果你使用过它,那你可能已经知道它比 OpenVPN 更好的原因。 -Also, [Ubuntu 20.04 LTS will be adding support for WireGuard][4]. +同样,[Ubuntu 20.04 LTS 将支持 WireGuard][4]。 #### 2\. 支持 USB4 -Linux 5.6 will also include the support of **USB4**. +Linux 5.6 也将支持 **USB4**。 -In case you didn’t know about USB 4.0 (USB4), you can read the [announcement post][5]. +如果你不了解 USB 4.0 (USB4),你可以阅读这份[文档][5]. -As per the announcement – “_USB4 doubles the maximum aggregate bandwidth of USB and enables multiple simultaneous data and display protocols._“ +根据文档,“_USB4 将使 USB 的最大带宽增加一倍并支持同时多个数据传输和显示接口并行。_” -Also, while we know that USB4 is based on the Thunderbolt protocol specification, it will be backward compatible with USB 2.0, USB 3.0, and Thunderbolt 3 – which is great news. +另外,虽然我们都知道 USB4 基于 Thunderbolt 接口协议,但它将向后兼容 USB 2.0、USB 3.0 以及 Thunderbolt 3,这将是一个好消息。 #### 3\. 使用 LZO/LZ4 压缩 F2FS 数据 -Linux 5.6 will also come with the support for F2FS data compression using LZO/LZ4 algorithms. +Linux 5.6 也将支持使用LZO/LZ4 算法压缩 F2FS 数据。 -In other words, it is just a new compression technique for the Linux file-system where you will be able to select particular file extensions. +换句话说,这只是 Linux 文件系统的一种新压缩技术,你可以选择待定的文件扩展名。 #### 4\. 解决 32 位系统的 2038 年问题 From c7e1c222efd63432f37298309dc0cbcd2362d003 Mon Sep 17 00:00:00 2001 From: LazyWolf Lin Date: Mon, 3 Feb 2020 14:21:53 +0800 Subject: [PATCH 3/4] Translating 4 Key Changes to Look Out for in Linux Kernel 5.6.md. --- ...ges to Look Out for in Linux Kernel 5.6.md | 26 +++++++++---------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md b/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md index 65022a8f4e..e745b7e8a0 100644 --- a/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md +++ b/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md @@ -20,7 +20,7 @@ ![][1] -当 Linux 5.6 有新消息时,我将努力更新这份功能列表。但现在让我们先看一下当前已知的内容: +当 Linux 5.6 有新消息时,我会努力更新这份功能列表。但现在让我们先看一下当前已知的内容: #### 1\. 支持 WireGuard @@ -48,30 +48,28 @@ Linux 5.6 也将支持使用LZO/LZ4 算法压缩 F2FS 数据。 #### 4\. 解决 32 位系统的 2038 年问题 -Unix and Linux store the time value in a 32-bit signed integer format which has the maximum value of 2147483647. Beyond this number, due to integer overflow, the values will be stored as a negative number. +Unix 和 Linux 将时间值以 32 位有符号整数格式存储,其最大值为 2147483647。时间值如果超过这个数值则将由于整数溢出而存储为负数。 -This means that for a 32-bit system, the time value cannot go beyond 2147483647 seconds after Jan. 1, 1970. In simpler terms, after 03:14:07 UTC on Jan. 19, 2038, due to integer overflow, the time will read as Dec. 13, 1901 instead of Jan. 19, 2038. +这意味着对于32位系统,时间值不能超过 1970 年 1 月 1 日后的 2147483647 秒。也就是说,在 UTC 时间 2038 年 1 月 19 日 03:14:07 时,由于整数溢出,时间将显示为 1901 年 12 月 13 日而不是 2038 年 1 月 19 日。 -Linux kernel 5.6 has a fix for this problem so that 32-bit systems can run beyond the year 2038. +Linux kernel 5.6 解决了这个问题,因此 32 位系统可以运行到 2038 年以后。 #### 5\. 改进硬件支持 -Obviously, with the next release, the hardware support will improve as well. The plan to support newer wireless peripherals will be a priority too. +很显然,在下一次发布版中,硬件支持也将继续提升。而支持新式无线外设的计划也同样紧迫。 -The new kernel will also add the support for MX Master 3 mouse and other wireless Logitech products. +新内核中将增加对 MX Master 3 鼠标以及罗技其他无线产品的支持。 -In addition to Logitech products, you can expect a lot of different hardware support as well (including the support for AMD GPUs, NVIDIA GPUs, and Intel Tiger Lake chipset support). +除了罗技的产品外,你还可以期待获得许多不同硬件的支持(包括对 AMD GPUs、NVIDIA GPUs 和 Intel Tiger Lake 芯片组的支持)。 #### 6\. 其他更新 -Also, in addition to all these major additions/support in Linux 5.6, there are several other changes that would be coming with the next kernel release: - - * Improvements in AMD Zen temperature/power reporting - * A fix for AMD CPUs overheating in ASUS TUF laptops - * Open-source NVIDIA RTX 2000 “Turing” graphics support - * FSCRYPT inline encryption. - +此外,Linux 5.6 中除了上述主要的新增功能或支持外,下一个内核版本也将进行其他一些改进: + * 改进 AMD Zen 的温度/功率报告 + * 修复华硕飞行堡垒系列笔记本中 AMD CPUs 过热 + * 开源支持 NVIDIA RTX 2000 图灵系列显卡 + * 内建 FSCRYPT 加密 [Phoronix][6] 跟踪了 Linux 5.6 带来的许多技术性更改。因此,如果你好奇 Linux 5.6 所涉及的全部更改,则可以亲自了解一下。 From cba0d8347cad00c1c571175421b1cff74b0a63c6 Mon Sep 17 00:00:00 2001 From: LazyWolf Lin Date: Mon, 3 Feb 2020 17:37:51 +0800 Subject: [PATCH 4/4] Checking translation. --- ...ges to Look Out for in Linux Kernel 5.6.md | 98 ------------------- ...ges to Look Out for in Linux Kernel 5.6.md | 6 +- 2 files changed, 3 insertions(+), 101 deletions(-) delete mode 100644 sources/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md diff --git a/sources/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md b/sources/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md deleted file mode 100644 index 4196e2c97f..0000000000 --- a/sources/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md +++ /dev/null @@ -1,98 +0,0 @@ -[#]: collector: (lujun9972) -[#]: translator: (LazyWolfLin) -[#]: reviewer: ( ) -[#]: publisher: ( ) -[#]: url: ( ) -[#]: subject: (4 Key Changes to Look Out for in Linux Kernel 5.6) -[#]: via: (https://itsfoss.com/linux-kernel-5-6/) -[#]: author: (Ankush Das https://itsfoss.com/author/ankush/) - -4 Key Changes to Look Out for in Linux Kernel 5.6 -====== - -While we’ve already witnessed the stable release of Linux 5.5 with better hardware support, Linux 5.6 is next. - -To be honest, Linux 5.6 is much more exciting than 5.5. Even though the upcoming Ubuntu 20.04 LTS release will feature Linux 5.5 out of the box, you should really know what Linux 5.6 kernel has in store for us. - -In this article, I’ll be highlighting the key changes and features that you can expect with Linux 5.6 release: - -### Linux 5.6 features highlight - -![][1] - -I’ll try to keep the list of features up-to-date whenever there’s a piece of new information on Linux 5.6. But, for now, let’s take a look at what we already know so far: - -#### 1\. WireGuard Support - -WireGuard will be added to Linux 5.6 – potentially replacing [OpenVPN][2] for a variety of reasons. - -You can learn more about [WireGuard][3] on their official site to know the benefits. Of course, if you’ve used it, you might be aware of the reasons why it’s potentially better than OpenVPN. - -Also, [Ubuntu 20.04 LTS will be adding support for WireGuard][4]. - -#### 2\. USB4 Support - -Linux 5.6 will also include the support of **USB4**. - -In case you didn’t know about USB 4.0 (USB4), you can read the [announcement post][5]. - -As per the announcement – “_USB4 doubles the maximum aggregate bandwidth of USB and enables multiple simultaneous data and display protocols._“ - -Also, while we know that USB4 is based on the Thunderbolt protocol specification, it will be backward compatible with USB 2.0, USB 3.0, and Thunderbolt 3 – which is great news. - -#### 3\. F2FS Data Compression Using LZO/LZ4 - -Linux 5.6 will also come with the support for F2FS data compression using LZO/LZ4 algorithms. - -In other words, it is just a new compression technique for the Linux file-system where you will be able to select particular file extensions. - -#### 4\. Fixing the Year 2038 problem for 32-bit systems - -Unix and Linux store the time value in a 32-bit signed integer format which has the maximum value of 2147483647. Beyond this number, due to integer overflow, the values will be stored as a negative number. - -This means that for a 32-bit system, the time value cannot go beyond 2147483647 seconds after Jan. 1, 1970. In simpler terms, after 03:14:07 UTC on Jan. 19, 2038, due to integer overflow, the time will read as Dec. 13, 1901 instead of Jan. 19, 2038. - -Linux kernel 5.6 has a fix for this problem so that 32-bit systems can run beyond the year 2038. - -#### 5\. Improved Hardware Support - -Obviously, with the next release, the hardware support will improve as well. The plan to support newer wireless peripherals will be a priority too. - -The new kernel will also add the support for MX Master 3 mouse and other wireless Logitech products. - -In addition to Logitech products, you can expect a lot of different hardware support as well (including the support for AMD GPUs, NVIDIA GPUs, and Intel Tiger Lake chipset support). - -#### 6\. Other Changes - -Also, in addition to all these major additions/support in Linux 5.6, there are several other changes that would be coming with the next kernel release: - - * Improvements in AMD Zen temperature/power reporting - * A fix for AMD CPUs overheating in ASUS TUF laptops - * Open-source NVIDIA RTX 2000 “Turing” graphics support - * FSCRYPT inline encryption. - - - -[Phoronix][6] tracked a lot of technical changes arriving with Linux 5.6. So, if you’re curious about every bit of the changes involved in Linux 5.6, you can check for yourself. - -Now that you’ve known about what’s coming with Linux 5.6 release – what do you think about it? Let me know your thoughts in the comments below. - --------------------------------------------------------------------------------- - -via: https://itsfoss.com/linux-kernel-5-6/ - -作者:[Ankush Das][a] -选题:[lujun9972][b] -译者:[LazyWolfLin](https://github.com/LazyWolfLin) -校对:[校对者ID](https://github.com/校对者ID) - -本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 - -[a]: https://itsfoss.com/author/ankush/ -[b]: https://github.com/lujun9972 -[1]: https://i0.wp.com/itsfoss.com/wp-content/uploads/2020/02/linux-kernel-5.6.jpg?ssl=1 -[2]: https://openvpn.net/ -[3]: https://www.wireguard.com/ -[4]: https://www.phoronix.com/scan.php?page=news_item&px=Ubuntu-20.04-Adds-WireGuard -[5]: https://www.usb.org/sites/default/files/2019-09/USB-IF_USB4%20spec%20announcement_FINAL.pdf -[6]: https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.6-Spectacular diff --git a/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md b/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md index e745b7e8a0..835b9fbae0 100644 --- a/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md +++ b/translated/tech/20200202 4 Key Changes to Look Out for in Linux Kernel 5.6.md @@ -12,9 +12,9 @@ 当我们体验 Linux 5.5 稳定发行版带来更好的硬件支持时,Linux 5.6 已经来了。 -说实话,Linux 5.6 比 5.5 更令人兴奋。即使即将发布的 Ubuntu 20.04 LTS 发行版将开箱集成 Linux 5.5,你也需要真正了解 Linux 5.6 kernel 为我们提供的功能。 +说实话,Linux 5.6 比 5.5 更令人兴奋。即使即将发布的 Ubuntu 20.04 LTS 发行版将开箱集成 Linux 5.5,你也需要真正了解 Linux 5.6 kernel 为我们提供了什么。 -我将在本文中重点介绍Linux 5.6 发行版中值得期待的关键更改和功能: +我将在本文中重点介绍 Linux 5.6 发行版中值得期待的关键更改和功能: ### Linux 5.6 功能亮点 @@ -36,7 +36,7 @@ Linux 5.6 也将支持 **USB4**。 如果你不了解 USB 4.0 (USB4),你可以阅读这份[文档][5]. -根据文档,“_USB4 将使 USB 的最大带宽增加一倍并支持同时多个数据传输和显示接口并行。_” +根据文档,“_USB4 将使 USB 的最大带宽增大一倍并支持同时多数据和显示接口并行。_” 另外,虽然我们都知道 USB4 基于 Thunderbolt 接口协议,但它将向后兼容 USB 2.0、USB 3.0 以及 Thunderbolt 3,这将是一个好消息。