Re: Fwd: Re: Intel / AMD CPU Microcode Updates Required For Security

2017-05-28 Thread Branko Grubic
On Sun, 2017-05-28 at 19:50 -0600, JD wrote:
> Is fedora providing this?
> 
> 
>  Forwarded Message 
> Subject:  Re: Intel / AMD CPU Microcode Updates Required For
> Security
> Date: Sun, 28 May 2017 23:52:46 +
> From: Ben Woods 
> To:   RW , freebsd-questions@freebs
> d.org, 
> freebsd-secur...@freebsd.org
> 
> 
> 
> On Mon, 29 May 2017 at 7:35 am, RW via freebsd-questions <
> freebsd-questi...@freebsd.org> wrote:
> 
> > On Sun, 28 May 2017 17:53:01 -0400
> > grarpamp wrote:
> > 
> > > Blobs that fix exploitable things may be slightly better than
> > > blobs.
> > > Awareness should be raised, and updates applied to systems.
> > > 
> > > # sysutils/devcpu-data New Microcode Released for Intel / AMD
> > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219268
> > 
> > Is there a standard way to run cpucontrol? There doesn't seem to be
> > an
> > rc.d script.
> 
> 
> There is an rc script installed with this port:
> 
> https://svnweb.freebsd.org/ports/head/sysutils/devcpu-data/files/micr
> ocode_update.in?view=markup
> 
> Regards,
> Ben
> 
> > --
> 

