Re: [389-users] Multiple Users Same UID

2014-05-14 Thread Ludwig Krispenz

https://access.redhat.com/site/documentation/en-US/Red_Hat_Directory_Server/8.1/html/Administration_Guide/Using_the_Attribute_Uniqueness_Plug_in.html

On 05/13/2014 09:42 PM, John Trump wrote:
If I create posix users and manually assign uid's 389-ds will allow me 
to assign the same uid to multiple users. If I do not manually assign 
uid's, the uid's will be incremented and not duplicate uid's. Is there 
a check / rule that canbe applied to prevent duplicate uid's when 
assigning uid's manually?



--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users


--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] db2bak.pl error with changelogdb

2014-05-14 Thread Noriko Hosoi
Thanks, Orion.  It's a bug. :(  I could reproduce the problem with the 
master build, as well.


Thanks!
--noriko

Orion Poplawski wrote:

On 05/14/2014 02:01 PM, Noriko Hosoi wrote:

What version you are running?
$ rpm -q 389-ds-base



Sorry, should have given that:

389-ds-base-1.2.11.29-1.el6.x86_64


Orion Poplawski wrote:
We are backing up our database daily with db2bak.pl, and have 
started to

notice the following messages:

[13/May/2014:03:59:08 -0600] - Backend instance changelogdb does not
exist; Instance path /var/lib/dirsrv/slapd-cora/changelogdb could be 
invalid.

[13/May/2014:03:59:08 -0600] - Backup: error in copying directory
(/var/lib/dirsrv/slapd-cora/changelogdb -
/var/lib/dirsrv/slapd-cora/bak/cora-2014_05_13_03_59_08/.repl_changelog_backup): 


err=-1

# ls -l /var/lib/dirsrv/slapd-cora/changelogdb
total 2796
-rw---. 1 dirsrv dirsrv 2859008 May 14 13:22
dab99282-1dd111b2-84f8fd5b-e789_4e7cb85b0001.db4
-rw-rw-r--. 1 dirsrv dirsrv   0 May 12 14:30
dab99282-1dd111b2-84f8fd5b-e789.sema
-rw---. 1 dirsrv dirsrv  30 Dec  9  2012 DBVERSION

Configuration issue?  Bug?

Thanks,
  Orion



--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users





--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] db2bak.pl error with changelogdb

2014-05-14 Thread Noriko Hosoi
Sorry, I forgot to ask you.  Could you please open a ticket at: 
https://fedorahosted.org/389/newticket?

Thanks,
--noriko

Noriko Hosoi wrote:
Thanks, Orion.  It's a bug. :(  I could reproduce the problem with the 
master build, as well.


Thanks!
--noriko

Orion Poplawski wrote:

On 05/14/2014 02:01 PM, Noriko Hosoi wrote:

What version you are running?
$ rpm -q 389-ds-base



Sorry, should have given that:

389-ds-base-1.2.11.29-1.el6.x86_64


Orion Poplawski wrote:
We are backing up our database daily with db2bak.pl, and have 
started to

notice the following messages:

[13/May/2014:03:59:08 -0600] - Backend instance changelogdb does not
exist; Instance path /var/lib/dirsrv/slapd-cora/changelogdb could 
be invalid.

[13/May/2014:03:59:08 -0600] - Backup: error in copying directory
(/var/lib/dirsrv/slapd-cora/changelogdb -
/var/lib/dirsrv/slapd-cora/bak/cora-2014_05_13_03_59_08/.repl_changelog_backup): 


err=-1

# ls -l /var/lib/dirsrv/slapd-cora/changelogdb
total 2796
-rw---. 1 dirsrv dirsrv 2859008 May 14 13:22
dab99282-1dd111b2-84f8fd5b-e789_4e7cb85b0001.db4
-rw-rw-r--. 1 dirsrv dirsrv   0 May 12 14:30
dab99282-1dd111b2-84f8fd5b-e789.sema
-rw---. 1 dirsrv dirsrv  30 Dec  9  2012 DBVERSION

Configuration issue?  Bug?

Thanks,
  Orion



--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users





--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users


--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] db2bak.pl error with changelogdb

2014-05-14 Thread Michael Gettes
this kinda brings up a long-standing question in my mind… what’s the “best” way 
to back things up?

ok, let’s agree we need to know more about what’s the problem we are trying to 
solve.  For me, i’d like
to keep this somewhat generic to hopefully make this a useful discussion.  
Assuming multiple ldap servers
the idea is to get a useful backup of the data in userRoot without much 
overhead and using a relatively
safe mechanism.  I’ll exclude definitions about time to restore and such.

The db2bak strategy worries me cuz you’re backing up the db files and the time 
it takes to back those up
on a reasonable sized ldap store is non-trivial.  So, is there not a bit of 
worry about indices being out of
sync with the entry store itself along with the log files managing the changes? 
 one would have to filesystem
snapshot the DB itself to get a sane backup of a production service, yes?

db2ldif gets you the text dump of the DB.  it is my understanding, at an object 
level, this gets you a reliable
backup of each entry although data throughout the store may be inconsistent 
while the large file is being written.
i can tell you i do this regularly and it seems to work well, but i wonder 
about what risks i am incurring with this
strategy besides what i already noted.

of course, you can have yet another ldap server lying around not being used by 
apps and it’s purpose is to dump
the store periodically, but that may not be part of you what want to achieve 
with disparate locations and such.

other strategies?  yes, i have read the docs but i figured i would get a bit 
more practical by asking the question
to possibly learn more about what others are actually doing.

/mrg
--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] db2bak.pl error with changelogdb

2014-05-14 Thread David Boreham


On 5/14/2014 3:11 PM, Michael Gettes wrote:

The db2bak strategy worries me cuz you’re backing up the db files and the time 
it takes to back those up
on a reasonable sized ldap store is non-trivial.  So, is there not a bit of 
worry about indices being out of
sync with the entry store itself along with the log files managing the changes? 
 one would have to filesystem
snapshot the DB itself to get a sane backup of a production service, yes?
This doesn't happen. The backup contains a consistent snapshot (achieved 
by running recovery on the write-ahead log, which is in the backup set). 
This is much the same as you'll see with backup on a traditional DB like 
Oracle or Postgresql.


Filesystem snapshot is generally not a good idea with WAL databases 
since the database already has the ability to create consistent backups 
without the overhead of logging at the filesystem level.





--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] db2bak.pl error with changelogdb

2014-05-14 Thread David Boreham


On 5/14/2014 3:11 PM, Michael Gettes wrote:

db2ldif gets you the text dump of the DB.  it is my understanding, at an object 
level, this gets you a reliable
backup of each entry although data throughout the store may be inconsistent 
while the large file is being written.
i can tell you i do this regularly and it seems to work well, but i wonder 
about what risks i am incurring with this
strategy besides what i already noted.


This does the equivalent of a table scan across the entries without 
isolation.
So it is possible to end up with inconsistencies such as an entry 
without its parent, although the chance of this occurring is low.



--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] db2bak.pl error with changelogdb

2014-05-14 Thread David Boreham


On 5/14/2014 3:11 PM, Michael Gettes wrote:

of course, you can have yet another ldap server lying around not being used by 
apps and it’s purpose is to dump
the store periodically, but that may not be part of you what want to achieve 
with disparate locations and such.
This is a useful approach if your servers are subject to heavy load, 
specifically heavy load that generates disk I/O.
Backing up from a replica that is not serving client load can allow you 
to decouple the I/O load related to the backup from I/O activity related 
to client requests. With the use of SSDs (which have very high 
concurrent throughput vs disks) these days, this is less of an issue 
however.


