I see that there are now Nitech HTS voices 2.3.2 available for download. On Ubuntu 20.04 festival 2.5.0 gets installed. How can I install and use latest Nitech HTS voices for festival on Ubuntu 20.04?
Mitar's questions
I have run gsettings list-recursively
locally from the terminal while logged into X11 on Ubuntu 20.04. Then I also configured a user-based cron job to run gsettings list-recursively
from the cron and save it into the file. When I compare contents of those files they are slightly different: some entries have different values. But some entries which I know I changed do match. Why are there differences?
I have read around about DBUS_SESSION_BUS_ADDRESS
but I am not setting it for the cron job and it seems gsettings
still works (but output is slightly different).
I am noticing that recently my laptop does not go to sleep/lockout after its configured X minutes of inactivity like it did in the past. I suspect some program (like media player does) is preventing it from going to sleep. I do not have any media player running, so how can I find which program is preventing it from sleeping?
It does go to sleep if I close the lid. But I would also like for it to go to sleep after X minutes of inactivity.
Update: Upgraded to Ubuntu 18.04 with default Gnome and Wayland enabled.
So I like the search in the overview view in Gnome 3. The issue I am having is that opening the overview takes a bit of time if I have many windows open because all the windows have to be scaled and made smaller for the overview view.
So I would like to have overview separate from searching. Overview could still have a search, but I would also like just a view where search prompt and search results are shown, without any windows being processed at all. Ideally, they would just stay under, visible as they are.
In the same server I have a bunch of 4 TB Seagate disks. I just installed them and I realized that some are recognized as 4 TB, but some as 2 TB. What could be the issue?
$ dmesg | grep '8:0:3:0'
[ 10.810825] scsi 8:0:3:0: Direct-Access ATA ST4000DM005-2DP1 0001 PQ: 0 ANSI: 5
[ 11.508060] sd 8:0:3:0: [sdf] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
[ 11.508061] sd 8:0:3:0: [sdf] 4096-byte physical blocks
[ 11.508064] sd 8:0:3:0: Attached scsi generic sg5 type 0
[ 11.508089] sd 8:0:3:0: [sdf] Write Protect is off
[ 11.508090] sd 8:0:3:0: [sdf] Mode Sense: 00 3a 00 00
[ 11.508100] sd 8:0:3:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 11.524947] sd 8:0:3:0: [sdf] Attached SCSI disk
$ dmesg | grep 9:0:4:0
[ 13.235315] scsi 9:0:4:0: Direct-Access ATA ST4000DM005-2DP1 0001 PQ: 0 ANSI: 5
[ 13.240191] sd 9:0:4:0: Attached scsi generic sg14 type 0
[ 13.241734] sd 9:0:4:0: [sdo] 4294967294 512-byte logical blocks: (2.20 TB/2.00 TiB)
[ 13.278030] sd 9:0:4:0: [sdo] Write Protect is off
[ 13.278031] sd 9:0:4:0: [sdo] Mode Sense: 73 00 00 08
[ 13.280316] sd 9:0:4:0: [sdo] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 13.392557] sd 9:0:4:0: [sdo] Attached SCSI disk
smartctl says that both drives are 4 TB. parted sees them as 4 TB and 2 TB, respectively:
$ parted /dev/sdf unit s print
Model: ATA ST4000DM005-2DP1 (scsi)
Disk /dev/sdf: 7814037168s
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 2048s 7814035455s 7814033408s primary raid
$ parted /dev/sdo unit s print
Model: ATA ST4000DM005-2DP1 (scsi)
Disk /dev/sdo: 4294967294s
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 2048s 4294965247s 4294963200s primary raid
Update:
It seems the issue is that some drives are attached to the LSI SAS1068E SCSI storage controller and that one has a 2 TB drive limitation.
Not sure if there is a workaround for this. :-(
I am trying to install boost bindings for python3 on Ubuntu Xenial, but it pulls in whole python2.7 dependency tree. I do not want or need python2.7 on my system (Docker image). Is there a way to install only python3 bindings?