I ran the command:
nohup sh -c "echo $SU_PASSWORD | /afs/cs/software/bin/reauth; python -u ~/diversity-for-predictive-success-of-meta-learning/div_src/diversity_src/experiment_mains/main_diversity_with_task2vec.py --manual_loads_name diversity_ala_task2vec_hdb1_mio > $OUT_FILE 2> $ERR_FILE" > $PWD/main.sh.nohup.out$SLURM_JOBID &
after about 3 hours it outputs the following error in the main.sh.nohup.out$SLURM_JOBID
file:
Password for brando9: stty: 'standard input': Inappropriate ioctl for device
stty: 'standard input': Inappropriate ioctl for device
Can't obtain kerberos tickets
I want to know what the error means.
(solving it is fine too but that is the topic of this question How does one send new commands to run to an already running nohup process or run two commands together/concurrently in nohup? and thought that dividing and conquering and asking about the meaning of the error would be useful first)
related questions:
- bash script error stty: standard input: Inappropriate ioctl for device
- Unable to write/read from serial port after couple of minutes/hours. Error message: stty: standard input: Inappropriate ioctl for device
- https://stackoverflow.com/questions/24623021/getting-stty-standard-input-inappropriate-ioctl-for-device-when-using-scp-thro
- How does one send new commands to run to an already running nohup process or run two commands together/concurrently in nohup?