Yes, Fedora does provide intel and amd x86 processor microcode updates.
(in linux-firmware (amd (/lib/firmware/amd-ucode), and intel
(microcode-ctl) (/lib/firmware/intel-ucode)) And it uses linux early
microcode way of loading microcode (It is prepended (at least I think
it is) to initramfs):

[bgrubic@quad ~]$ cpio -t -F initramfs-4.11.3-300.fc26.x86_64.img 
.
early_cpio
kernel
kernel/x86
kernel/x86/microcode
kernel/x86/microcode/GenuineIntel.bin
58 blocks

Also on boot (kernel log) you possibly can see something like this:

[0.00] microcode: microcode updated early to revision 0xba,
date = 2010-10-03
[0.810945] microcode: sig=0x6fb, pf=0x10, revision=0xba
[0.811007] microcode: Microcode Update Driver: v2.2.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Fwd: Re: Intel / AMD CPU Microcode Updates Required For Security

2017-05-28 Thread JD

Is fedora providing this?


 Forwarded Message 
Subject:Re: Intel / AMD CPU Microcode Updates Required For Security
Date:   Sun, 28 May 2017 23:52:46 +
From:   Ben Woods 
To: 	RW , freebsd-questi...@freebsd.org, 
freebsd-secur...@freebsd.org




On Mon, 29 May 2017 at 7:35 am, RW via freebsd-questions <
freebsd-questi...@freebsd.org> wrote:


On Sun, 28 May 2017 17:53:01 -0400
grarpamp wrote:

> Blobs that fix exploitable things may be slightly better than blobs.
> Awareness should be raised, and updates applied to systems.
>
> # sysutils/devcpu-data New Microcode Released for Intel / AMD
> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219268

Is there a standard way to run cpucontrol? There doesn't seem to be an
rc.d script.



There is an rc script installed with this port:

https://svnweb.freebsd.org/ports/head/sysutils/devcpu-data/files/microcode_update.in?view=markup

Regards,
Ben


--


--
From: Benjamin Woods
woods...@gmail.com
___
freebsd-questi...@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: How to mount an LVM2 volume in Fedora Linux.

2017-05-28 Thread Lucélio Gomes de Freitas


On 22-05-2017 02:44, stan wrote:
> On Sun, 21 May 2017 13:40:51 -0300
> Lucélio Gomes de Freitas  wrote:
> 
> 
>> Problem:
>> Want to mount the SSD on "Fedora 20" to recover some files, copying it
>> to /dev/sdb3 space(/dev/sdb3 not used/mounted). After this, I can
>> erase all SSD and install "Fedora 25" on it.
> 
> Caveat:  I don't use VG or LV, so not familiar with its usage.
> 
> Can you look at the /etc/fstab on the drive you want to copy files
> from?  Create some mount points under /mnt in F20, add the lines from
> the F16 /etc/fstab to the F20 /etc/fstab, mounting under your new mount
> points.  Reboot, and those mount points should be active, allowing you
> to cp from them.  When you are done, just delete the lines in fstab.
> 
> e.g. instead of mounting /home of F16 under /home, mount it
> under /mnt/f16_home in F20, but with the same parameters as it was
> mounted with in the /etc/fstab under F16.
> 
Great. Thank you.
___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: How to mount an LVM2 volume in Fedora Linux.

2017-05-28 Thread Lucélio Gomes de Freitas
On 21-05-2017 21:33, Boris Epstein wrote:
> Wouldn't it be /dev/vg_maq01/lv_home that you want to mount to read files
> out of your home directory?
> 
Yes, You are correct. Thank you for teatching me.

[lucelio@localhost ~]$ sudo pvs
  PV VG   Fmt  Attr PSize   PFree
  /dev/sda3  vg_maq01 lvm2 a--  118,75g0
  /dev/sdb5  fedora   lvm2 a--  102,24g0

[lucelio@localhost ~]$ mount | grep mapper
/dev/mapper/fedora-root on / type ext4 (rw,relatime,seclabel,data=ordered)
/dev/mapper/fedora-home on /home type ext4
(rw,relatime,seclabel,data=ordered)

[lucelio@localhost ~]$ sudo mount /dev/vg_maq01/lv_home /mnt/F16_home -r
[lucelio@localhost ~]$ sudo mount /dev/vg_maq01/lv_root /mnt/F16_root -r

[lucelio@localhost ~]$ mount | grep mapper
/dev/mapper/fedora-root on / type ext4 (rw,relatime,seclabel,data=ordered)
/dev/mapper/fedora-home on /home type ext4
(rw,relatime,seclabel,data=ordered)
/dev/mapper/vg_maq01-lv_home on /mnt/F16_home type ext4
(ro,relatime,seclabel,data=ordered)
/dev/mapper/vg_maq01-lv_root on /mnt/F16_root type ext4
(ro,relatime,seclabel,data=ordered)

> Boris.
> 
> On Sun, May 21, 2017 at 12:40 PM, Lucélio Gomes de Freitas <
> aa.luce...@gmail.com> wrote:
> 
>> Hi friends,
>>
>> Anybody helps?
>>
>> Runnning old "Fedora 20-x86_64", and want to install
>> Fedora-Kde-live-25-1-3.
>>
>> Situation:
>> [lucelio@localhost ~]$ uname -rov
>> 3.19.8-100.fc20.x86_64 #1 SMP Tue May 12 17:08:50 UTC 2015 GNU/Linux
>>
>> [lucelio@localhost ~]$ sudo lvmdiskscan
>>   /dev/fedora/root  [  50,00 GiB]
>>   /dev/fedora/swap  [   3,77 GiB]
>>   /dev/sda2 [ 500,00 MiB]
>>   /dev/vg_maq01/lv_swap [   5,75 GiB]
>>   /dev/sda3 [ 118,75 GiB] LVM physical volume
>>   /dev/vg_maq01/lv_home [  63,00 GiB]
>>   /dev/vg_maq01/lv_root [  50,00 GiB]
>>   /dev/fedora/home  [  48,48 GiB]
>>   /dev/sdb2 [ 500,00 MiB]
>>   /dev/sdb3 [ 194,87 GiB]
>>   /dev/sdb4 [ 500,00 MiB]
>>   /dev/sdb5 [ 102,24 GiB] LVM physical volume
>>   6 disks
>>   4 partitions
>>   0 LVM physical volume whole disks
>>   2 LVM physical volumes
>>
>> The /dev/sda* is a SSD(KINGSTON SV200S3128G) 128GB, with old "Fedora
>> 16-x86_64", and only want to recover some files in /home.
>>
>> The /dev/sdb* is a Seagate(ST3320613AS) 320GB, running old "Fedora
>> 20-x86_64", with some important file in /home.
>>
>> [lucelio@localhost ~]$ sudo lvscan
>>   ACTIVE'/dev/fedora/swap' [3,77 GiB] inherit
>>   ACTIVE'/dev/fedora/home' [48,48 GiB] inherit
>>   ACTIVE'/dev/fedora/root' [50,00 GiB] inherit
>>   ACTIVE'/dev/vg_maq01/lv_swap' [5,75 GiB] inherit
>>   ACTIVE'/dev/vg_maq01/lv_home' [63,00 GiB] inherit
>>   ACTIVE'/dev/vg_maq01/lv_root' [50,00 GiB] inherit
>>
>> [lucelio@localhost ~]$ mount | grep /dev/mapper
>> /dev/mapper/fedora-root on / type ext4 (rw,relatime,seclabel,data=ordered)
>> /dev/mapper/fedora-home on /home type ext4
>> (rw,relatime,seclabel,data=ordered)
>>
>> Problem:
>> Want to mount the SSD on "Fedora 20" to recover some files, copying it
>> to /dev/sdb3 space(/dev/sdb3 not used/mounted). After this, I can
>> erase all SSD and install "Fedora 25" on it.
>>
>> Thanks for help if possible.
>> ___
>> users mailing list -- users@lists.fedoraproject.org
>> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>>
> 
> 
> 
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Now what do I need to squash?

2017-05-28 Thread Cameron Simpson

On 28May2017 09:14, Tom Horsley  wrote:

On Sun, 28 May 2017 15:18:30 +1000
Cameron Simpson wrote:
Suggestion: when the popup is up, do a ps. Close the popup. ps again. If 
you're

lucky you'll be able to see the responsible program (or some "alert" tool,
invoked by the evildoer).


