kubuntu-desktop на Linux Mint 19.1 'software-properties-kde' Проблема

если вы хотите скопировать текстовое содержимое в zip-файл, просто заархивируйте файл для формата файла, а для отображения содержимого используйте zcat

# unzip ADUReport.zip
Archive:  ADUReport.zip
  End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
unzip:  cannot find zipfile directory in one of ADUReport.zip or
        ADUReport.zip.zip, and cannot find ADUReport.zip.ZIP, period.
 #gunzip ADUReport.zip
gunzip: ADUReport.zip: unknown suffix -- ignored
 zcat ADUReport.zip

#zcat: ADUReport.zip: not in gzip format
#gzip ADUReport.zip
#l
 #zcat ADUReport.zip.gz
1
05.03.2019, 18:34
1 ответ

Цитата изhttps://www.linuxjournal.com/content/kbuild-linux-kernel-build-system

Not everything in the kernel can be compiled as a module.

Many features are so intrusive that you have to decide at compilation time whether the kernel will support them. For example, you can't add Symmetric Multi-Processing (SMP) or kernel preemption support to a running kernel. So, using a boolean config symbol makes sense for those kinds of features.

Most features that can be compiled as modules also can be added to a kernel at compile time. That's the reason tristate symbols exist—to decide whether you want to compile a feature built-in (y), as a module (m) or not at all (n).

Я думаю, это понятно. :Если есть только два варианта, используйте логическое значение, если есть три варианта, используйте три состояния. Все остальное не имело бы смысла.

2
28.01.2020, 00:19

Теги

Похожие вопросы