--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] db2bak.pl error with changelogdb

2014-05-14 Thread Michael Gettes
David,

Thank you so much for the 3 replies.  They are VERY illuminating and helpful 
for me to now press ahead and better address my own particular needs based on 
our “requirements”.  What I now intend to do is to perform, at regular 
intervals, db2bak to a specific directory.  as i would like to convert the bak 
db to ldif, it doesn’t appear there is a relatively easy way to do this… either 
i’d have to mockup a new config dir to reference the bak db as the real db so 
db2ldif will work or i would have to create a new slapd instance and then 
configure it for schema and such to be identical to the real instance on the 
server and then db2bak with the output being the bak instance so i can run 
db2ldif on on the bak db.  Bummer.

nonetheless, i do appreciate your timely responses and the education i gained 
from them.

/mrg
  
On May 14, 2014, at 5:49 PM, David Boreham david_l...@boreham.org wrote:

 
 On 5/14/2014 3:11 PM, Michael Gettes wrote:
 of course, you can have yet another ldap server lying around not being used 
 by apps and it’s purpose is to dump
 the store periodically, but that may not be part of you what want to achieve 
 with disparate locations and such.
 This is a useful approach if your servers are subject to heavy load, 
 specifically heavy load that generates disk I/O.
 Backing up from a replica that is not serving client load can allow you to 
 decouple the I/O load related to the backup from I/O activity related to 
 client requests. With the use of SSDs (which have very high concurrent 
 throughput vs disks) these days, this is less of an issue however.
 
 --
 389 users mailing list
 389-users@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/389-users

--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] db2bak.pl error with changelogdb

2014-05-14 Thread David Boreham

On 5/14/2014 7:19 PM, Michael Gettes wrote:

Thank you so much for the 3 replies.  They are VERY illuminating and helpful 
for me to now press ahead and better address my own particular needs based on 
our “requirements”.  What I now intend to do is to perform, at regular 
intervals, db2bak to a specific directory.  as i would like to convert the bak 
db to ldif, it doesn’t appear there is a relatively easy way to do this… either 
i’d have to mockup a new config dir to reference the bak db as the real db so 
db2ldif will work or i would have to create a new slapd instance and then 
configure it for schema and such to be identical to the real instance on the 
server and then db2bak with the output being the bak instance so i can run 
db2ldif on on the bak db.
Hmm...the backup files are meaningless gibberish so anything other than 
a Directory Server, so for sure you need to restore the backup set into 
a DS of some sort in order to dump it to ldif. That could be a 
stand-alone server used only for this purpose, or I think you could do 
it in a separate back end in a server that performs other duties. I'd 
use a separate server since it is so easy to spin one up. You don't need 
to configure schema to get it to dump ldif. I don't even think you need 
to turn schema checking off. Database restore, and ldif dump are done at 
a very low level. There may be some checks done to pre-flight the backup 
restore. Try it and see if anything throws an error is probably the 
quickest way to find out..





--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: [389-users] Multiple Users Same UID

2014-05-14 Thread John Trump
Thank you, this solved the problem.



 On May 14, 2014, at 2:33 AM, Ludwig Krispenz lkris...@redhat.com wrote:
 
 https://access.redhat.com/site/documentation/en-US/Red_Hat_Directory_Server/8.1/html/Administration_Guide/Using_the_Attribute_Uniqueness_Plug_in.html
 
 On 05/13/2014 09:42 PM, John Trump wrote:
 If I create posix users and manually assign uid's 389-ds will allow me to 
 assign the same uid to multiple users. If I do not manually assign uid's, 
 the uid's will be incremented and not duplicate uid's. Is there a check / 
 rule that canbe applied to prevent duplicate uid's when assigning uid's 
 manually?
 
 
 --
 389 users mailing list
 389-users@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/389-users
 
 --
 389 users mailing list
 389-users@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/389-users
--
389 users mailing list
389-users@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users

Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Robert Moskowitz


On 05/13/2014 05:47 PM, Dale Dellutri wrote:

On Tue, May 13, 2014 at 8:23 PM, Robert Moskowitz r...@htt-consult.com wrote:

I am displaying IEEE 802 standard pdfs.  In Acrobat that I get for Fedora
from Adobe's repo, the font used is basically unreadable, particularly when
I display it on the monitor in the meeting room.
...

I don't understand why this should be more noticeable when displaying it on
the monitor in the reading room, unless it's a resolution problem.


Because it is almost readable on the LCD, but when it gets projected on 
the screen for some reason there are all sorts of vertical lines next to 
many of the characters.




However, in my notes for installing Acrobat Reader, I have:

   The following are needed for Acrobat Reader
   # yum install PackageKit-gtk-module.i686

no.


  gtk2-engines.i686 \


no

 libcanberra-gtk2.i686 libcanberra-gtk3.i686

no and no


   # yum install AdobeReader_enu


Installed: AdobeReader_enu-9.5.5-1.i486

Do you have all these packages?


So I guess I should try installing these additional packages...


--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Robert Moskowitz


On 05/13/2014 05:47 PM, Dale Dellutri wrote:

On Tue, May 13, 2014 at 8:23 PM, Robert Moskowitz r...@htt-consult.com wrote:

I am displaying IEEE 802 standard pdfs.  In Acrobat that I get for Fedora
from Adobe's repo, the font used is basically unreadable, particularly when
I display it on the monitor in the meeting room.
...

I don't understand why this should be more noticeable when displaying it on
the monitor in the reading room, unless it's a resolution problem.

However, in my notes for installing Acrobat Reader, I have:

   The following are needed for Acrobat Reader
   # yum install PackageKit-gtk-module.i686 gtk2-engines.i686 \
 libcanberra-gtk2.i686 libcanberra-gtk3.i686


#  yum install PackageKit-gtk-module.i686
Loaded plugins: langpacks, refresh-packagekit
No package PackageKit-gtk-module.i686 available.

All the rest and a bunch of dependencies installed.

A little better in rendering the font, but the chosen font is this 
little skinny font that is really not readable and will not project well 
compared with whatever font evince is using.



   # yum install AdobeReader_enu

Do you have all these packages?



--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Ahmad Samir

On 14/05/14 07:56, Robert Moskowitz wrote:


On 05/13/2014 05:47 PM, Dale Dellutri wrote:

On Tue, May 13, 2014 at 8:23 PM, Robert Moskowitz
r...@htt-consult.com wrote:

I am displaying IEEE 802 standard pdfs.  In Acrobat that I get for
Fedora
from Adobe's repo, the font used is basically unreadable,
particularly when
I display it on the monitor in the meeting room.
...

I don't understand why this should be more noticeable when displaying
it on
the monitor in the reading room, unless it's a resolution problem.


Because it is almost readable on the LCD, but when it gets projected on
the screen for some reason there are all sorts of vertical lines next to
many of the characters.



If I recall/understand correctly, Adobe Reader uses font antialiasing by 
default, something called Cooltype; whereas evince, and almost all the 
Linux PDF readers built against poppler, don't apply any font 
antialiasing/smoothing. I'd try tinkering with the font settings in 
Adobe Reader (font smoothing settings).


[...]

--
Ahmad Samir
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Tim
On Tue, 2014-05-13 at 19:56 -1000, Robert Moskowitz wrote:
 it is almost readable on the LCD, but when it gets projected on 
 the screen for some reason there are all sorts of vertical lines next
 to many of the characters. 