I was about to try that, but apparently they are timed
so they go away before you get a chance to track them down :-(.


We have some iphones which occasionally buzz. No popup, no notification 
message, no obvious event in the current apps. Super annoying.


Cheers,
Cameron Simpson 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


[389-users] Re: enabled account policy plugin and incrace changelog db size

2017-05-28 Thread William Brown
On Fri, 2017-05-26 at 11:44 +0300, Alparslan Ozturk wrote:
> dn:
> cn=mhrsldap2-mhrsldap1,cn=replica,cn=dc\3Dsagliknet\2Cdc\3Dsaglik\2Cdc
...
> nsds5replicareapactive: 0
> nsds5replicaLastUpdateStart: 20170522184536Z
> nsds5replicaLastUpdateEnd: 1970010100Z

The answer is here: this replica has never been able to send a sucessful
update to the ldap1 perhaps. You should check your error log, turn on
replication logging, and generally check connectivity between these two
masters, 


-- 
Sincerely,

William Brown
Software Engineer
Red Hat, Australia/Brisbane



signature.asc
Description: This is a digitally signed message part
___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org


Re: sudo su

2017-05-28 Thread Samuel Sieb

On 05/28/2017 01:04 AM, Tom H wrote:

On Sat, May 27, 2017 at 10:05 PM, Tom Horsley  wrote:


Nope, completely myth, and here's why: "sudo su -l" is absolutely
the fastest and most efficient way to get a root login shell
where the PATH is set correctly


"-i" is faster than "su -l" :)


Hey, I learned something new!  The thing that has always annoyed me 
about "sudo -s" is that it leaves me in the current directory instead of 
going to /root.  "sudo -i" solves that.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Install on Zotac Zbox CI327?

