Detailed explanation of Linux copy and paste in VMware virtual machine

Detailed explanation of Linux copy and paste in VMware virtual machine

1. Linux under VMware Workstation:

1. Update source (optional)

vi /etc/apt/sources.list

Adjust the domestic source address and search online by yourself.

#kali official source deb http://http.kali.org/kali kali-rolling main non-free contrib
#Tsinghua University source deb http://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free
 deb-src https://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free

2. Update (optional)

apt-get update
apt-get upgrade
apt-get dist-upgrade

3. Install open-vm-tools-desktop

apt-get install open-vm-tools-desktop fuse

2. Copy and paste issues with VMware vSphere and ESXi

By default, VMware vSphere has disabled copy and paste operations for ESXi to prevent the exposure of sensitive data that has been copied to the clipboard.

1. Use vSphere Client to log in to vCenter Server and select the corresponding virtual machine and turn off the power.

2. Select the virtual machine, right-click and select "Edit Settings", then select "Options", "Advanced", "General", and "Configuration Parameters".

3. Click Add Row and type the following values ​​in the Name and Value columns, click OK, and then close the dialog box.

isolation.tools.copy.disable = false
isolation.tools.paste.disable = false

4. Start the virtual machine to copy and paste.

3. Copy and paste shortcut keys under Linux.

1. In the terminal:

Copy command: Ctrl + Shift + C key combination.

Paste command: Ctrl + Shift + V key combination.

2. In the console:

Copy command: Press Ctrl + Insert key combination or select with mouse to copy.

Paste command: Press the Shift + Insert key combination or click the mouse wheel to paste.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Linux Learning CentOS (I) ---- Install CentOS 7 in VMware Virtual Machine (Graphic Tutorial)
  • VMware installs Linux system on virtual machine
  • Graphic tutorial for installing Linux in VMware virtual machine (advanced installation)
  • [Linux] Detailed explanation on how to configure static IP in VMware virtual machine
  • VMware 14.0.0 version virtual machine installation Ubuntu 16.04 LTS version Linux system graphic tutorial
  • Kali Linux Vmware virtual machine installation (illustration and text)
  • Examples of several ways to access the Internet in Linux under VMware virtual machines
  • Installing linux7.2 Internet access configuration tutorial on VMware virtual machine under win7

<<:  Tutorial on installing JDK Tomcat MySQL on Linux (remote access using Mac)

>>:  Conventional JS processing functions for Vue Element front-end application development

Recommend

MySQL stored procedure method example of returning multiple values

This article uses an example to describe how to r...

Vue realizes the progress bar change effect

This article uses Vue to simply implement the cha...

Introduction to the process of building your own FTP and SFTP servers

FTP and SFTP are widely used as file transfer pro...

14 practical experiences on reducing SCSS style code by 50%

Preface Sass is an extension of the CSS3 language...

Windows10 mysql 8.0.12 non-installation version configuration startup method

This article shares the specific steps for config...

Native js to implement form validation function

Table of contents When developing, analyzing the ...

js to write the carousel effect

This article shares the specific code of js to ac...

Introduction to the use of MySQL source command

Table of contents Thoughts triggered by an online...

Detailed example code of mysql batch insert loop

background A few days ago, when I was doing pagin...

Vue implements user login and token verification

In the case of complete separation of the front-e...

Implementation of element multiple form validation

In the project, form testing is often encountered...

Implementation of MySQL master-slave status check

1. Check the synchronization status of A and B da...

How to encapsulate query components based on element-ui step by step

Table of contents Function Basic query functions ...

Which scenarios in JavaScript cannot use arrow functions

Table of contents 1. Define object methods 2. Def...

Analysis of multi-threaded programming examples under Linux

1 Introduction Thread technology was proposed as ...