#2415 Issue closed
: lsblk: invalid option -- 'p'¶
Labels: support / question
, fixed / solved / done
dcz01 opened issue at 2020-06-03 06:26:¶
lsblk: invalid option -- 'p'¶
Fill in the following items before submitting a new issue
(quick response is not guaranteed with free support):
- ReaR version ("/usr/sbin/rear -V"):
Relax-and-Recover 2.5-git.0.7281059.unknown / 2020-05-29
- OS version ("cat /etc/os-release" or "lsb_release -a" or "cat
/etc/rear/os.conf"):
RHEL/CentOS 6 x86_64
- ReaR configuration files ("cat /etc/rear/site.conf" and/or "cat /etc/rear/local.conf"):
OUTPUT=ISO
OUTPUT_URL=file:///root/rear
BACKUP=NETFS
#BACKUP=TSM
BACKUP_PROG=tar
BACKUP_PROG_CRYPT_ENABLED=1
BACKUP_PROG_CRYPT_KEY=xxxxxxxx
BACKUP_PROG_CRYPT_OPTIONS="/usr/bin/openssl aes256 -salt -k"
BACKUP_PROG_DECRYPT_OPTIONS="/usr/bin/openssl aes256 -d -k"
#BACKUP_URL=nfs://<IP-Adresse oder DNS-Name>/<Freigabepfad>
BACKUP_URL=cifs://NotesRechte/BRP-Backup
BACKUP_OPTIONS="cred=/etc/rear/cifs,sec=ntlmsspi"
BACKUP_TYPE=incremental
FULLBACKUPDAY="Sat"
BACKUP_PROG_EXCLUDE=( '/tmp/*' '/dev/shm/*' $VAR_DIR/output/\* '/opt/tivoli/tsm/rear/*' '/mnt/*' '/media/*' '/var/lib/pgsql/*/data/base/*' '/var/lib/pgsql/*/data/global/*' '/var/lib/pgsql/*/data/pg*/*' )
SSH_ROOT_PASSWORD='$1$HGjk3XUV$lid3Nd3k01Kht1mpMscLw1'
NON_FATAL_BINARIES_WITH_MISSING_LIBRARY='/opt/tivoli/tsm/client/ba/bin/libvixMntapi.so.1.1.0'
- Hardware (PC or PowerNV BareMetal or ARM) or virtual machine (KVM
guest or PoverVM LPAR):
Virtual Machine on VMware ESXi
- System architecture (x86 compatible or PPC64/PPC64LE or what exact
ARM device):
x86
- Firmware (BIOS or UEFI or Open Firmware) and bootloader (GRUB or
ELILO or Petitboot):
BIOS with GRUB
- Storage (local disk or SSD) and/or SAN (FC or iSCSI or FCoE) and/or
multipath (DM or NVMe):
Local Storage
- Storage layout ("lsblk -ipo NAME,KNAME,PKNAME,TRAN,TYPE,FSTYPE,SIZE,MOUNTPOINT" or "lsblk" as makeshift):
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sr0 11:0 1 1024M 0 rom
sda 8:0 0 150G 0 disk
├─sda1 8:1 0 500M 0 part /boot
├─sda2 8:2 0 4G 0 part [SWAP]
└─sda3 8:3 0 145,6G 0 part /
- Description of the issue (ideally so that others can reproduce
it):
There is an log entry that the option --p is invalid with the progran lsblk
- Workaround, if any:
None
- Attachments, as applicable ("rear -D mkrescue/mkbackup/recover"
debug log files):
rear-FBD01PSS.log
jsmeix commented at 2020-06-03 08:30:¶
@dcz01
this comes from the lsblk
calls in
https://github.com/rear/rear/blob/master/usr/share/rear/layout/save/GNU/Linux/100_create_layout_file.sh#L34
You can ignore such messages.
Such messages appear in the log file because stdout and stderr
are redirected to the log file.
For the reasoning behind see
"What to do with stdin, stdout, and stderr" in
https://github.com/rear/rear/wiki/Coding-Style
Perhaps it might work to only redirect stdout and stderr to the log
file
when rear
is run in verbose mode (-v
) or in debug modes (-d
-D
)
to avoid that such messages appar in the log and confuse the user.
Righ now I did
https://github.com/rear/rear/issues/2416
to analyze if things could be improved this way.
[Export of Github issue for rear/rear.]