2017-05-28 Thread Branko Grubic
On Sun, 2017-05-28 at 15:12 +0200, wwp wrote:
> Hello there,
> 
> (after a looong time not using Fedora, just back to it!)
> 
> I've tried installing Fedora on a Zotac Zbox CI327 (Intel Celeron
> N3450 inside) but this happens to fail. I've tried F25 but it has
> not the right kernel to make it (I've read about 4.10 minimum), then
> tried F26-Alpha-1.7 Live and Rawhide-20170518 Live but none could
> reach the graphical login. They both boot, some steps take a lot of
> time and I end up in a state I don't understand but which is not
> friendly ;-).
> 
> Here's a link to a rdsosreport.txt file generated using Rawhide, I
> must
> admit that I don't know what to do now..
> 
>  https://paste.fedoraproject.org/paste/iRx8d~7Luk2TC3bsaDuuT15M1UNdIG
> YhyRLivL9gydE=
> 
> BTW, I could install and run a Ubuntu 17.10 daily
> (artful-desktop-amd64-20170519.iso) - wow it starts up pretty quickly
> -
> and that gave me hope!
> 
> Any hint or experience w/ such hardware?
> 
> Regards,
> 
> 
Hi, 

I have no experience with that specific hardware, but maybe you can try
stable re-spins[1] (live/installable images with current updates).
Maybe it's a good balance between F25 final and F26/F27 (pre-
release/dev), and it should have 4.10.x kernel.


[1] http://dl.fedoraproject.org/pub/alt/live-respins/
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Now what do I need to squash?

2017-05-28 Thread stan
On Sat, 27 May 2017 18:09:22 -0700
stan  wrote:

> How did you mask it?  It isn't there in systemctl -a -t service,
> even though there is a file in /usr/share/dbus-1/system-services.  I
> manually disable it each time it updates by moving the file to a .bak
> version, so masking it would be a lot easier.  Also, there is now a
> kde PackageKit file in /usr/share/dbus-1/services, and it also runs
> automatically, so I now do the same there.

For completeness, if someone searches later, it turns out that the -a /
--all option to systemctl doesn't really mean *all* service files.  To
get a list of all unit files for services it is necessary to use the
list-unit-files command,
systemctl list-unit-files
Doing that shows that packagekit is the name for the PackageKit
program, and masking that works as Samuel said.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: TLP vs Mate Power Manager

2017-05-28 Thread stan
On Sat, 27 May 2017 14:16:07 -0700
Zenzizenzic  wrote:
 
> Is it necessary to disable mate-power-manager in anyway? Does tlp use
> the settings provided in the power manager gui to control display
> brightness/computer sleep timing or do I need to reconfigure these
> values elsewhere?

From the FAQ at this address
http://linrunner.de/en/tlp/docs/tlp-faq.html

...
Does TLP conflict with other power management tools like
laptop-mode-tools, Jupiter, etc.?

Yes. There can only be one, so don't use two tools for the same purpose
simultaneously.

Hint: Powertop isn't a power management tool, so the former doesn't
apply to it, refer to the powertop section.
...
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Video editing disaster

2017-05-28 Thread Wagner Marques
I did not realize that unpacking the ISO could be a really nice idea...

To my next work with videos, I will try it, for sure.

Thanks a lot


Wagner França Marques
954731643
967256050

2017-05-28 14:49 GMT-03:00 Tom Horsley :

