私は現在、bashとxdotoolを使用して、現在のポインタの位置に基づいてマウスを移動しながら、いくつかのキーを押す簡単なスクリプトを書いています。すべてがうまく機能しますが、xdotoolの即時マウスの動きによる不安定性は気に入らません。 xdotoolが一定期間またはカーブ中にマウスを動かす方法はありますか?それとも、私が逃したマウスを「滑らかに」するフラグかもしれませんか?助けてくれてありがとう。私の現在のコードは以下に貼り付けられています。 #!/bin/bash
printf "This script requires xdotool to work. Please install it if you haven't already.\n"
read -n 1 -s -r -p "Press any key to continue"
printf "...\n"
printf "Process will begin in 5 seconds.\n"
printf "Press Ctrl+C at any time to halt the script\n"
sleep 5
xdotool mousedown 1
xdotool keydown w
xdotool keydown k
end=$((SECONDS+1300))
while [ $SECONDS -lt $end ]; do
xdotool mousemove_relative --sync 0 50
xdotool mousemove_relative --sync -- 0 -50
:
done
vsftpdArch Linuxデスクトップでサーバーを起動し、一般ユーザーを使用してログインしようとしました。ただし、ログインしようとすると、「530無効なログイン」というメッセージが表示されます。 $ systemctl start vsftpd
$ groups
wheel tom
$ hostname
desktop
$ ftp desktop
Connected to desktop.localdomain.
220 Just to make extra sure the server is configured by this file.
Name (desktop:tom):
331 Please specify the password.
Password:
530 Login incorrect.
ftp: Login failed.
ftp> 221 Goodbye.
/etc/vsftpd.conf anonymous_enable=NO
local_enable=YES
write_enable=YES
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
ftpd_banner=Just to make extra sure the server is configured by this file.
listen=YES
# I also tried different combinations of these, no dice
# seccomp_sandbox=NO
# pam_service_name=ftp
この問題を解決してログインできるようにする設定変更はありますか?私がすることが他の人と違うとは言えません。