Re: Fedora still doesn't sign its repo data?

2014-08-17 Thread Kevin Fenzi
On Sat, 16 Aug 2014 23:55:55 + Joonas Lehtonen wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA512 > > > It's logistically difficult to sign the repodata... but of course > > it could be done. > > > > Many, if not all of the things they mention (I can't seem to find a > > link to the

Re: Fedora still doesn't sign its repo data?

2014-08-17 Thread Rex Dieter
Joonas Lehtonen wrote: > Is there any kind of certificate pinning in place when verifying the > certificate of https://mirrors.fedoraproject.org or can the > certificate be from any trusted CA? I strongly suspect the answer is "any trusted CA" -- rex -- users mailing list users@lists.fedorapro

Tablet hardware

2014-08-17 Thread Florian Weimer
Is there any tablet-like hardware which is well-supported by Fedora 20 and later? Something with a high-resolution display? I don't need 3D acceleration beyond what's needed to run a typical desktop environment, but I'd like to have lots of RAM, a bit of CPU power (perhaps even a current Core i7)

Re: OT: bash help

2014-08-17 Thread Ian Malone
On 17 August 2014 08:36, Cameron Simpson wrote: > On 16Aug2014 14:44, Mike Wright wrote: >> >> I'm trying to write a simple script that if provided an argument, uses >> that, or if nothing is provided, uses a predefined string. > > > This is general shell stuff, not bash specific. > >> if [ -n $#

Re: Can fstrim work on read only mounts?

2014-08-17 Thread Ali Alipoor.R
> I don't have any SSD in my systems. However, doing a bit of reading on "trim" it seems it addresses a need when files are being created/deleted/modified on a system. Since that isn't happening on a RO file system it seems to me to >make little sense to enable/use "trim". My goal is trimming a f

Re: Can fstrim work on read only mounts?

2014-08-17 Thread Ahmad Samir
On 17/08/14 10:44, Heinz Diehl wrote: [...] I've read the other answers you got in this thread. I've been using SSD drives nearly two years, all of its partitions are mounted with discard enabled, and didn't encounter any sideeffects. So despite some folks are advising against using the discard m

Re: Can fstrim work on read only mounts?

2014-08-17 Thread Heinz Diehl
On 17.08.2014, Ali Alipoor.R wrote: > 1- can fstrim work on read only mounted partitions? No. On partitions mounted "ro", nothing gets deleted, and thus there is no need for discard. > 2- can discard and ro options be mixed in fstab? Yes, but this makes no sense. I've read the other answers y

Re: OT: bash help

2014-08-17 Thread Cameron Simpson
On 16Aug2014 14:44, Mike Wright wrote: I'm trying to write a simple script that if provided an argument, uses that, or if nothing is provided, uses a predefined string. This is general shell stuff, not bash specific. if [ -n $# ] This is always true. Even "0" is a nonempty string. Test [