「業務用エアコンのエラーコード」はこちら

2020-09

LinuxTips(RedHat系)

ユーザーの設定を変更する

ユーザーの設定を変更する ユーザーには予め、UIDやGID、ホームディレクトリなどが指定されている。これらの情報を後から...
LinuxTips(RedHat系)

ユーザーを削除する

ユーザーを削除する ユーザーを削除するコマンドはuserdel。 このコマンドを実行すると、ユーザー情報は削除されるが、...
LinuxTips(RedHat系)

一般ユーザーでroot権限のコマンドを実行する

一般ユーザーでroot権限のコマンドを実行する 一般ユーザーでログインの時、root権限のコマンドを使用する場合は、su...
LinuxTips(RedHat系)

他のユーザにファイルを見せないようにする

他のユーザにファイルを見せないようにする Linuxでは、他のユーザにファイルを見せないようにすることができる。chmo...
LinuxTips(RedHat系)

ユーザーを作成する

To create and add a new user, use the "useradd" command By specifying a user name as an argument to the command, a user will be created. The user directory will be created under the /home directory, and the group name will be the same as the user name.
LinuxTips(RedHat系)

グループを作成する

To create and add a new group, use the "groupadd" command. Information about groups is described in /etc/group and can be edited, but it is better to edit the group information with the vigr command instead of directly editing the "/etc/group" file.
LinuxTips(RedHat系)

ユーザーが所属しているグループを確認する

Check the group in /etc/passwd and /etc/group (check the gid) Users always belong to a group, and the group described in the /etc/passwd and /etc/group files is the primary group. The gid (group ID) is stored in the /etc/passwd and /etc/group files
LinuxTips(RedHat系)

ユーザを複数のグループに所属させる

Group information in Linux is stored in the "/etc/group" file, which has the following notation tama:x:500: From left to right, tama is the group name, X is the password (when it says X, it is written in the /etc/gshadow file). 500 is the GID. To make a user belong to multiple groups, edit the "/etc/group" file, but it is convenient to use the vigr command to edit the "/etc/group" file. (The operation method is the same as vi)
LinuxTips(RedHat系)

ユーザーのログイン履歴を確認する

The user's login history will be output to the /var/run/utmp and /var/log/wtmp files. This file, like the /var/log/lastlog and /var/log/btmp files, is a binary file, so it cannot be displayed by the less, cat, or tail commands. To display it, use the dedicated /usr/bin/last command.
LinuxTips(RedHat系)

ユーザーの所属グループを表示する

To check which group a particular user belongs to, use the groups command. If you run the command with no arguments, the group to which the user who executed the command belongs will be displayed. If you specify the name of the user whose group you want to display as an argument, the group to which the user belongs will be displayed.
LinuxTips(RedHat系)

グループを追加・削除する

●Add a group To create a group, use the groupadd command. When executing this command, specify the group name to be added as an argument. You will need root privileges to run this command.
LinuxTips(RedHat系)

グループパスワードを削除する

グループパスワードを削除する グループに設定したパスワードを削除するには、gpasswdコマンドにオプション「-r」か、...
LinuxTips(RedHat系)

グループにパスワードを設定する

To set a password for a group, use the gpasswd command You will be prompted to enter a password when adding a user to a group or when a user is not registered in a group. By setting a password for the group, you can prevent people from registering members to the group without permission.
LinuxTips(RedHat系)

グループに管理者を設定する

You can set up an administrator for an existing group separately from root (privileged user). The administrator set here can add and remove members, set and remove group passwords, etc. for the group. To set up an administrator, add the option "-A" to the gpasswd command and specify the user name and the group name to be managed as arguments. Multiple users can be specified by separating them with a comma ",".
LinuxTips(RedHat系)

グループにメンバーを追加・削除する

グループにメンバーを追加・削除する ●グループにメンバーを追加する 既存グループにメンバーを追加するには、gpasswd...