> On Sun, 28 May 2017 14:27:40 -0300
> Wagner Marques wrote:
>
> > So, this http://www.bandshed.net/avlinux/ was the solution for me.
>
> I haven't tried it, but that sounds like the best approach.
> Get someone else to do the mind-numbing work of figuring out
> which versions of which libraries are compatible together
> and use their solution. All the linux multimedia projects
> seem to thrive on making incompatible changes every 15 or 20
> minutes (and they all depend on each other :-).
>
> You could probably even use it in fedora by unpacking the ISO
> and using lots of PATH and LD_LIBRARY_PATH environment variables
> (or if that doesn't work, use chroot).
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Video editing disaster

2017-05-28 Thread Tom Horsley
On Sun, 28 May 2017 14:27:40 -0300
Wagner Marques wrote:

> So, this http://www.bandshed.net/avlinux/ was the solution for me.

I haven't tried it, but that sounds like the best approach.
Get someone else to do the mind-numbing work of figuring out
which versions of which libraries are compatible together
and use their solution. All the linux multimedia projects
seem to thrive on making incompatible changes every 15 or 20
minutes (and they all depend on each other :-).

You could probably even use it in fedora by unpacking the ISO
and using lots of PATH and LD_LIBRARY_PATH environment variables
(or if that doesn't work, use chroot).
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Video editing disaster

2017-05-28 Thread Wagner Marques
For me, the best was Cinelerra!

The installation of Fedora do not work like like a charm (but I'm not
expert)

So, this http://www.bandshed.net/avlinux/ was the solution for me.

Another nice try could be:
http://blog.rabin.io/linux/building-cinelerracv-for-fedora-22-under-docker





Wagner França Marques
954731643
967256050

2017-05-28 12:29 GMT-03:00 Klaus-Peter Schrage :

> Recently, I had some  (not too extensive) sessions in video editing -
> cutting an mp4 file, adding some transitions, recode to mp4 again, without
> a single crash, using
> Flowblade.
> See also:
> https://opensource.com/life/16/9/10-reasons-flowblade-linux-
> video-editor?sc_cid=7016000QyBkAAK
>
>
> Am 27.05.2017 um 02:53 schrieb Wade Hampton:
>
>> I am trying out multiple video editors on Fedora, with very poor results
>> and a ton of crashes.
>> Anyone have recommendations on how to stablize one of these or can you
>> recommend a
>> video editor that just works (like kdenlive used to when I used it last a
>> year ago)?
>>
>> I am having the same results on two Fedora 25, 64-bit systems, fully
>> updated.  The packages
>> are from rpmfusion and on one of the two systems from unitedrpms.  My
>> main system is an
>> older 6-core AMD with 8G of RAM so it should handle it.
>>
>> The files I am testing with are:
>>   JPG images from a DSLR
>>   Quicktime from my DSLR (MVI_xxx.MOV),
>>   Movie from my Android phone x.m2ts
>>   Movie from a DVD xxx.mpg
>>   Movie from a digital camcorder (Sony AVCHD):   .MTS
>>
>> KDENLIVE:
>> My goto editor was Kdenlive, but it won't open files.  I keep getting
>> "clip is invalid".
>> The terminal outputs:
>>
>> mlt_repository_init: failed to dlopen /usr/lib64/mlt/libmltavformat.so
>>   (/lib64/libavdevice.so.57: symbol av_buffersink_get_sample_aspect_ratio,
>> version LIBAVFILTER_6 not defined in file libavfilter.so.6 with link time
>> reference)
>>
>> I think there is a lib miss-match.
>>
>> PITIVI:
>> Pitivi is nice, but I can't keep it running.  Multiple core dumps.
>>
>> OPENSHOT:
>>
>> I really love OpenShot.  I tried the one from rpmfusion and it crashed
>> all the time,
>> for example when trying transitions.  I also tried the latest version via
>> AppImage:
>>
>>   OpenShot-v2.3.3-x86_64.AppImage
>>
>> This seemed much more stable, but I could still crash it with
>> transitions, adding
>> an MP3 file for audio, etc.
>>
>> Anyone have a good, stable video editor or have suggestions on how to run
>> one of these
>> in a stable platform?
>>
>> Note, I am filing bug reports on many of these crashes
>>
>> Thanks,
>> --
>> Wade Hampton
>>
>>
>> ___
>> users mailing list -- users@lists.fedoraproject.org
>> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>>
>
>
> --
> Klaus-Peter Schrage
> Fridtjof-Nansen-Str. 21
> D-38108 Braunschweig
> Tel.:  +49 531 355178
> Fax:   +49 531 3557473
> Mobil: +49 171 1940 497
>
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Video editing disaster

2017-05-28 Thread Klaus-Peter Schrage
Recently, I had some  (not too extensive) sessions in video editing - 
cutting an mp4 file, adding some transitions, recode to mp4 again, 
without a single crash, using

Flowblade.
See also:
https://opensource.com/life/16/9/10-reasons-flowblade-linux-video-editor?sc_cid=7016000QyBkAAK


Am 27.05.2017 um 02:53 schrieb Wade Hampton:
I am trying out multiple video editors on Fedora, with very poor 
results and a ton of crashes.
Anyone have recommendations on how to stablize one of these or can you 
recommend a
video editor that just works (like kdenlive used to when I used it 
last a year ago)?


I am having the same results on two Fedora 25, 64-bit systems, fully 
updated.  The packages
are from rpmfusion and on one of the two systems from unitedrpms.  My 
main system is an

older 6-core AMD with 8G of RAM so it should handle it.

The files I am testing with are:
  JPG images from a DSLR
  Quicktime from my DSLR (MVI_xxx.MOV),
  Movie from my Android phone x.m2ts
  Movie from a DVD xxx.mpg
  Movie from a digital camcorder (Sony AVCHD):   .MTS

KDENLIVE:
My goto editor was Kdenlive, but it won't open files.  I keep getting 
"clip is invalid".

The terminal outputs:

mlt_repository_init: failed to dlopen /usr/lib64/mlt/libmltavformat.so
  (/lib64/libavdevice.so.57: symbol 
av_buffersink_get_sample_aspect_ratio, version LIBAVFILTER_6 not 
defined in file libavfilter.so.6 with link time reference)


I think there is a lib miss-match.

PITIVI:
Pitivi is nice, but I can't keep it running.  Multiple core dumps.

OPENSHOT:

I really love OpenShot.  I tried the one from rpmfusion and it crashed 
all the time,
for example when trying transitions.  I also tried the latest version 
via AppImage:


  OpenShot-v2.3.3-x86_64.AppImage

This seemed much more stable, but I could still crash it with 
transitions, adding

an MP3 file for audio, etc.

Anyone have a good, stable video editor or have suggestions on how to 
run one of these

in a stable platform?

Note, I am filing bug reports on many of these crashes

Thanks,
--
Wade Hampton


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org



--
Klaus-Peter Schrage
Fridtjof-Nansen-Str. 21
D-38108 Braunschweig
Tel.:  +49 531 355178
Fax:   +49 531 3557473
Mobil: +49 171 1940 497
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: sudo su

2017-05-28 Thread Peter Gueckel
Tom Horsley wrote:

> On Sat, 27 May 2017 21:36:29 -0600
> Peter Gueckel wrote:
> 
>> Now, I wonder about $PATH: what is the correct value "to 
find the
>> programs that root needs"?
> 
> Well, root tends to have /sbin which "normal" users don't
> have by default. There may be others, also there can be
> aliases and such in root's .bash_profile which won't
> show up without a login shell.

OK, thanks. I just checked and /usr/sbin is in the PATH for 
both root and users by default. The only change I made there 
is to add ./local/bin for users (me).
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: sudo su

2017-05-28 Thread Ahmad Samir
On 28 May 2017 at 15:16, Tom Horsley  wrote:
> On Sat, 27 May 2017 21:36:29 -0600
> Peter Gueckel wrote:
>
>> Now, I wonder about $PATH: what is the correct value "to find the
>> programs that root needs"?
>
> Well, root tends to have /sbin which "normal" users don't
> have by default.

That's not true any more; Nowadays normal users have /usr/sbin/ in
their path, and /sbin/ is a symlink to /usr/sbin...

-- 
Ahmad Samir
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: sudo su

2017-05-28 Thread Peter Gueckel
Joe Zeff wrote:

> On 05/27/2017 10:12 PM, fred roller wrote:
>> you could run "who" to see if the root user is still logged 
on as well.
> 
> I have a terminal open, logged in as root with su -.  When I 
ran who, it
> just showed me, logged in once and no root.  Checking with 
uptime, it
> shows one user.

I never heard of 'who' ;-) Unfortunately, it is true: I ran 
'su -' and then who in another tab and in a different terminal 
emulator and it showed no root nor me as root, just me.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Moderator approval?

2017-05-28 Thread wwp
Hello Kevin,


On Fri, 26 May 2017 17:09:28 -0600 Kevin Fenzi  wrote:

> On 05/26/2017 04:56 PM, wwp wrote:
> > Hello there,
> > 
> > sorry to disturb w/ list management issues.. I've been tried to post
> > here but my message is waiting for moderator approval (since
> > 2017-05-19). Nothing scary, but I wonder if it's because of its
> > contents.. There was a text attachment, I tried to sent it w/ the text
> > inserted in body instead, no luck. Is there really a moderator or am I
> > blacklisted in some way for an obscure reason? (I could post a reply to
> > another thread)  
> 
> It looks like the posts are hitting the size limit.
> 
> Can you put the attachements up on a pastebin like
> paste.fedoraproject.org and just post with links to them?

I did that, it worked :-). Thanks!

