Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the rocket domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the mailchimp-for-wp domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: 函数 _load_textdomain_just_in_time 的调用方法不正确soledad 域的翻译加载触发过早。这通常表示插件或主题中的某些代码运行过早。翻译应在 init 操作或之后加载。 请查阅调试 WordPress来获取更多信息。 (这个消息是在 6.7.0 版本添加的。) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114
在 Linux 中复制文件:这些选项可用 - Practical Tips

在 Linux 中复制文件:这些选项可用

by Corinna

在 Linux 中复制文件有几种可用的方法。这取决于你使用的版本

在 Linux 中使用桌面环境复制文件:说明

切换到自由操作系统后,在 Linux 下复制文件并不总是那么容易理解。如果你使用的是带有桌面环境的版本,如 Mint、Ubuntu 或 GNOME,复制过程通常与其他操作系统相同。

  • 使用已安装的文件管理器(如 Nautilus)右击选择所需文件。这时会出现一个下拉菜单。
  • 在下拉菜单中,你会发现 “复制 “或 “拷贝 “选项。请确认。
  • 然后切换到目标目录。右键单击目录,再次打开下拉菜单。
  • 确认粘贴或插入。现在文件已复制到目录中。此方法可用于以下许多 Linux 版本。
  • 注:另外,有些桌面环境甚至支持简单的拖放操作。要做到这一点,按住鼠标左键将文件拖到目标目录。

Linux:通过 cp 命令复制文件

当然,你也可以在 Linux 中使用终端命令复制一个或多个文件。为此,请使用 [Ctrl] + [Alt] + [T] 组合键打开终端。

  • cp 命令是 Linux 中复制文件的标准命令。为此,请在终端中输入 cp [文件] [目标目录]。当然,要去掉括号。
  • 命令的最终结果如下:cp readme.text home/username/documents。命令执行后,文件将被复制。
  • 在 cp 之后可以添加选项。通过 -b
  • (–backup)创建额外备份,而通过 -i
  • 如果要复制目录,请指定目录而不是文件。如下所示:cp home/username/downloads/projects home/username/documents。整个项目目录就会被复制到文档中:则可使用 -i
  • 您必须输入包括文件扩展名在内的文件名,例如 readme.txt。之后是目标文件夹的完整文件路径,如 home/username/documents.
  • (–interactive)确认是否覆盖另一个文件。-u(–更新)选项会覆盖目录中已存在的要复制文件的旧版本。

Related Articles

Leave a Comment