That sounds like ringing, often caused by bad cabling, or badly
designed input and output video stages.  If it appears different for
different fonts, it could be due to some fonts having sharp edges (which
sets off ringing), and others having smoothed/aliased edges (which won't
ring as bad).  Bigger and fatter fonts minimise that artifact, too.
Turning down the sharpness control, on the projector, could help, too
(often the normal position is with the control turned fully down - it
provides a variable artificial sharpness boost, ranging from none to too
much, but doesn't do the opposite and provide artificial smoothing, with
normal being adjusted half-way).

-- 
[tim@localhost ~]$ uname -rsvp
Linux 2.6.32-431.17.1.el6.x86_64 #1 SMP Wed May 7 23:32:49 UTC 2014
x86_64

All mail to my mailbox is automatically deleted, there is no point
trying to privately email me, I will only read messages posted to the
public lists.

George Orwell's '1984' was supposed to be a warning against tyranny, not
a set of instructions for supposedly democratic governments.



-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Anthony Shipman
On Wed, 14 May 2014 04:06:43 pm Robert Moskowitz wrote:
 A little better in rendering the font, but the chosen font is this 
 little skinny font that is really not readable and will not project well 
 compared with whatever font evince is using.
 
Is the example at http://i.imgur.com/8hrG3Tp.png the sort of thing
that you are seeing? I have a few documents like this. The pdffonts
program reports, for one of them:

 pdffonts USB\ 3.1\ Specification\ Welcome\ Message.pdf
name type  emb sub uni object ID
 - --- --- --- -
ArialTrueType  no  no  no   5  0
ArialCID TrueType  yes no  yes  8  0
Symbol   CID TrueType  yes no  yes 13  0

Installing the msttcorefonts package will provide Arial. This fixed the
problem for me.

-- 
Anthony ShipmanMamas don't let your babies 
a...@iinet.net.au   grow up to be outsourced.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Two failures after a recent Fedora 20 update...

2014-05-14 Thread Michael Schwendt
On Tue, 13 May 2014 20:17:55 -0400, Michael H. Warfield wrote:

 Transaction Summary
 
 Remove   4 Packages (+7 Dependent packages)
 Downgrade   39 Packages
 Not available  416 Packages
 
 416 packages not available.  Not good.  The revert history is a crap
 shoot and could make things worse.  Trying it anyways.

Unfortunately, that is a limitation of Fedora's update release habits,
which have changed again with the end of Fedora Extras some years ago.
In the repositories, a new stable update replaces the previous stable
update. Older update packages are only available if you use something
like yum-plugin-local.

So, typically yum history undo … works better in conjunction with
updates-testing repo enabled and frequent updates. In that case you can
revert to the last stable updates. yum downgrade …, on the other hand,
would attempt downgrading to old packages from the fedora release repo.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Five Things in Fedora This Week (2014-05-13)

2014-05-14 Thread Matthew Miller
(Whoops -- I accidentally reposted last week's 5tFTW last night instead of
the new one. Sorry!)

Reposted from
http://fedoramagazine.org/five-things-in-fedora-this-week-2014-05-13/


Fedora is a big project, and it’s hard to follow it all. This series
highlights interesting happenings in five different areas every week.
It isn’t comprehensive news coverage — just quick summaries with links
to each. Here are the five things for May 13th, 2014:


Pidora 2014: Fedora 20 for the Raspberry Pi
---

I was going to put this at the top of the list last week, and somehow
missed it when it came to actually writing things up, so this is
actually last week’s news. But it’s pretty cool, so here it is at the
top of *this* week.

The Raspberry Pi is a very cheap (starting somewhere around $25)
credit-card-sized computer. Unfortunately, Fedora doesn’t work on it
without some modifications. But, fortunately, those modifications have
been made! The Centre for Development of Open Technology at Seneca
College in Toronto produces a Fedora Remix called Pidora, specifically
tailored for the Raspberry Pi. (A “remix” is different from a “spin” or
other variants of Fedora because it is produced separately from the
project itself and can contain software that in the official
distribution.)

This project has just released its fourth version, Pidora 2014. This is
based on Fedora 20, so you get all of the benefits of the new Fedora
release, plus some specific improvements, including better performance,
firstboot configuration tailored for the Raspberry Pi, enhancements for
“headless” mode where no monitor is available, and more.

  * http://www.raspberrypi.org/
  * http://cdot.senecacollege.ca/
  * http://pidora.ca/
  * http://pidora.ca/pidora/releases/20/release-announcement.txt


Big Data: Running Apache Hadoop in Docker on Fedora
---

Apache Hadoop is an open source software framework for processing big
data sets. Like, *really big* data — it powers Yahoo’s search engine,
and Facebook has a Hadoop cluster that was 100 petabytes two years ago.
Of course, you can use it for smaller projects, and Robert Radi has
written a nice little series of posts on getting started with Hadoop
using Fedora and Docker, covering:

  - Building Images,
  - Running Images,
  - Why It Works, and
  - Issues and Limitations.

Definitely worth a read if you’re curious about modern data processing,
and the last part presents some interesting problems waiting to be
solved.

  * 
http://www.infoworld.com/d/big-data/facebook-pushes-the-limits-of-hadoop-206108
  * 
http://rrati.github.io/blog/2014/05/06/apache-hadoop-plus-docker-plus-fedora-building-images/
  * 
http://rrati.github.io/blog/2014/05/07/apache-hadoop-plus-docker-plus-fedora-running-images/
  * 
http://rrati.github.io/blog/2014/05/08/apache-hadoop-plus-docker-plus-fedora-why-it-works/
  * 
http://rrati.github.io/blog/2014/05/09/apache-hadoop-plus-docker-plus-fedora-issues-and-limitations/


Preview of Bodhi 2, the new Fedora updates feedback mechanism
-

One of the most important jobs in Fedora is testing package updates
before they’re released to the general public. This makes sure that
fixes actually work, and that they don’t introduce new problems. (As
always, the help wanted sign is out!)

After testers check a package, they use a tool called Bodhi to provide
feedback to package maintainers, who use this information to decide
whether the update is good to go, either manually or through a preset
threshold of positive reports. This system has served us pretty well,
but has some pain points. Fedora hackers Luke Macken and Ralph Bean
have been working on an update (creatively named Bodhi 2.0), and this
week Ralph presents a video demonstrating one of the improvements, a
more fine-grained feedback system, which allows testers to list what
exactly was tested and which bugs are fixed, rather than just a big
“up” or “down”.

Ralph notes that there is a Fedora Activity Day (“FAD”) focusing on
Bodhi 2 and Tasktron (our upcoming QA automation system) in June, and a
lot of progress should be made on both — great news for both the people
directly involved in QA and all the rest of us who benefit from their
labor.

  * https://admin.fedoraproject.org/updates
  * https://fedoraproject.org/wiki/Bodhi/2.0
  * http://threebean.org/blog/bodhi2-karma-system-preview/
  * https://fedoraproject.org/wiki/FAD_Bodhi2_Taskotron_2014
  * https://fedoraproject.org/wiki/QA


Running Vagrant on Fedora with Libvirt
--

Vagrant is a tool for creating and managing virtual machine images
containing software development environments. It’s particularly popular
in the DevOps world. It’s also something we’ve been missing in the
Fedora world, but the situation is getting better James, (from *The
Technical Blog of James*), has an article about getting 

firefox

2014-05-14 Thread Patrick Dupre
Hello,

From 1 machine when I try to reach pages of website, I get:

Page Not Found

Reason: Segment 126 was not a keyword for a postVarSet as expected on page 
with id=1.

