Команда при установке линукс

install command in Linux with examples

install command is used to copy files and set attributes. It is used to copy files to a destination of the user’s choice, If the user want to download and install a ready to use package on GNU/Linux system then he should use apt-get, apt, yum, etc depending on their distribution.

install [OPTION]. [-T] SOURCE DEST install [OPTION]. SOURCE. DIRECTORY install [OPTION]. -t DIRECTORY SOURCE. install [OPTION]. -d DIRECTORY.

Here, the first three forms are used to copy the SOURCE to DEST or multiple SOURCE(s) to the existing DIRECTORY while setting permission modes and owner/group. But the fourth form is used to create all components of the given DIRECTORY.

  • –backup[=CONTROL] : This option is used to create a backup of each existing destination file.
  • -b : Like –backup but It will not accept an argument.
  • -C, –compare : Used to compare each pair of source and destination files. But in some cases it does not modify the destination.
  • -d, –directory : It will act as directory names towards all arguments. And create all components of the specified directories.
  • -g, –group=GROUP : Used to set group ownership, instead of processing the current group.
  • -m, –mode=MODE : Set permission mode (as in chmod).
  • -o, –owner=OWNER : Set ownership (super-user only).
  • -p, –preserve-timestamps : Apply access/modification times of SOURCE files to corresponding destination files
  • -t, –target-directory=DIRECTORY : Copy all SOURCE arguments into DIRECTORY.
  • -T, –no-target-directory : Treat DEST as a normal file.
  • -v, –verbose : Used to show the name of each directory as it is created.
  • –help : Display the help message and exit.
  • –version : Shows the version information and exit.
  • Copies two files rocket.c and rocket to directory demo.
  • Compare and copies files(observe the difference).
  • Using -T option(observe that it makes a file instead of directory).
  • Changing owner and permissions.
  • Printing version information.
Читайте также:  Git linux config files

Источник

Linux Install Command Tutorial

Find out everything you need to know about the Linux install command, and much more in this detailed blog.

Linux Install Command Tutorial

List of content you will read in this article:

The install command in Linux is used to copy files to a given location and assign attributes to them. It transfers data to a designated location. As the name implies, it is not used to install applications. Depending on the distribution method, we could use apt-get, apt, yum, and other tools to download and install the software. It’s quite close to the order ‘cp’. It also gives us leverage over the properties of the destination data.

It’s mostly used to copy programs from makefiles to their final destination. It would not copy files to itself. So in this guide, you will get brief information on the Linux «install command» and its use in all Linux distros.

Linux Install Command, All Linux Distros

The install command incorporates components from various commands, including cp, chown, chmod, mkdir, and strip. It enables one to combine the functions of all of these commands into a single operation.

install [OPTION]. [-T] SOURCE DEST

install [OPTION]. SOURCE. DIRECTORY

install [OPTION]. -t DIRECTORY SOURCE.

install [OPTION]. -d DIRECTORY.

The first three types are used to copy the source to a new directory or several sources to an existing directory and set permission modes and owner/group. On the other hand, the fourth form is used to construct all of the directory’s components.

Install Option Commands

The install command provides the following option:

  • —backup[=CONTROL]: For each current destination file, this alternative generates a backup file.
  • -b: It’s similar to the «—backup» alternative, except it doesn’t need a claim.
  • -C, —compare: It’s used to compare each pair of source and destination files, and it doesn’t always change the destination.
  • -d, —directory: Both arguments would be treated as directory names if the «-d or -directory» option is defined.
  • -D: It’s used to build all of the target directory’s components before copying the source to the destination.
  • -g, —group=GROUP: It’s used to determine the size of a group’s holdings.
  • -m, —mode=MODE:Instead of rwxr-xr-x, it is used to set the authorization mode (as in chmod).
  • -o, —owner=OWNER: It’s used to specify who owns what. Just the superuser has access to it.
  • -p, —preserve-timestamps: The access time of the source file is applied to the specified file.
  • -s, —strip: The strip symbol tables are generated with it.
  • —strip-program=PROGRAM: It is used to remove the program’s binaries.
  • -S, —suffix=SUFFIX: It’s used to replace the backup suffix that’s usually used.
  • -t, —target-directory=DIRECTORY: It copies all source arguments into the designated directory.
  • -T, —no-target-directory: It’s used to handle the destination file as if it were a regular file.
  • -v, —verbose: It is used to print the directory names.
  • —preserve-context: It aims to keep the SELinux security background secure.
  • -Z: It’s used to set the SELinux protection background of the destination file, as well as the default form of each newly generated directory.
  • —help: The support manual is shown using the ‘-help’ option.
  • —version: It’s used to display the details about the edition.
  1. Using the install button, we can tailor each folder and file to our specific requirements. It’s seen like this:
Читайте также:  Установка linux через bios

install -D /src/folder/*.txt /dest/folder

The ‘-D’ choice in the above command copies all text files from the source folder to the destination folder.

install -d /destination/newfolder

The command above will generate a new folder named ‘newfolder’ in the designated directory.

sudo install xyz.txt abc.txt Pictures

The above command copies the specified files to the ‘Pictures’ folder.

Conclusion

Many times people get confused with the install function and think it is used to install the software. Instead, it is widely used as a copy function. Different option commands can be used to execute different commands. We hope you got the complete details through our article and will use this command in your system.

Источник

Оцените статью
Adblock
detector