BTW, the bounce message says:

===
The message is being held because:

N/A
===

N/A is not informative, but I'm glad you found some information about
it, thanks again.


Regards,

-- 
wwp


pgpVhJEhF2kOo.pgp
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: sudo su

2017-05-28 Thread Tom Horsley
On Sat, 27 May 2017 21:36:29 -0600
Peter Gueckel wrote:

> Now, I wonder about $PATH: what is the correct value "to find the 
> programs that root needs"?

Well, root tends to have /sbin which "normal" users don't
have by default. There may be others, also there can be
aliases and such in root's .bash_profile which won't
show up without a login shell.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Now what do I need to squash?

2017-05-28 Thread Tom Horsley
On Sun, 28 May 2017 15:18:30 +1000
Cameron Simpson wrote:

> Suggestion: when the popup is up, do a ps. Close the popup. ps again. If 
> you're 
> lucky you'll be able to see the responsible program (or some "alert" tool, 
> invoked by the evildoer).

I was about to try that, but apparently they are timed
so they go away before you get a chance to track them down :-(.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Install on Zotac Zbox CI327?

2017-05-28 Thread wwp
Hello there,

(after a looong time not using Fedora, just back to it!)

I've tried installing Fedora on a Zotac Zbox CI327 (Intel Celeron
N3450 inside) but this happens to fail. I've tried F25 but it has
not the right kernel to make it (I've read about 4.10 minimum), then
tried F26-Alpha-1.7 Live and Rawhide-20170518 Live but none could
reach the graphical login. They both boot, some steps take a lot of
time and I end up in a state I don't understand but which is not
friendly ;-).