TYPO3 is an open source content management system. To maintain the quality of 
the system and to improve it, please help us by donating. TYPO3 CMS. Copyright 
© 1998-2013 Kasper Skårhøj. Extensions are copyright of their respective 
owners. Go to http://typo3.org/ for details. TYPO3 comes with ABSOLUTELY NO 
WARRANTY. This is free software, and you are welcome to redistribute it under 
certain conditions. Obstructing the appearance of this notice is prohibited by 
law. 

Would you have any idea about what is generating this error?

It is fine from another machine (all fedora 20).

Thank.

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: firefox

2014-05-14 Thread Patrick Dupre
Sorry for the noise.

It is fine if I replace toptica.com by www.toptica.com. Bizare!

 
 Hello,
 
 From 1 machine when I try to reach pages of website, I get:
 
 Page Not Found
 
 Reason: Segment 126 was not a keyword for a postVarSet as expected on page 
 with id=1.
 
 TYPO3 is an open source content management system. To maintain the quality of 
 the system and to improve it, please help us by donating. TYPO3 CMS. 
 Copyright © 1998-2013 Kasper Skårhøj. Extensions are copyright of their 
 respective owners. Go to http://typo3.org/ for details. TYPO3 comes with 
 ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to 
 redistribute it under certain conditions. Obstructing the appearance of this 
 notice is prohibited by law. 
 
 Would you have any idea about what is generating this error?
 
 It is fine from another machine (all fedora 20).
 
 Thank.
 
 ===
  Patrick DUPRÉ                                 | | email: pdu...@gmx.com
  Laboratoire de Physico-Chimie de l'Atmosphère | |
  Université du Littoral-Côte d'Opale           | |
  Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
  189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
 ===
 -- 
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org


===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Robert Moskowitz


On 05/14/2014 12:33 AM, Anthony Shipman wrote:

On Wed, 14 May 2014 04:06:43 pm Robert Moskowitz wrote:

A little better in rendering the font, but the chosen font is this
little skinny font that is really not readable and will not project well
compared with whatever font evince is using.


Is the example at http://i.imgur.com/8hrG3Tp.png the sort of thing
that you are seeing? I have a few documents like this.


Yep.  That is what I am seeing in Acrobat.


The pdffonts program reports, for one of them:


pdffonts USB\ 3.1\ Specification\ Welcome\ Message.pdf

name type  emb sub uni object ID
 - --- --- --- -
ArialTrueType  no  no  no   5  0
ArialCID TrueType  yes no  yes  8  0
Symbol   CID TrueType  yes no  yes 13  0

Installing the msttcorefonts package will provide Arial. This fixed the
problem for me.



What rpm provides this?  I tried a couple of 'whatprovides' and came up 
empty.



--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Ed Greshko
On 05/14/14 22:08, Robert Moskowitz wrote:

 On 05/14/2014 12:33 AM, Anthony Shipman wrote:
 On Wed, 14 May 2014 04:06:43 pm Robert Moskowitz wrote:
 A little better in rendering the font, but the chosen font is this
 little skinny font that is really not readable and will not project well
 compared with whatever font evince is using.

 Is the example at http://i.imgur.com/8hrG3Tp.png the sort of thing
 that you are seeing? I have a few documents like this.

 Yep.  That is what I am seeing in Acrobat.

 The pdffonts program reports, for one of them:

 pdffonts USB\ 3.1\ Specification\ Welcome\ Message.pdf
 name type  emb sub uni object ID
  - --- --- --- -
 ArialTrueType  no  no  no   5  0
 ArialCID TrueType  yes no  yes  8  0
 Symbol   CID TrueType  yes no  yes 13  0

 Installing the msttcorefonts package will provide Arial. This fixed the
 problem for me.


 What rpm provides this?  I tried a couple of 'whatprovides' and came up empty.



Google is your friend.

http://corefonts.sourceforge.net/

-- 
Do not condemn the judgment of another because it differs from your own. You 
may both be wrong. -- Dandemis
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


changing editor in m-c

2014-05-14 Thread Frank McCormick

I have spent sometime trying to figure out how to change the default
editor in Midnight Commander. I am running XFCE most of the time on 
Fedora 19


I have tried suggestions from Googling including exporting EDITOR in 
$HOME/bashrc...running select-editor ( doesn't appear to be on Fedora 
)and creating a .select_editor text file in HOME. None have worked so

far.

If I open a terminal first then m-c loads the proper editor...but if I
call m-c from a desktop file which loads a terminal, then loads m-c with 
the -e option then vi is loaded.


I am missing something.



--
1984 was not meant as a blueprint for
democratic governments.


--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Robert Moskowitz


On 05/14/2014 04:36 AM, Ed Greshko wrote:

On 05/14/14 22:08, Robert Moskowitz wrote:

On 05/14/2014 12:33 AM, Anthony Shipman wrote:

On Wed, 14 May 2014 04:06:43 pm Robert Moskowitz wrote:

A little better in rendering the font, but the chosen font is this
little skinny font that is really not readable and will not project well
compared with whatever font evince is using.


Is the example at http://i.imgur.com/8hrG3Tp.png the sort of thing
that you are seeing? I have a few documents like this.

Yep.  That is what I am seeing in Acrobat.


The pdffonts program reports, for one of them:


pdffonts USB\ 3.1\ Specification\ Welcome\ Message.pdf

name type  emb sub uni object ID
 - --- --- --- -
ArialTrueType  no  no  no   5  0
ArialCID TrueType  yes no  yes  8  0
Symbol   CID TrueType  yes no  yes 13  0

Installing the msttcorefonts package will provide Arial. This fixed the
problem for me.


What rpm provides this?  I tried a couple of 'whatprovides' and came up empty.



Google is your friend.


My google foo is weak.  Maybe that is because I knew Page when he was 
quite young; his father was one of my profs.



http://corefonts.sourceforge.net/


Nice, but that means you have to do the build yourself.  Is this in any 
additional repos for Fedora?



--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Alan Evans
On Wed, May 14, 2014 at 11:30 AM, Robert Moskowitz r...@htt-consult.comwrote:


  http://corefonts.sourceforge.net/


 Nice, but that means you have to do the build yourself.  Is this in any
 additional repos for Fedora?



As I understand it, licensing of the fonts prevents distribution that way.
But I did it once and rebuilding the spec file as per their instructions
auto-downloads everything necessary and delivers a neat, easy package to
install. Not at all hard, just follow the instructions.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Bob Goodwin - Zuni, Virginia, USA


On 05/14/14 14:42, Alan Evans wrote:


Nice, but that means you have to do the build yourself.  Is this
in any additional repos for Fedora?



As I understand it, licensing of the fonts prevents distribution that 
way. But I did it once and rebuilding the spec file as per their 
instructions auto-downloads everything necessary and delivers a neat, 
easy package to install. Not at all hard, just follow the instructions.



I just tried it doing as described in 
http://sayaksarkar.wordpress.com/2013/06/02/installing-microsoft-truetype-fonts-in-fedora18/.


It took about five minutes and the fonts appear in LO, Fedora 20 64 bit.

Bob

--
http://www.qrz.com/db/W2BOD
box10  Fedora-20/64bit Linux/XFCE

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Mike Wright

05/14/2014 11:30 AM, Robert Moskowitz wrote:


On 05/14/2014 04:36 AM, Ed Greshko wrote:

On 05/14/14 22:08, Robert Moskowitz wrote:

On 05/14/2014 12:33 AM, Anthony Shipman wrote:

On Wed, 14 May 2014 04:06:43 pm Robert Moskowitz wrote:

A little better in rendering the font, but the chosen font is this
little skinny font that is really not readable and will not project
well
compared with whatever font evince is using.


Is the example at http://i.imgur.com/8hrG3Tp.png the sort of thing
that you are seeing? I have a few documents like this.

Yep.  That is what I am seeing in Acrobat.


The pdffonts program reports, for one of them:


pdffonts USB\ 3.1\ Specification\ Welcome\ Message.pdf

name type  emb sub uni
object ID
 - --- --- ---
-
ArialTrueType  no  no
no   5  0
ArialCID TrueType  yes no
yes  8  0
Symbol   CID TrueType  yes no
yes 13  0

Installing the msttcorefonts package will provide Arial. This fixed the
problem for me.


What rpm provides this?  I tried a couple of 'whatprovides' and came
up empty.



Google is your friend.


My google foo is weak.  Maybe that is because I knew Page when he was
quite young; his father was one of my profs.


http://corefonts.sourceforge.net/


Nice, but that means you have to do the build yourself.  Is this in any
additional repos for Fedora?


I found this:

http://linuxg.net/how-to-install-the-microsoft-core-fonts-on-fedora-18-and-19/

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Logitech C310 webcam

2014-05-14 Thread Paul Cartwright
I am running Fedora 20  amd_64 . I just setup a Logitach HD webcam
C310.  Audacity can record from the webcam, so I know it works. Skype
video works, but no audio on the test call.. I've tried a bunch of fixes
from the web, nothing seems to work for skype. Is it me?

-- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Robert Moskowitz


On 05/14/2014 08:58 AM, Mike Wright wrote:

05/14/2014 11:30 AM, Robert Moskowitz wrote:


On 05/14/2014 04:36 AM, Ed Greshko wrote:

On 05/14/14 22:08, Robert Moskowitz wrote:

On 05/14/2014 12:33 AM, Anthony Shipman wrote:

On Wed, 14 May 2014 04:06:43 pm Robert Moskowitz wrote:

A little better in rendering the font, but the chosen font is this
little skinny font that is really not readable and will not project
well
compared with whatever font evince is using.


Is the example at http://i.imgur.com/8hrG3Tp.png the sort of thing
that you are seeing? I have a few documents like this.

Yep.  That is what I am seeing in Acrobat.


The pdffonts program reports, for one of them:


pdffonts USB\ 3.1\ Specification\ Welcome\ Message.pdf

name type  emb sub uni
object ID
 - --- --- ---
-
ArialTrueType  no no
no   5  0
ArialCID TrueType  yes no
yes  8  0
Symbol   CID TrueType  yes no
yes 13  0

Installing the msttcorefonts package will provide Arial. This 
fixed the

problem for me.


What rpm provides this?  I tried a couple of 'whatprovides' and came
up empty.



Google is your friend.


My google foo is weak.  Maybe that is because I knew Page when he was
quite young; his father was one of my profs.


http://corefonts.sourceforge.net/


Nice, but that means you have to do the build yourself.  Is this in any
additional repos for Fedora?


I found this:

http://linuxg.net/how-to-install-the-microsoft-core-fonts-on-fedora-18-and-19/ 



OK.  That points to an rpm.  I downloaded it and did a 'yum 
localinstall' which also installed cabextract as a dependency.