Here's a link to a rdsosreport.txt file generated using Rawhide, I must
admit that I don't know what to do now..

 
https://paste.fedoraproject.org/paste/iRx8d~7Luk2TC3bsaDuuT15M1UNdIGYhyRLivL9gydE=

BTW, I could install and run a Ubuntu 17.10 daily
(artful-desktop-amd64-20170519.iso) - wow it starts up pretty quickly -
and that gave me hope!

Any hint or experience w/ such hardware?

Regards,

-- 
wwp


pgp0R6WS7bD4a.pgp
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: OT (?) installing JDeveloper

2017-05-28 Thread Angelo Moreschini
I replay to myself...

the problem was solved running the file as normal user and not as
administrator.

On Sun, May 28, 2017 at 3:27 PM, Angelo Moreschini <
mrangelo.fed...@gmail.com> wrote:

> Hi
>
> I would like use "Oracle JDevelopper"  on my computer, so
> I downloaded the "installer" of Jdeveloper from site of Oracle .
>
> This is the page of Oracle for the download:
> --
> Oracle JDeveloper Studio Edition 12.2.1.2.0   This download is the
> complete version of JDeveloper with all the features. This is the
> recommended Download.
>
> *Important Note* - *both files* are required for each platform to
> complete the installation.   Windows (2.1GB)file1
> ,
> file2
> 
>Linux (2.1GB)file1,
> 
> file2
> 
>   Generic/Others(2.1GB)file1,
> file2
>
> 
> --
>
> After I downloaded the two recommended files, I had them in the directory
> /home/ /Download of my computer.
> I changed the attributes of them,   so I had
>
> -rwxrwxrwx. 1 angelo_dev angelo_dev  302779189 May 27 11:59
> jdev_suite_122120_linux64-2.zip
> -rwxrwxrwx. 1 angelo_dev angelo_dev 2043993719 <(204)%20399-3719> May 27
> 11:51 jdev_suite_122120_linux64.bin
>
>
> After done this, I run the file .bin as administrator,
> [root@localhost JDeveloper]# ./jdev_suite_122120_linux64.bin
>
> *The installation seemed to have started :*
> 0%..
> .100%
> Launcher log file is /tmp/OraInstall2017-05-28_03-
> 06-44PM/launcher2017-05-28_03-06-44PM.log.
> Extracting the installer . . . . . Done
> The current user is root or has superuser privilege.
>
> *but it was not finished successfully.*   I got the following message
>
> The Oracle Universal Installer cannot continue.
> The log is located here: /tmp/OraInstall2017-05-28_03-
> 06-44PM/launcher2017-05-28_03-06-44PM.log.
>
>
> What happened wrong ??
>
> What do do now ??
>
> Regards
>
> Angelo
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