And still Acrobat is using the wrong font.  :(


--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Lawrence E Graves

I used Google + plugin and my Logitech 920 and 905 work
On 05/14/2014 01:01 PM, Paul Cartwright wrote:

I am running Fedora 20  amd_64 . I just setup a Logitach HD webcam
C310.  Audacity can record from the webcam, so I know it works. Skype
video works, but no audio on the test call.. I've tried a bunch of fixes
from the web, nothing seems to work for skype. Is it me?



--
All things are workable but don't all things work.
Prov. 3:5  6

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Consistent device naming

2014-05-14 Thread CLOSE Dave
On 05/13/2014 06:53 PM, Bruno Wolff III wrote:

 To exchange names, you need to use a temporary name and do three
 renames. Pretty much like swapping to values using a temporary
 variable.

I can't find a way to do that with udev. Please enlighten me.

 Another thing to consider is do you really need to reference the
 interface names? If you use dhcp and NetworkManager, you might be
 able to avoid that.

Yes, I need to reference the names. ip route needs them.



Near as I can find online, there is no solution to this issue. According 
to https://bugs.freedesktop.org/show_bug.cgi?id=56929#c3,

  We do no longer support renaming network interfaces in the kernel
  namespace. Interface names are required to use custom names that
  can never clash with the kernel created ones.

  We do not support swapping names; we cannot win any race against
  the kernel creating new interfaces at the same time.

The system is broken by design.
-- 
Dave Close
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Rick Stevens

On 05/14/2014 12:01 PM, Paul Cartwright issued this missive:

I am running Fedora 20  amd_64 . I just setup a Logitach HD webcam
C310.  Audacity can record from the webcam, so I know it works. Skype
video works, but no audio on the test call.. I've tried a bunch of fixes
from the web, nothing seems to work for skype. Is it me?


Make sure Skype is trying to use the webcam's mike as its input. If you
have Skype set to use Pulse, then try pavucontrol (PulseAudio Volume
Control on your desktop Applications-Multimedia menu) and verify that
Pulse is using the camera's mike.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-Polygon: A dead parrot (With apologies to John Cleese)  -
--
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Consistent device naming

2014-05-14 Thread Bruno Wolff III

On Wed, May 14, 2014 at 14:12:19 -0700,
 CLOSE Dave dave.cl...@us.thalesgroup.com wrote:

On 05/13/2014 06:53 PM, Bruno Wolff III wrote:


To exchange names, you need to use a temporary name and do three
renames. Pretty much like swapping to values using a temporary
variable.


I can't find a way to do that with udev. Please enlighten me.


I use ip link set to do that. I am not sure how you would do it with udev.
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Paul W. Frields
On Wed, May 14, 2014 at 02:12:02PM -0700, Rick Stevens wrote:
 On 05/14/2014 12:01 PM, Paul Cartwright issued this missive:
 I am running Fedora 20  amd_64 . I just setup a Logitach HD webcam
 C310.  Audacity can record from the webcam, so I know it works. Skype
 video works, but no audio on the test call.. I've tried a bunch of fixes
 from the web, nothing seems to work for skype. Is it me?
 
 Make sure Skype is trying to use the webcam's mike as its input. If you
 have Skype set to use Pulse, then try pavucontrol (PulseAudio Volume
 Control on your desktop Applications-Multimedia menu) and verify that
 Pulse is using the camera's mike.

Note that fine-grained PulseAudio control is part of the optional
'pavucontrol' package that you may need to install first.  It's a
useful utility that I sometimes install as well for multiple sound
card machines.

-- 
Paul W. Frieldshttp://paul.frields.org/
  gpg fingerprint: 3DA6 A0AC 6D58 FEC4 0233  5906 ACDB C937 BD11 3717
  http://redhat.com/   -  -  -  -   http://pfrields.fedorapeople.org/
The open source story continues to grow: http://opensource.com
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Consistent device naming

2014-05-14 Thread CLOSE Dave
Bruno Wolff III wrote:

 To exchange names, you need to use a temporary name and do three
 renames. Pretty much like swapping to values using a temporary
 variable.

 I can't find a way to do that with udev. Please enlighten me.

 I use ip link set to do that. I am not sure how you would do it
 with udev.

Thanks for the reference. But that can't be used after the interface is
up, and my interfaces come up during boot. I think it must be udev or 
nothing, and nothing seems to win based on the link I posted previously. 
I still think the new naming system is broken /by design/.
-- 
Dave Close, Thales Avionics, Irvine California USA.
cell +1 949 394 2124, dave.cl...@us.thalesgroup.com

If a cluttered desk is a sign of a cluttered mind,
of what then is an empty desk? --Albert Einstein
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Upgrading Windows on a Linux laptop

2014-05-14 Thread Steven Rosenberg
On Sun, May 11, 2014 at 8:19 AM, fedora fed...@ayni.com wrote:

 Ever considered to install W XP as a VM on linux?
 I was successful with both of them (XP and 7) installed on VirtualBox in
 Linux.


This sounds like the best solution.

--
Steven Rosenberg
http://stevenrosenberg.net/blog
http://blogs.dailynews.com/click
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Consistent device naming

2014-05-14 Thread Rick Stevens

On 05/14/2014 03:35 PM, CLOSE Dave issued this missive:

Bruno Wolff III wrote:


To exchange names, you need to use a temporary name and do three
renames. Pretty much like swapping to values using a temporary
variable.


I can't find a way to do that with udev. Please enlighten me.


I use ip link set to do that. I am not sure how you would do it
with udev.


Thanks for the reference. But that can't be used after the interface is
up, and my interfaces come up during boot. I think it must be udev or
nothing, and nothing seems to win based on the link I posted previously.
I still think the new naming system is broken /by design/.


I believe you can edit /etc/udev/rules.d/70-persistent-net.rules and add
lines such as:

# Broadcom Corporation NetXtreme BCM5754 Gigabit Ethernet PCI Express
SUBSYSTEM==net, ACTION==add, DRIVERS==?*, 
ATTR{address}==00:1d:09:29:34:03, ATTR{type}==1, NAME=eth0


# PCI device 0x8086:0x1079 (e1000)
SUBSYSTEM==net, ACTION==add, DRIVERS==?*, 
ATTR{address}==00:1b:21:08:0d:1c, ATTR{type}==1, KERNEL==eth*, 
NAME=eth1


# PCI device 0x8086:0x1079 (e1000)
SUBSYSTEM==net, ACTION==add, DRIVERS==?*, 
ATTR{address}==00:1b:21:08:0d:1d, ATTR{type}==1, KERNEL==eth*, 
NAME=eth2


Each rule must be on a separate line, blank lines and those starting
with # are ignored.

After a reboot, this should cause the NIC with the MAC address
00:1d:09:29:34:03 to be named eth0, the one with MAC address
00:1b:21:08:0d:1c to be named eth1 and so on. There are other
attributes you can specify. I use this on F19 and F20.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-  A day for firm decisions!!!   Well, then again, maybe not!-
--
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Consistent device naming

2014-05-14 Thread Tom Horsley
On Wed, 14 May 2014 15:52:35 -0700
Rick Stevens wrote:

 I believe you can edit /etc/udev/rules.d/70-persistent-net.rules and add
 lines such as:

Used to be able to. Maybe there is some magic to allow it,
but it seems to have stopped working by default.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Upgrading Windows on a Linux laptop

2014-05-14 Thread Doug


On 05/14/2014 06:41 PM, Steven Rosenberg wrote:


On Sun, May 11, 2014 at 8:19 AM, fedora fed...@ayni.com 
mailto:fed...@ayni.com wrote:


Ever considered to install W XP as a VM on linux?
I was successful with both of them (XP and 7) installed on
VirtualBox in Linux.


This sounds like the best solution.

I asked and found that XP will still have the same vulnerability on a VM 
as if
it were installed to its own partition. I came to the conclusion that if 
a given

machine simply cannot run Win 7 because it's too slow, that it would be
necessary to obtain a better machine, OR only use XP with no internet
connection. This is possible if you dual boot with a Linux system. You can
access the 'net via Linux, and transfer any needed download to XP from
the Linux partition. A bit clumsy, but virus-free.
(I don't actually know how to make sure that nothing can get thru the
ethernet port to XP. I don't believe it's possible to remove Internet 
Explorer, and

I don't know if it's still vulnerable if you never access it.)
Of course, the other answer is not to have an ethernet connection at 
all, and to

move all files to XP via USB sneakernet.

--doug
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Consistent device naming

2014-05-14 Thread Rick Stevens

On 05/14/2014 04:15 PM, Tom Horsley issued this missive:

On Wed, 14 May 2014 15:52:35 -0700
Rick Stevens wrote:


I believe you can edit /etc/udev/rules.d/70-persistent-net.rules and add
lines such as:


Used to be able to. Maybe there is some magic to allow it,
but it seems to have stopped working by default.


Do you have the systemd-udevd.service running? Dunno if that's been
disabled by default or not...all my machines have been fedup'd.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-   Do you suffer from long-term memory loss?  I don't remember  -
--- Chumbawumba, Amnesia (TubThumping) -
--
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Paul Cartwright
On 05/14/2014 05:12 PM, Rick Stevens wrote:
 I am running Fedora 20  amd_64 . I just setup a Logitach HD webcam
 C310.  Audacity can record from the webcam, so I know it works. Skype
 video works, but no audio on the test call.. I've tried a bunch of fixes
 from the web, nothing seems to work for skype. Is it me?

 Make sure Skype is trying to use the webcam's mike as its input. If you
 have Skype set to use Pulse, then try pavucontrol (PulseAudio Volume
 Control on your desktop Applications-Multimedia menu) and verify that
 Pulse is using the camera's mike. 
my problem is, PA volume control crashes.. I can't use it. I tried Mate
volume control, but it doean't have the options PA volume does.. unless
I switch to a different DM to run skype.. I haven't tried xfce.. maybe
I'll try that  see if PA volume works.

-- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Paul Cartwright
On 05/14/2014 05:31 PM, Paul W. Frields wrote:
 On 05/14/2014 12:01 PM, Paul Cartwright issued this missive:
  I am running Fedora 20  amd_64 . I just setup a Logitach HD webcam
  C310.  Audacity can record from the webcam, so I know it works. Skype
  video works, but no audio on the test call.. I've tried a bunch of fixes
  from the web, nothing seems to work for skype. Is it me?
  
  Make sure Skype is trying to use the webcam's mike as its input. If you
  have Skype set to use Pulse, then try pavucontrol (PulseAudio Volume
  Control on your desktop Applications-Multimedia menu) and verify that
  Pulse is using the camera's mike.
 Note that fine-grained PulseAudio control is part of the optional
 'pavucontrol' package that you may need to install first.  It's a
 useful utility that I sometimes install as well for multiple sound
 card machines.
already installed. PA volume control crashes, so it is a moot point. I
am running MATE desktop, I may have to try exfc or something else..

-- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Ed Greshko
On 05/15/14 08:20, Paul Cartwright wrote:
 On 05/14/2014 05:31 PM, Paul W. Frields wrote:
 On 05/14/2014 12:01 PM, Paul Cartwright issued this missive:
 I am running Fedora 20  amd_64 . I just setup a Logitach HD webcam
 C310.  Audacity can record from the webcam, so I know it works. Skype
 video works, but no audio on the test call.. I've tried a bunch of fixes
 from the web, nothing seems to work for skype. Is it me?

 Make sure Skype is trying to use the webcam's mike as its input. If you
 have Skype set to use Pulse, then try pavucontrol (PulseAudio Volume
 Control on your desktop Applications-Multimedia menu) and verify that
 Pulse is using the camera's mike.
 Note that fine-grained PulseAudio control is part of the optional
 'pavucontrol' package that you may need to install first.  It's a
 useful utility that I sometimes install as well for multiple sound
 card machines.
 already installed. PA volume control crashes, so it is a moot point. I
 am running MATE desktop, I may have to try exfc or something else..


Do you have a bugzilla filed for the pavucontrol problem?

-- 
Do not condemn the judgment of another because it differs from your own. You 
may both be wrong. -- Dandemis
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Rick Stevens

On 05/14/2014 05:20 PM, Paul Cartwright issued this missive:

On 05/14/2014 05:31 PM, Paul W. Frields wrote:

On 05/14/2014 12:01 PM, Paul Cartwright issued this missive:

I am running Fedora 20  amd_64 . I just setup a Logitach HD webcam
C310.  Audacity can record from the webcam, so I know it works. Skype
video works, but no audio on the test call.. I've tried a bunch of fixes

from the web, nothing seems to work for skype. Is it me?

Make sure Skype is trying to use the webcam's mike as its input. If you
have Skype set to use Pulse, then try pavucontrol (PulseAudio Volume
Control on your desktop Applications-Multimedia menu) and verify that
Pulse is using the camera's mike.

Note that fine-grained PulseAudio control is part of the optional
'pavucontrol' package that you may need to install first.  It's a
useful utility that I sometimes install as well for multiple sound
card machines.

already installed. PA volume control crashes, so it is a moot point. I
am running MATE desktop, I may have to try exfc or something else..


I'm running XFCE under the xfwm4 session manager on one machine, XFCE
with metacity on another. Both have pavucontrol-2.0-4.fc20.x86_64.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-  A day for firm decisions!!!   Well, then again, maybe not!-
--
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Paul Cartwright
On 05/14/2014 08:24 PM, Ed Greshko wrote:
  already installed. PA volume control crashes, so it is a moot point. I
  am running MATE desktop, I may have to try exfc or something else..
 
 Do you have a bugzilla filed for the pavucontrol problem?
when I click on the red bell , the crash comes up and it shows the
bugzilla report there. and yes I added a comment to it. Running xfce I
got a better error report, that said to run
start-pulseaudio-x11
it crashed
$ start-pulseaudio-x11
N: [pulseaudio] main.c: User-configured server at
{d8d3bc06a0bd43aa86b529c4e028a3bb}unix:/run/user/1000/pulse/native,
which appears to be local. Probing deeper.


and /var/log/messages showed:
May 14 20:27:09 pauls-server kernel: [21555.078081] pavucontrol[6061]:
segfault at 7f7d5bfff000 ip 7f7d6d023517 sp 7fff311a5590 error 4
in libpulsecommon-4.0.so[7f7d6cff2000+6c000]
May 14 20:27:09 pauls-server kernel: pavucontrol[6061]: segfault at
7f7d5bfff000 ip 7f7d6d023517 sp 7fff311a5590 error 4 in
libpulsecommon-4.0.so[7f7d6cff2000+6c000]
May 14 20:27:10 pauls-server abrt-hook-ccpp: Saved core dump of pid 6061
(/usr/bin/pavucontrol) to /var/tmp/abrt/ccpp-2014-05-14-20:27:09-6061
(24649728 bytes)
May 14 20:27:10 pauls-server abrt-server: Generating core_backtrace
May 14 20:27:10 pauls-server abrt-server: Generating backtrace


-- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Anthony Shipman
On Thu, 15 May 2014 05:16:16 am Robert Moskowitz wrote:
 OK.  That points to an rpm.  I downloaded it and did a 'yum 
 localinstall' which also installed cabextract as a dependency.
 
 And still Acrobat is using the wrong font.  :(
 
It seemed to take a little time before the system started using the new fonts. 
I actually had the fonts come good while reading through the document which
was strange.

pdffonts is in poppler-utils. Find out what fonts your document
requires.
-- 
Anthony ShipmanMamas don't let your babies 
a...@iinet.net.au   grow up to be outsourced.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Ed Greshko
On 05/15/14 08:35, Paul Cartwright wrote:
 On 05/14/2014 08:24 PM, Ed Greshko wrote:
 already installed. PA volume control crashes, so it is a moot point. I
 am running MATE desktop, I may have to try exfc or something else..

 Do you have a bugzilla filed for the pavucontrol problem?
 when I click on the red bell , the crash comes up and it shows the
 bugzilla report there. and yes I added a comment to it. Running xfce I
 got a better error report, that said to run
 start-pulseaudio-x11
 it crashed
 $ start-pulseaudio-x11
 N: [pulseaudio] main.c: User-configured server at
 {d8d3bc06a0bd43aa86b529c4e028a3bb}unix:/run/user/1000/pulse/native,
 which appears to be local. Probing deeper.


 and /var/log/messages showed:
 May 14 20:27:09 pauls-server kernel: [21555.078081] pavucontrol[6061]:
 segfault at 7f7d5bfff000 ip 7f7d6d023517 sp 7fff311a5590 error 4
 in libpulsecommon-4.0.so[7f7d6cff2000+6c000]
 May 14 20:27:09 pauls-server kernel: pavucontrol[6061]: segfault at
 7f7d5bfff000 ip 7f7d6d023517 sp 7fff311a5590 error 4 in
 libpulsecommon-4.0.so[7f7d6cff2000+6c000]
 May 14 20:27:10 pauls-server abrt-hook-ccpp: Saved core dump of pid 6061
 (/usr/bin/pavucontrol) to /var/tmp/abrt/ccpp-2014-05-14-20:27:09-6061
 (24649728 bytes)
 May 14 20:27:10 pauls-server abrt-server: Generating core_backtrace
 May 14 20:27:10 pauls-server abrt-server: Generating backtrace



I should have added  could you post the bugzilla #.

-- 
Do not condemn the judgment of another because it differs from your own. You 
may both be wrong. -- Dandemis
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Logitech C310 webcam

2014-05-14 Thread Rick Stevens

On 05/14/2014 05:52 PM, Ed Greshko issued this missive:

On 05/15/14 08:35, Paul Cartwright wrote:

On 05/14/2014 08:24 PM, Ed Greshko wrote:

already installed. PA volume control crashes, so it is a moot point. I
am running MATE desktop, I may have to try exfc or something else..


Do you have a bugzilla filed for the pavucontrol problem?

when I click on the red bell , the crash comes up and it shows the
bugzilla report there. and yes I added a comment to it. Running xfce I
got a better error report, that said to run
start-pulseaudio-x11
it crashed
$ start-pulseaudio-x11
N: [pulseaudio] main.c: User-configured server at
{d8d3bc06a0bd43aa86b529c4e028a3bb}unix:/run/user/1000/pulse/native,
which appears to be local. Probing deeper.


and /var/log/messages showed:
May 14 20:27:09 pauls-server kernel: [21555.078081] pavucontrol[6061]:
segfault at 7f7d5bfff000 ip 7f7d6d023517 sp 7fff311a5590 error 4
in libpulsecommon-4.0.so[7f7d6cff2000+6c000]
May 14 20:27:09 pauls-server kernel: pavucontrol[6061]: segfault at
7f7d5bfff000 ip 7f7d6d023517 sp 7fff311a5590 error 4 in
libpulsecommon-4.0.so[7f7d6cff2000+6c000]
May 14 20:27:10 pauls-server abrt-hook-ccpp: Saved core dump of pid 6061
(/usr/bin/pavucontrol) to /var/tmp/abrt/ccpp-2014-05-14-20:27:09-6061
(24649728 bytes)
May 14 20:27:10 pauls-server abrt-server: Generating core_backtrace
May 14 20:27:10 pauls-server abrt-server: Generating backtrace




I should have added  could you post the bugzilla #.


Since the traceback is complaining about libpulsecommon, can you tell
us what version of pulseaudio-libs you have? I'm running
4.0-13.gitf81e3.fc20.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-He who laughs last thinks slowest.  -
--
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Consistent device naming

2014-05-14 Thread Bruno Wolff III

On Wed, May 14, 2014 at 15:35:37 -0700,
 CLOSE Dave dave.cl...@us.thalesgroup.com wrote:

Bruno Wolff III wrote:


To exchange names, you need to use a temporary name and do three
renames. Pretty much like swapping to values using a temporary
variable.


I can't find a way to do that with udev. Please enlighten me.


I use ip link set to do that. I am not sure how you would do it
with udev.


Thanks for the reference. But that can't be used after the interface is
up, and my interfaces come up during boot. I think it must be udev or
nothing, and nothing seems to win based on the link I posted previously.
I still think the new naming system is broken /by design/.


I forgot to add that since it's been a while since I actually did it. You 
do have to set the link down before doing the rename. But you can use 
ip link to do that as well.

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Acrobat fonts compared to Evince fonts

2014-05-14 Thread Robert Moskowitz


On 05/14/2014 02:47 PM, Anthony Shipman wrote:

On Thu, 15 May 2014 05:16:16 am Robert Moskowitz wrote:

OK.  That points to an rpm.  I downloaded it and did a 'yum
localinstall' which also installed cabextract as a dependency.

And still Acrobat is using the wrong font.  :(


It seemed to take a little time before the system started using the new fonts.
I actually had the fonts come good while reading through the document which
was strange.

pdffonts is in poppler-utils. Find out what fonts your document
requires.

$ pdffonts predraft7_P802-15-9_Draft_Standard.pdf
name type encoding emb sub uni 
object ID
 -  
--- --- --- -
Times New Roman,Bold TrueType WinAnsi  no  no  
no 306  0
ABCDEE+Times,BoldTrueType WinAnsi  yes yes 
no 309  0
Times New Roman  TrueType WinAnsi  no  no  
no 312  0
ArialTrueType WinAnsi  no  no  
no 240  0
Arial,Bold   TrueType WinAnsi  no  no  
no 243  0
Arial,Bold   CID TrueType Identity-H   yes 
no  yes237  0
Times New Roman  TrueType WinAnsi  no  no  
no 238  0
ArialCID TrueType Identity-H   yes 
no  yes248  0
Symbol   CID TrueType Identity-H   yes 
no  yes251  0
Arial,Italic TrueType WinAnsi  no  no  
no 246  0
Times New Roman,Bold TrueType WinAnsi  no  no  
no 255  0
Times New Roman,BoldItalic   TrueType WinAnsi  no  no  
no 258  0
Times New Roman,Italic   TrueType WinAnsi  no  no  
no 257  0
Times New Roman,BoldItalic   CID TrueType Identity-H   yes 
no  yes263  0
Times New Roman  CID TrueType Identity-H   yes 
no  yes270  0
Times New Roman,Bold CID TrueType Identity-H   yes 
no  yes266  0
ABCDEE+CALIBRI   TrueType WinAnsi  yes yes 
no 272  0
Times New Roman,Italic   CID TrueType Identity-H   yes 
no  yes279  0


And this time when I opened the pdf in acrobat it came up with readable 
fonts.



THANKS EVERYONE!

This wil alsol probably fix my Libreoffice presentation .ppt files being 
viewed on Powerpoint and the otherway around.



--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: stopping cinnamon-started apps at logout

2014-05-14 Thread Garry T. Williams
On 5-12-14 11:21:51 Ahmad Samir wrote:
 On 11/05/14 18:52, Wolfgang S. Rupprecht wrote:
  I'd assumed that the apps started by cinnamon when I logged in
  would also be killed when I logged out.  That doesn't seem to be
  the case for non-X11 programs that hang around forever and watch
  files.

 I am not sure but it could be systemd-logind; try editing
 /etc/systemd/logind.conf and change:

 #KillUserProcesses=no

 to KillUserProcesses=yes

 then reboot the system or restart systemd-logind.service.

 (Check the logind.conf manual page for more details).

Although this may very well be the solution that Wolfgang is looking
for, I suspect that there will be a more fine-grained option evolving
sometime in the future.  The problem is, how do you kill the programs
you want killed off upon logout without killing something like
screen(1)?

-- 
Garry T. Williams

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: stopping cinnamon-started apps at logout

2014-05-14 Thread Ed Greshko
On 05/15/14 11:27, Garry T. Williams wrote:
 On 5-12-14 11:21:51 Ahmad Samir wrote:
 On 11/05/14 18:52, Wolfgang S. Rupprecht wrote:
 I'd assumed that the apps started by cinnamon when I logged in
 would also be killed when I logged out.  That doesn't seem to be
 the case for non-X11 programs that hang around forever and watch
 files.
 I am not sure but it could be systemd-logind; try editing
 /etc/systemd/logind.conf and change:

 #KillUserProcesses=no

 to KillUserProcesses=yes

 then reboot the system or restart systemd-logind.service.

 (Check the logind.conf manual page for more details).
 Although this may very well be the solution that Wolfgang is looking
 for, I suspect that there will be a more fine-grained option evolving
 sometime in the future.  The problem is, how do you kill the programs
 you want killed off upon logout without killing something like
 screen(1)?


Well, the 2 display manager specific options mentioned earlier, which run 
scripts that can be tailored to individual needs, would seem to fit that bill.

-- 
Do not condemn the judgment of another because it differs from your own. You 
may both be wrong. -- Dandemis
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Upgrading Windows on a Linux laptop

2014-05-14 Thread Sudhir Khanger
Sudhir Khanger,
http://sudhirkhanger.com
https://github.com/donniezazen
On May 15, 2014 4:53 AM, Doug dmcgarr...@optonline.net wrote:


 On 05/14/2014 06:41 PM, Steven Rosenberg wrote:


 On Sun, May 11, 2014 at 8:19 AM, fedora fed...@ayni.com wrote:

 Ever considered to install W XP as a VM on linux?
 I was successful with both of them (XP and 7) installed on VirtualBox
in Linux.


 This sounds like the best solution.

 I asked and found that XP will still have the same vulnerability on a VM
as if
 it were installed to its own partition. I came to the conclusion that if
a given
 machine simply cannot run Win 7 because it's too slow, that it would be
 necessary to obtain a better machine, OR only use XP with no internet
 connection. This is possible if you dual boot with a Linux system. You can
 access the 'net via Linux, and transfer any needed download to XP from
 the Linux partition. A bit clumsy, but virus-free.
 (I don't actually know how to make sure that nothing can get thru the
 ethernet port to XP. I don't believe it's possible to remove Internet
Explorer, and
 I don't know if it's still vulnerable if you never access it.)
 Of course, the other answer is not to have an ethernet connection at all,
and to
 move all files to XP via USB sneakernet.

 --doug

 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org


It depends on what you plan to use it for. I have to run something on an
older version of Visual Studio. Window XP is obviously faster than Windows
7 or 8. So I only run VS on XP VM. No internet explorer or no other
software on XP for that matter. I use a shared folder and might consider
disconnecting from internet altogether. I think that's way more convenient
and relatively safer from dedicated Windows install.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org