OT (?) installing JDeveloper

2017-05-28 Thread Angelo Moreschini
Hi

I would like use "Oracle JDevelopper"  on my computer, so
I downloaded the "installer" of Jdeveloper from site of Oracle .

This is the page of Oracle for the download:
--
Oracle JDeveloper Studio Edition 12.2.1.2.0   This download is the complete
version of JDeveloper with all the features. This is the recommended
Download.

*Important Note* - *both files* are required for each platform to complete
the installation.   Windows (2.1GB)file1
,
file2

   Linux (2.1GB)file1,

file2

  Generic/Others(2.1GB)file1,
file2

--

After I downloaded the two recommended files, I had them in the directory
/home/ /Download of my computer.
I changed the attributes of them,   so I had

-rwxrwxrwx. 1 angelo_dev angelo_dev  302779189 May 27 11:59
jdev_suite_122120_linux64-2.zip
-rwxrwxrwx. 1 angelo_dev angelo_dev 2043993719 May 27 11:51
jdev_suite_122120_linux64.bin


After done this, I run the file .bin as administrator,
[root@localhost JDeveloper]# ./jdev_suite_122120_linux64.bin

*The installation seemed to have started :*
0%...100%
Launcher log file is
/tmp/OraInstall2017-05-28_03-06-44PM/launcher2017-05-28_03-06-44PM.log.
Extracting the installer . . . . . Done
The current user is root or has superuser privilege.

*but it was not finished successfully.*   I got the following message

The Oracle Universal Installer cannot continue.
The log is located here:
/tmp/OraInstall2017-05-28_03-06-44PM/launcher2017-05-28_03-06-44PM.log.


What happened wrong ??

What do do now ??

Regards

Angelo
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: sudo su

2017-05-28 Thread Tom H
On Sun, May 28, 2017 at 5:24 AM, Paul Allen Newell  wrote:
>
> Correcting my off-list post by cc-ing back to the list ... once again, my
> apologies

No harm done, no apologies necessary :)
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: sudo su

2017-05-28 Thread Paul Allen Newell



On 05/28/2017 02:21 AM, Paul Allen Newell wrote:



On 05/28/2017 01:40 AM, Tom H wrote:

You replied off-list

On Sun, May 28, 2017 at 4:16 AM, Paul Allen Newell 
 wrote:

On 05/28/2017 01:04 AM, Tom H wrote:

"-i" is faster than "su -l" :)

huh?

sudo -i
is faster than
sudo su -l


Apologies for replying off-list, it was not intentional.

I was unaware of the "-i" option for sudo. Am reading online man pages 
on it and beginning to understand.


Thanks for reply as I try to understand "-i"


Correcting my off-list post by cc-ing back to the list ... once again, 
my apologies

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: sudo su

2017-05-28 Thread Tom H
On Sat, May 27, 2017 at 10:05 PM, Tom Horsley  wrote:
>
> Nope, completely myth, and here's why: "sudo su -l" is absolutely
> the fastest and most efficient way to get a root login shell
> where the PATH is set correctly

"-i" is faster than "su -l" :)
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org