Re: F22: Interrupted system update
On 10/27/2015 09:28 AM, Sam Varshavchik wrote: Germán A. Racca writes: Hi guys, I have this situation: I was updating my Fedora 22 at the university, but there was a power outage and the update didn't finish. Hopefully, I was able to boot the machine and even to login into Gnome, but now it is impossible to continue with the update using dnf upgrade. I tried package-cleanup --cleandupes, but it didn't work because it wanted to remove systemd and dnf, which are protected packages and are duplicated. Running dnf remove $(dnf repoquery --duplicated --latest-limit -1 -q) also gives the same result: "Error: The operation would result in removing the following protected packages: systemd, dnf". My question is: can I safely remove the lower versions of systemd and dnf with rpm -e and then proceed with cleaning duplicates and continue to update in the usual way, or how should I proceed? Before you can even think of repairing the software package set, you need to verify the integrity of your filesystem and the RPM database. touch /forcefsck then reboot. The reboot will fsck all your partitions. Trying to fix your software packages is a wasted effort, if you discover later that your filesystem is corrupt. After the reboot, run rpm --rebuilddb to rebuild the rpm database. Afterwards, run rpm -V against the NEWER version of systemd and dnf packages. Only if rpm -V gives a clean bill of health would it be safe to forcefully remove the older versions from systemd and dnf. This is the list of duplicated packages (output of 'dnf repoquery --duplicated'): http://paste.fedoraproject.org/284073/95094514/ -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: F22: Interrupted system update
On 10/27/2015 09:28 AM, Sam Varshavchik wrote: Germán A. Racca writes: Hi guys, I have this situation: I was updating my Fedora 22 at the university, but there was a power outage and the update didn't finish. Hopefully, I was able to boot the machine and even to login into Gnome, but now it is impossible to continue with the update using dnf upgrade. I tried package-cleanup --cleandupes, but it didn't work because it wanted to remove systemd and dnf, which are protected packages and are duplicated. Running dnf remove $(dnf repoquery --duplicated --latest-limit -1 -q) also gives the same result: "Error: The operation would result in removing the following protected packages: systemd, dnf". My question is: can I safely remove the lower versions of systemd and dnf with rpm -e and then proceed with cleaning duplicates and continue to update in the usual way, or how should I proceed? Before you can even think of repairing the software package set, you need to verify the integrity of your filesystem and the RPM database. touch /forcefsck then reboot. The reboot will fsck all your partitions. Trying to fix your software packages is a wasted effort, if you discover later that your filesystem is corrupt. After the reboot, run rpm --rebuilddb to rebuild the rpm database. Afterwards, run rpm -V against the NEWER version of systemd and dnf packages. Only if rpm -V gives a clean bill of health would it be safe to forcefully remove the older versions from systemd and dnf. Hi Sam, thanks for your message. After fsck and reboot, I did: # rpm --rebuilddb which finished without errors. Then I verified the versions of dnf: # rpm -q dnf dnf-1.1.1-2.fc22.noarch dnf-1.1.3-1.fc22.noarch and verified the newer version of the package: # rpm -V dnf-1.1.3-1.fc22.noarch so I removed the older version: # rpm -e --nodeps dnf-1.1.1-2.fc22.noarch The problem is with systemd, which is NOT duplicated: # rpm -q systemd systemd-219-24.fc22.x86_64 # rpm -V systemd S.5T. c /etc/sysctl.conf .M.../var/log/journal Then again: # rpm --rebuilddb and I tried to remove duplicated packages: # dnf remove $(dnf repoquery --duplicated --latest-limit -1 -q) Dependencies resolved. Error: The operation would result in removing the following protected packages: systemd, dnf. but it insists in removing systemd and dnf again. How can I proceed next? Many thanks, German. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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
F22: Interrupted system update
Hi guys, I have this situation: I was updating my Fedora 22 at the university, but there was a power outage and the update didn't finish. Hopefully, I was able to boot the machine and even to login into Gnome, but now it is impossible to continue with the update using dnf upgrade. I tried package-cleanup --cleandupes, but it didn't work because it wanted to remove systemd and dnf, which are protected packages and are duplicated. Running dnf remove $(dnf repoquery --duplicated --latest-limit -1 -q) also gives the same result: "Error: The operation would result in removing the following protected packages: systemd, dnf". My question is: can I safely remove the lower versions of systemd and dnf with rpm -e and then proceed with cleaning duplicates and continue to update in the usual way, or how should I proceed? Many thanks in advance! Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: is there an advanced yum/rpm document/tutorial/manual?
On 02/22/2014 07:32 AM, Robert P. J. Day wrote: other than the standard, what i would call basic usage of rpm and yum, is there a really comprehensive guide to package management on fedora? it seems that once one gets beyond the basic tutorials for yum and rpm, it gets harder to find decent coverage of the rest of the utilities, like the commands in yum-utils like "repoquery" and so on. is there a single place that tries to cover rpm/yum to this depth? thanks. rday Hi Robert, Have you checked out the System Administrators Guide at docs.fp.org? In particular, the following links: http://docs.fedoraproject.org/en-US/Fedora/18/html-single/System_Administrators_Guide/index.html#part-Package_Management http://docs.fedoraproject.org/en-US/Fedora/18/html-single/System_Administrators_Guide/index.html#ch-RPM For repoquery, you can get some info here: http://yum.baseurl.org/wiki/RepoQuery And for packaging, IMO this is the best guide: https://fedoraproject.org/wiki/How_to_create_an_RPM_package HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: how to list packages installed from a particular repo
On 01/28/2014 05:48 PM, Fernando Gozalo wrote: Hi I was wondering if there is an easy way to list all the packages installed on a F20 system from a particular repo. yum list | grep '@repo' Regards, Fernando. It will be faster if you use "yum list installed | grep '@repo'" instead :) -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: f20 - suspend and hibernate buttons
On 12/22/2013 05:08 PM, Robert Moskowitz wrote: On 12/20/2013 10:28 PM, "Germán A. Racca" wrote: On 12/20/2013 05:07 PM, Robert Moskowitz wrote: On 12/20/2013 02:47 PM, Greg Woods wrote: On Fri, 2013-12-20 at 13:46 -0500, Robert Moskowitz wrote: How do I get these available somewhere? I would assume on that top bar pulldown that has poweroff and screen lock? What desktop environment are you using? If it's Gnome 3, in the gnome-tweak-tool you can select Shell Extensions, then turn on "Alternate Status Menu". yes Gnome 3. I don't see Shell Extensions. Only Extensions. There is an 'Install Shell Extension' option there, but if I click it, it looks for file to install. Do I go to 'Get More Extensions'? What do you think? :) That link will open this site: https://extensions.gnome.org/ "Alternative Status Menu" extension doesn't work with Fedora 20 (yet). Oh. So how do I test hibernate until then? Suspend works when I close the notebook. Hi Robert, There is a command to do this, but I don't know if it is useful to you. Anyway, you can try 'systemctl hibernate'. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: f20 - can't move windows
On 12/20/2013 05:09 PM, Robert Moskowitz wrote: On 12/20/2013 01:31 PM, Robert Moskowitz wrote: On f17 I can move a window or dialog box by holding down and and moving the window where I want. This is very valuable on reduced screen devices where fixed dialogs don't fix all on the screen. I cannot get this to work on f20. I recall some mention somewhere in the installation instructions that a minimum of 800x640 was required for install, but that reduce screen sizes were supported after install. How do I enable this feature? It works, kind of for gnome-tweak-tool but only if I do it near the top, just below the title bar. Wierd. There is an option in gnome-tweak-tool: Windows -> Window Action Key and then select Alt. Good luck! -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: f20 - suspend and hibernate buttons
On 12/20/2013 05:07 PM, Robert Moskowitz wrote: On 12/20/2013 02:47 PM, Greg Woods wrote: On Fri, 2013-12-20 at 13:46 -0500, Robert Moskowitz wrote: How do I get these available somewhere? I would assume on that top bar pulldown that has poweroff and screen lock? What desktop environment are you using? If it's Gnome 3, in the gnome-tweak-tool you can select Shell Extensions, then turn on "Alternate Status Menu". yes Gnome 3. I don't see Shell Extensions. Only Extensions. There is an 'Install Shell Extension' option there, but if I click it, it looks for file to install. Do I go to 'Get More Extensions'? What do you think? :) That link will open this site: https://extensions.gnome.org/ "Alternative Status Menu" extension doesn't work with Fedora 20 (yet). -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: f20 - gnome-tweak-tools?
On 12/19/2013 09:26 PM, Robert Moskowitz wrote: On 12/19/2013 06:15 PM, Steven Stern wrote: On 12/19/2013 05:05 PM, Robert Moskowitz wrote: So I have been reading up release notes on f20 which leads me to release notes of gnome 3.10 and http://docs.fedoraproject.org/en-US/Fedora/20/html/Release_Notes/sect-Release_Notes-Changes_for_Desktop.html 3.1.4 discusses gnome-tweak-tool No gnome-tweak-tool installed. so yum provides gnome-tweak-tool and No matches found What happened? Who stole it? ;) Yum install gnome-tweak-tool You search should have been [sdstern@sds-desk-2 ~]$ yum provides "*/gnome-tweak-tool" 00:00 gnome-tweak-tool-3.10.1-2.fc20.noarch : A tool to customize advanced GNOME 3 : options Repo: fedora Matched from: Filename: /usr/share/doc/gnome-tweak-tool Filename: /usr/share/gnome-tweak-tool Filename: /usr/bin/gnome-tweak-tool Doesn't work for me; and I tried using the public mirrors, not my local repo. Further on: http://mirrors.kernel.org/fedora/releases/20/Fedora/i386/os/Packages/g/ and http://mirrors.kernel.org/fedora/releases/20/Fedora/x86_64/os/Packages/g/ no gnome-tweak-tools Please put the full output, including the command, and don't truncate it. When you use provides option, you have to put the name of a file, and in your case it could be '/usr/bin/gnome-tweak-tool' or more specifically '*/gnome-tweak-tool'. HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: f20 - gedit
On 12/19/2013 10:05 PM, Robert Moskowitz wrote: On 12/19/2013 07:45 PM, "Germán A. Racca" wrote: On 12/19/2013 09:32 PM, Robert Moskowitz wrote: On 12/19/2013 07:16 PM, "Germán A. Racca" wrote: On 12/19/2013 07:22 PM, Robert Moskowitz wrote: On 12/19/2013 08:35 AM, Alexander Volovics wrote: On Thu, Dec 19, 2013 at 08:05:49AM -0500, Robert Moskowitz wrote: Confirm used dconf-editor instead to set the overrides and now those entries appear within gedit. What did you change? I just went through all of dconf-editor listed items and did not recognize anything to change that would turn on settings/preferences in gedit let alone directly turn off word wrap. When you open gedit in Fed20 + Gnome-3.10 a gedit icon appears in the top bar. If you click on this and choose 'preferences' you will see under 'Text Wrapping' the entries: 'enable text wrapping' and 'do not split words over two lines'. Is this what you are looking for. I assume you are using standard Gnome-3.10 and not "classic mode". I know nothing about "classic mode" (don't use it). Is this icon not visible in your install? Fresh install. Have not applied the updates yet. Please, do it right now. I see that gedit icon on the top bar once gedit is running. It has a down arrow right next to it. I assume that lets me switch between copies of gedit if more than one is open. Why don't you try instead of assume? The down arrow is not for switching between different copies of the same application, but for a drop down menu. You should click on it to see its behavior by yourself, it is cheap!! I DID try clicking on the arrow and nothing happened. Since I only had one gedit opened, I tried to figure it out. Now that you say this is what it does, I realized where I MAY be having troubles. I am in terminal, sued, and running gedit to edit the yum.conf.d files! So I opened terminal regular and ran gedit & and sure enough it works and I can set preferences no problem for ME and turn off word wrap. But I cannot do it for root's use of gedit to edit config files. :( You are right about this, because I opened /etc/yum.conf with gedit using sudo and I'm not able to open the drop down menu. Maybe this behavior is intentional, but I'm not sure. So, I should give it a try and just put up with the wrapping. Afterall vi wraps, but actually does it smarter. I can see why, as the top bar is running as ME and should NOT let ME set preferences for gedit as root. But that begs the question on HOW to change the preferences for root. Anyway, it is safer to use something like VIM to edit files as root, I only tested gedit because I saw your email, but as root I use only VIM to edit files :) -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: f20 - gedit
On 12/19/2013 09:32 PM, Robert Moskowitz wrote: On 12/19/2013 07:16 PM, "Germán A. Racca" wrote: On 12/19/2013 07:22 PM, Robert Moskowitz wrote: On 12/19/2013 08:35 AM, Alexander Volovics wrote: On Thu, Dec 19, 2013 at 08:05:49AM -0500, Robert Moskowitz wrote: Confirm used dconf-editor instead to set the overrides and now those entries appear within gedit. What did you change? I just went through all of dconf-editor listed items and did not recognize anything to change that would turn on settings/preferences in gedit let alone directly turn off word wrap. When you open gedit in Fed20 + Gnome-3.10 a gedit icon appears in the top bar. If you click on this and choose 'preferences' you will see under 'Text Wrapping' the entries: 'enable text wrapping' and 'do not split words over two lines'. Is this what you are looking for. I assume you are using standard Gnome-3.10 and not "classic mode". I know nothing about "classic mode" (don't use it). Is this icon not visible in your install? Fresh install. Have not applied the updates yet. Please, do it right now. I see that gedit icon on the top bar once gedit is running. It has a down arrow right next to it. I assume that lets me switch between copies of gedit if more than one is open. Why don't you try instead of assume? The down arrow is not for switching between different copies of the same application, but for a drop down menu. You should click on it to see its behavior by yourself, it is cheap!! I DID try clicking on the arrow and nothing happened. Since I only had one gedit opened, I tried to figure it out. Now that you say this is what it does, I realized where I MAY be having troubles. I am in terminal, sued, and running gedit to edit the yum.conf.d files! So I opened terminal regular and ran gedit & and sure enough it works and I can set preferences no problem for ME and turn off word wrap. But I cannot do it for root's use of gedit to edit config files. :( You are right about this, because I opened /etc/yum.conf with gedit using sudo and I'm not able to open the drop down menu. Maybe this behavior is intentional, but I'm not sure. But neither left or right click on this icon produced anything. No action at all. Perhaps you enabled something else first for gnome? Left click doesn't work? Maybe your mouse is broken. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: f20 - gedit
On 12/19/2013 07:22 PM, Robert Moskowitz wrote: On 12/19/2013 08:35 AM, Alexander Volovics wrote: On Thu, Dec 19, 2013 at 08:05:49AM -0500, Robert Moskowitz wrote: Confirm used dconf-editor instead to set the overrides and now those entries appear within gedit. What did you change? I just went through all of dconf-editor listed items and did not recognize anything to change that would turn on settings/preferences in gedit let alone directly turn off word wrap. When you open gedit in Fed20 + Gnome-3.10 a gedit icon appears in the top bar. If you click on this and choose 'preferences' you will see under 'Text Wrapping' the entries: 'enable text wrapping' and 'do not split words over two lines'. Is this what you are looking for. I assume you are using standard Gnome-3.10 and not "classic mode". I know nothing about "classic mode" (don't use it). Is this icon not visible in your install? Fresh install. Have not applied the updates yet. Please, do it right now. I see that gedit icon on the top bar once gedit is running. It has a down arrow right next to it. I assume that lets me switch between copies of gedit if more than one is open. Why don't you try instead of assume? The down arrow is not for switching between different copies of the same application, but for a drop down menu. You should click on it to see its behavior by yourself, it is cheap!! But neither left or right click on this icon produced anything. No action at all. Perhaps you enabled something else first for gnome? Left click doesn't work? Maybe your mouse is broken. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: evince
On 11/27/2013 03:45 PM, Jonathan Dieter wrote: On Wed, 2013-11-27 at 18:12 +0100, Michael Schwendt wrote: On Wed, 27 Nov 2013 16:18:37 +0100, Patrick Dupre wrote: Hello, The viewing ot the attached file is correct with xpsd and acroread, but is wrong with evince. The correct character is a \Delta with the wrong character for me is \Phi. Would you know what is wrong? It's a delta symbol here. $ rpm -q evince evince-3.10.3-1.fc20.x86_64 What kind of desktop environment do you run? Maybe you've customised/changed it to end up with a fonts issue? FWIW, on Fedora 19+updates, it's a phi symbol. I'm running the standard Gnome 3 desktop. $ rpm -q evince evince-3.8.3-2.fc19.x86_64 Jonathan Running Gnome 3 in F19 up to date, and I see a \Delta here. $ rpm -q evince evince-3.8.3-2.fc19.x86_64 -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: Software Install?....
On 11/16/2013 09:26 PM, EGO.II-1 wrote: Nevermind everyoneI found the answer: Had to open a Terminal and install "gnome-software".sorry for the "silly-ness"! LoL! EGO II On 11/16/2013 06:09 PM, EGO.II-1 wrote: I know this is going to sound crazy to the die-hard people in here, but someone asked me.and I was unable to provide an answer.so here goes: How DO you "add/Remove software in Fedora now? it would seem that there's no way to do it unless you know the package name and do it from the terminal? TIA EGO II Isn't gnome-software for Fedora 20? For Fedora 19 you have Software (gpk-application) and Yumex. HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: Make mplayer default on GNOME 3
On 09/21/2013 04:32 PM, Jorge Fábregas wrote: Hello everyone, Where can I set the default application for video files in Fedora 19 (GNOME Shell)? I want to make mplayer (command line version) the default. So far I've tried: - right clicking the video file --> Open With ...but mplayer is not listed there - Settings --> Details --> Default Applications --> Video ...but I only see "Videos" listed (wonderful name for Totem). - Created .desktop file in $HOME/.local/share/applications but still can't make it work. Any help would be appreciated. Thanks, Jorge Jorge, Don't forget to update mimeapps.list in ~/.local/share/applications. All the best, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: GNOME Classic & Extensions
On 09/14/2013 11:38 AM, Jorge Fábregas wrote: Hi Jorge, Hi, I'm running Fedora 19 & GNOME Classic Session and wondered if there was any extension for: - add "Open in Terminal" when you right-click on the desktop (like GNOME 2 used to) Take a look at this extension: https://extensions.gnome.org/extension/721/gnome-shell-open-terminal/ - a workspace extension so that I could see all the workspaces on the bottom right hand. Right now, with the classic session, I have to click twice: activate pop-up & then choose the desired workspace. Again, I'm looking something like the old days. I searched the extensions website but can't find any for these. Thanks, Jorge -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: Kernel 3.11 and Fedora 19...
On 09/06/2013 07:07 PM, Fernando Cassia wrote: Hi folks, A few questions considering the nice improvements [1] in Kernel 3.11 1. Is there a kernel spec file for Fedora 19 that could be used to compile a 3.11 kernel with the same build parameters as the F19 one? You can find here the different commits: http://pkgs.fedoraproject.org/cgit/kernel.git/ HTH, Germán. 2. Which kernel does F20 expect to use? 3. Anyone on this list running kernel 3.11 with F19? Did you build it yourself or did you use one provided by someone else? In the latter case: who/where? :) Thanks in advance, FC [1] http://www.phoronix.com/scan.php?page=news_item&px=MTQ1MDI -- During times of Universal Deceit, telling the truth becomes a revolutionary act - George Orwell -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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 and Thunderbird Aug releases
On 08/08/2013 03:48 PM, David wrote: Does anyone have any idea when we can expect Firefox 23 and Thunderbird 17.08? They are in updates-testing, at least for F19 :) -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- 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: Where does gnome-abrt report its crashes to?
On 07/13/2013 10:02 PM, Jonathan Ryshpan wrote: I recently submitted a crash report using the gnome-abrt application/applet and would like to file a comment to it. Which bugzilla did gnome-abrt submit it to? I had assumed that the gnome-abrt user interface would tell me, or I would get an email from the bugzilla; but neither has happened. Thanks - jon Hi Jon, When open gnome-abrt, to the left you have the list of packages, and if you click on one of them, then to the right you get some description and the link to Bugzilla (if you already reported the bug). HTH. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: 138a:0018 Validity Sensors will not work
On 07/08/2013 06:40 PM, Jerome Yanga wrote: On Mon, Jul 8, 2013 at 2:02 PM, "Germán A. Racca" mailto:german.ra...@gmail.com>> wrote: On 07/08/2013 05:57 PM, Jerome Yanga wrote: On Mon, Jul 8, 2013 at 1:40 PM, "Germán A. Racca" mailto:german.ra...@gmail.com> <mailto:german.ra...@gmail.com <mailto:german.ra...@gmail.com>__>> wrote: On 07/08/2013 03:25 PM, Jerome Yanga wrote: On Mon, Jul 8, 2013 at 1:40 AM, poma mailto:pomidorabelis...@gmail.com> <mailto:pomidorabelisima@__gmail.com <mailto:pomidorabelis...@gmail.com>> <mailto:pomidorabelisima@ <mailto:pomidorabelisima@>__gma__il.com <http://gmail.com> <mailto:pomidorabelisima@__gmail.com <mailto:pomidorabelis...@gmail.com>>>> wrote: On 06.07.2013 11:31, Jerome Yanga wrote: > Thanks, Poma. > > I have compiled and installed the code in the URL you have provided. > However, I am still seeing the same issue. Don't top-post, s'il vous plaît. That is a library part - 'libfprint', follows a service part - 'fprintd'. ;) poma I didn't realize that the link to fprintd was not created by the libfprint install. I created a symlink for libfprint.so.0 and fprintd works now. Woohoo! Thanks. regards, j Hi Jerome, Do you know what is the difference between this library that you have compiled and the packages in Fedora? I'm asking because I think it is the same project. I also have a Validity Sensors, which also doesn't work, but mine is a bit different than yours: $ lsusb | grep -i finger Bus 001 Device 004: ID 138a:0008 Validity Sensors, Inc. VFS300 Fingerprint Reader $ lsusb -d 138a:0008 -v Bus 001 Device 004: ID 138a:0008 Validity Sensors, Inc. VFS300 Fingerprint Reader Device Descriptor: bLength18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 255 Vendor Specific Class bDeviceSubClass16 bDeviceProtocol 255 bMaxPacketSize0 8 idVendor 0x138a Validity Sensors, Inc. idProduct 0x0008 VFS300 Fingerprint Reader bcdDevicec.90 iManufacturer 0 iProduct0 iSerial 1 bNumConfigurations 1 .. These are the packages I have installed: $ rpm -qa | grep fprint fprintd-0.5.0-1.fc19.x86_64 fprint_demo-0.4-12.fc19.1.x86_64 fprintd-pam-0.5.0-1.fc19.x86_64 libfprint-0.5.0-2.fc19.x86_64 The package in Fedora crashes when I'm configuring my fingerprint. Would you show me the steps you followed to compile the library? Regards, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux <https://fedoraproject.org/__wiki/User:Skytux> <https://fedoraproject.org/__wiki/User:Skytux <https://fedoraproject.org/wiki/User:Skytux>> -- users mailing list users@lists.fedoraproject.org <mailto:users@lists.fedoraproject.org> <mailto:users@lists.__fedoraproject.org <mailto:users@lists.fedoraproject.org>> To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users <https://admin.fedoraproject.__org/mailman/listinfo/users <https://admin.fedoraproject.org/mailman/listinfo/users>> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines <http://fedoraproject.org/wiki/__Mailing_list_guidelines> <http://fedoraproject.org/__wiki/Mailing_list_guidelines <http://fedoraproject.org/wiki/Mailing_list_guidelines>> Have a question? Ask away: http://ask.fedoraproject.org German, I do not think that y
Re: 138a:0018 Validity Sensors will not work
On 07/08/2013 05:57 PM, Jerome Yanga wrote: On Mon, Jul 8, 2013 at 1:40 PM, "Germán A. Racca" mailto:german.ra...@gmail.com>> wrote: On 07/08/2013 03:25 PM, Jerome Yanga wrote: On Mon, Jul 8, 2013 at 1:40 AM, poma mailto:pomidorabelis...@gmail.com> <mailto:pomidorabelisima@__gmail.com <mailto:pomidorabelis...@gmail.com>>> wrote: On 06.07.2013 11:31, Jerome Yanga wrote: > Thanks, Poma. > > I have compiled and installed the code in the URL you have provided. > However, I am still seeing the same issue. Don't top-post, s'il vous plaît. That is a library part - 'libfprint', follows a service part - 'fprintd'. ;) poma I didn't realize that the link to fprintd was not created by the libfprint install. I created a symlink for libfprint.so.0 and fprintd works now. Woohoo! Thanks. regards, j Hi Jerome, Do you know what is the difference between this library that you have compiled and the packages in Fedora? I'm asking because I think it is the same project. I also have a Validity Sensors, which also doesn't work, but mine is a bit different than yours: $ lsusb | grep -i finger Bus 001 Device 004: ID 138a:0008 Validity Sensors, Inc. VFS300 Fingerprint Reader $ lsusb -d 138a:0008 -v Bus 001 Device 004: ID 138a:0008 Validity Sensors, Inc. VFS300 Fingerprint Reader Device Descriptor: bLength18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 255 Vendor Specific Class bDeviceSubClass16 bDeviceProtocol 255 bMaxPacketSize0 8 idVendor 0x138a Validity Sensors, Inc. idProduct 0x0008 VFS300 Fingerprint Reader bcdDevicec.90 iManufacturer 0 iProduct0 iSerial 1 bNumConfigurations 1 .. These are the packages I have installed: $ rpm -qa | grep fprint fprintd-0.5.0-1.fc19.x86_64 fprint_demo-0.4-12.fc19.1.x86___64 fprintd-pam-0.5.0-1.fc19.x86___64 libfprint-0.5.0-2.fc19.x86_64 The package in Fedora crashes when I'm configuring my fingerprint. Would you show me the steps you followed to compile the library? Regards, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/__wiki/User:Skytux <https://fedoraproject.org/wiki/User:Skytux> -- users mailing list users@lists.fedoraproject.org <mailto:users@lists.fedoraproject.org> To unsubscribe or change subscription options: https://admin.fedoraproject.__org/mailman/listinfo/users <https://admin.fedoraproject.org/mailman/listinfo/users> Guidelines: http://fedoraproject.org/wiki/__Mailing_list_guidelines <http://fedoraproject.org/wiki/Mailing_list_guidelines> Have a question? Ask away: http://ask.fedoraproject.org German, I do not think that you need to compile the newest driver for your sensor as it already exists for your hardware. Just to make sure, please provide the output to the command below. grep 138a /usr/lib/udev/rules.d/60-fprint-autosuspend.rules Nevertheless, I merely followed the instructions in INSTALL file that came with the driver. https://github.com/maffmeier/fprint_vfs5011/blob/master/INSTALL In my case, I simple ran the command below. ./configure; make; make install regards, j Thanks for your prompt reply Jerome. This is the output you asked for: $ grep 138a /usr/lib/udev/rules.d/60-fprint-autosuspend.rules SUBSYSTEM=="usb", ATTRS{idVendor}=="138a", ATTRS{idProduct}=="0001", ATTRS{dev}=="*", ATTR{power/control}="auto" SUBSYSTEM=="usb", ATTRS{idVendor}=="138a", ATTRS{idProduct}=="0005", ATTRS{dev}=="*", ATTR{power/control}="auto" SUBSYSTEM=="usb", ATTRS{idVendor}=="138a", ATTRS{idProduct}=="0008", ATTRS{dev}=="*", ATTR{power/control}="auto" Regards, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: 138a:0018 Validity Sensors will not work
On 07/08/2013 03:25 PM, Jerome Yanga wrote: On Mon, Jul 8, 2013 at 1:40 AM, poma mailto:pomidorabelis...@gmail.com>> wrote: On 06.07.2013 11:31, Jerome Yanga wrote: > Thanks, Poma. > > I have compiled and installed the code in the URL you have provided. > However, I am still seeing the same issue. Don't top-post, s'il vous plaît. That is a library part - 'libfprint', follows a service part - 'fprintd'. ;) poma I didn't realize that the link to fprintd was not created by the libfprint install. I created a symlink for libfprint.so.0 and fprintd works now. Woohoo! Thanks. regards, j Hi Jerome, Do you know what is the difference between this library that you have compiled and the packages in Fedora? I'm asking because I think it is the same project. I also have a Validity Sensors, which also doesn't work, but mine is a bit different than yours: $ lsusb | grep -i finger Bus 001 Device 004: ID 138a:0008 Validity Sensors, Inc. VFS300 Fingerprint Reader $ lsusb -d 138a:0008 -v Bus 001 Device 004: ID 138a:0008 Validity Sensors, Inc. VFS300 Fingerprint Reader Device Descriptor: bLength18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 255 Vendor Specific Class bDeviceSubClass16 bDeviceProtocol 255 bMaxPacketSize0 8 idVendor 0x138a Validity Sensors, Inc. idProduct 0x0008 VFS300 Fingerprint Reader bcdDevicec.90 iManufacturer 0 iProduct0 iSerial 1 bNumConfigurations 1 .. These are the packages I have installed: $ rpm -qa | grep fprint fprintd-0.5.0-1.fc19.x86_64 fprint_demo-0.4-12.fc19.1.x86_64 fprintd-pam-0.5.0-1.fc19.x86_64 libfprint-0.5.0-2.fc19.x86_64 The package in Fedora crashes when I'm configuring my fingerprint. Would you show me the steps you followed to compile the library? Regards, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: F19: GRUB and Plymouth issues
On 07/08/2013 05:32 AM, poma wrote: On 08.07.2013 09:11, sguazt wrote: Hello, Thank you for the feedback. Just for info, is the grub2 "without themed" the new F19 default, or something's gone wrong with my installation? It is essential for the boot loader to boot the kernel, not to play disco. :) poma Poma, he asked a different thing, and "just for info" :) Marco, I'm not sure if it is the default behavior, but I did a fresh install with the live desktop DVD and my grub was also without theme. Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: F19: GRUB and Plymouth issues
On 07/07/2013 02:25 PM, Joachim Backes wrote: On 07/07/2013 07:15 PM, "Germán A. Racca" wrote: On 07/07/2013 01:27 PM, sguazt wrote: Hello, I've just installed F19 x86_64 from DVD. The first issue is that the GRUB boot screen * is only text-based (white text with a black background), * and uses an inadequate text encoding since it shows question marks in place of the umlauted "o" (i.e., the o vowel with two dots on top of it) in the Schrodinger word The second issue is related to plymouth. The service plymouth-quit-wait is marked as failed: plymouth-quit-wait.service - Wait for Plymouth Boot Screen to Quit Loaded: loaded (/usr/lib/systemd/system/plymouth-quit-wait.service; disabled) Active: failed (Result: timeout) since Sun 2013-07-07 12:55:22 CEST; 5h 30min ago Main PID: 396 CGroup: name=systemd:/system/plymouth-quit-wait.service Any idea? Thank you very much Best, -- Marco About Grub, that is what I did: first I installed grub2-starfield-theme and then I modified the file /etc/default/grub by adding the following lines: GRUB_THEME="/boot/grub2/themes/system/theme.txt" GRUB_TERMINAL_OUTPUT="gfxterm" Finally, you should reboot to see the theme in action. Hi, I think you need an additional step before rebooting: grub2-mkconfig -o /boot/grub2/grub.cfg (don't forget to do a backup copy of /boot/grub2/grub.cfg!) Kind regards Joachim Backes Oh indeed, I forgot about that part, sorry :) Thanks Joachim! Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: F19: GRUB and Plymouth issues
On 07/07/2013 01:27 PM, sguazt wrote: Hello, I've just installed F19 x86_64 from DVD. The first issue is that the GRUB boot screen * is only text-based (white text with a black background), * and uses an inadequate text encoding since it shows question marks in place of the umlauted "o" (i.e., the o vowel with two dots on top of it) in the Schrodinger word The second issue is related to plymouth. The service plymouth-quit-wait is marked as failed: plymouth-quit-wait.service - Wait for Plymouth Boot Screen to Quit Loaded: loaded (/usr/lib/systemd/system/plymouth-quit-wait.service; disabled) Active: failed (Result: timeout) since Sun 2013-07-07 12:55:22 CEST; 5h 30min ago Main PID: 396 CGroup: name=systemd:/system/plymouth-quit-wait.service Any idea? Thank you very much Best, -- Marco About Grub, that is what I did: first I installed grub2-starfield-theme and then I modified the file /etc/default/grub by adding the following lines: GRUB_THEME="/boot/grub2/themes/system/theme.txt" GRUB_TERMINAL_OUTPUT="gfxterm" Finally, you should reboot to see the theme in action. HTH. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Website can't see Java
On 06/07/2013 07:04 PM, Fred Erickson wrote: On Fri, 07 Jun 2013 23:56:20 +0200 antonio wrote: Jim ha scritto / said the followingil giorno/on 07/06/2013 23:53: On 06/07/2013 05:46 PM, Frank Murphy wrote: if you click proceed to "unsigned certificate" in a popup. if you click proceed to "unsigned certificate" in a popup. Popup Where ?? I suppose that Frank has Selinux disabled/permissive... as I get exactle same behaviour as Jim, if Selinux is enforcing no Java is detected, but when Selinux is permissive, I get the popup. Please confirm me too - Selinux denial It generates an AVC denial and doesn't detect Java in my Fedora 18: "SELinux is preventing /usr/lib/jvm/java-1.7.0-openjdk-1.7.0.19.x86_64/jre/bin/java from create access on the directory ." -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Cursor changed on me? [SOLVED]
On 06/03/2013 12:41 PM, Tom Horsley wrote: On Mon, 3 Jun 2013 10:07:24 -0400 Tom Horsley wrote: Did some library just change to pick up cursor themes in a different setting somewhere? Found it!. The libXcursor update installed a new copy of /usr/share/icons/default/index.theme I had edited it to say Inherits=Bluecurve, but the new rpm put it back to Adwaita. I guess I need to add this to the stuff I automagically re-edit in my after yum hook: http://home.comcast.net/~tomhorsley/game/Mjolnir.html Hi Tom, You can put the configuration in your home directory: $ cat .icons/default/index.theme Inherits=dmz So in that way it is safe and won't be overwrite with any update. HTH, -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Big problem with an update
On 05/24/2013 11:51 PM, Frank McCormick wrote: On 05/24/2013 10:44 PM, Patrick O'Callaghan wrote: On Fri, 2013-05-24 at 22:35 -0400, Frank McCormick wrote: I was updating Fedora 19 Let me stop you right there. This list is for F17 and F18. F19 is not released yet so you should go to the Fedora Test list (note that many testers don't even read the Users list). poc This is not a F19 problemit's a YUM/RPM problem which happened during a system crash. The crash I can explain, the other problem I can't yet fix. Frank, Sorry but this happened in a F19 system with F19 packages, so please ask in the test list. All the best, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: A Software Center for Fedora?
On 05/18/2013 12:46 AM, Rahul Sundaram wrote: Hi On Fri, May 17, 2013 at 9:45 PM, Anthony wrote: One of the things I really like about Ubuntu is the concept behind the software center. Canonical has poorly implemented it but the idea behind it is pretty solid. That got me wondering...why doesn't Fedora have a similar product? Richard Hughes from Red Hat has started working on a app center http://worldofgnome.org/gnome-is-ready-to-unleash-the-beast-an-app-center/ http://worldofgnome.org/richard-hughes-about-gnome-software/ To complement your info: Wanna help GNOME Software App? http://worldofgnome.org/wanna-help-gnome-software-app/ :) It might use the tagging info from Fedora tagger https://apps.fedoraproject.org/tagger/ etc and aims to provide a distribution neutral interface using the PackageKit API (not the user interface). I haven't checked the current status of it but it should be release soon. PackageKit -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Running Python command - Error
On 05/13/2013 06:37 PM, Jim wrote: Fedora 18 Where do I find the setuptools module ? For error below $python setup.py install Traceback (most recent call last): File "setup.py", line 2, in from setuptools import setup, find_packages ImportError: No module named setuptools Below is the setup.py #!/usr/bin/env python from setuptools import setup, find_packages setup(name="python-instagram", version="0.8.0", description="Instagram API client", license="MIT", install_requires=["simplejson","httplib2"], author="Instagram, Inc", author_email="apidevelop...@instagram.com", url="http://github.com/Instagram/python-instagram";, packages = find_packages(), keywords= "instagram", zip_safe = True) It is python-setuptools. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Rant of the day: Insane dependencies for liveusb-creator
On 05/11/2013 04:03 PM, Fernando Cassia wrote: On Sat, May 11, 2013 at 12:03 PM, "Germán A. Racca" wrote: I sincerely think that this kind of complaints (I have seen several from you too) won't take you nowhere. Yes, it takes me to nirvana. It shows me what software is well written and which ones are not. Have you thought about programming a "simple" graphical interface without any dependency at all? I you do it, I promise I package it for Fedora :) Once upon a time, I did, just by using Zenity, a tool to add GUIs to Bash scripts done by a guy at Sun Microsystems, Glynn Foster https://help.gnome.org/users/zenity/2.91/index-info.html.en Such script worked with domain name registrations, and it stopped working the time the registrar changed its web page (it did a lot of ugly scrapping of html). But it only needed zenity, nothing else, and certainly not 100MB of crud installed. All the best, abrazos, Germán. In the end, German, it's a free world, and I'm free to complain if I think some software is not designed as it should. It might end up encourage others to "fix it", or design a better replacement. In fact, had livecd-creator been _statically linked_ and available on the LiveCD, I'd have just run 'livecd-creator' from a shell window and this thread would have never happened. In the end, German, do you know how I fixed it? here's the recipe, I used TUXBOOT, which transfers ISO images to pen drives with a friendly GUI, and doesn't need the same tons of deps as LiveCD-creator does. I got it from here. http://downloads.sourceforge.net/project/tuxboot/old/tuxboot-linux-39-i686?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Ftuxboot%2Ffiles%2F&ts=1368243790&use_mirror=ufpr Of couse, all weren't roses... it wants to be run as root, and Fedora by default does not run GUI apps as root. So I had to do 1. xhost SI:localuser:root and then install the p7zip-plugins package that it requires but is not on the F18 repos. 2. yum install ftp://ftp.univie.ac.at/systems/linux/fedora/releases/18/Everything/i386/os/Packages/p/p7zip-plugins-9.20.1-4.fc18.i686.rpm Finally, I had to run it with beesu. But it certainly didn't need 100MB of deps installed. As usual, just my $0.02 worth of opinion ;) FC But... does it work if you don't have qt/kde installed? G. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Rant of the day: Insane dependencies for liveusb-creator
-4.10-1.fc18.i686 12/14 Verifying : qtwebkit-2.2.2-8.fc18.i686 13/14 Verifying : libqzeitgeist-0.8.0-8.fc18.i68614/14 Installed: liveusb-creator.noarch 0:3.11.8-1.fc18 Dependency Installed: PyQt4.i686 0:4.10-1.fc18 kde-filesystem.i686 0:4-42.fc18 libmng.i686 0:1.0.10-8.fc18 libqzeitgeist.i686 0:0.8.0-8.fc18 phonon.i686 0:4.6.0-5.fc18 phonon-backend-gstreamer.i686 2:4.6.3-1.fc18 qt.i686 1:4.8.4-17.fc18 qt-mobility.i686 0:1.2.2-0.3.20120224git.fc18 qt-settings.noarch 0:4.9-20.fc18 qt-x11.i686 1:4.8.4-17.fc18 qtwebkit.i686 0:2.2.2-8.fc18 sip.i686 0:4.14.5-1.fc18 syslinux-extlinux.i686 0:4.05-4.fc18 Complete! / FC -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: f18+gnome3: howto recording desktop with audio
On 05/10/2013 11:02 AM, Dario Lesca wrote: Il giorno lun, 06/05/2013 alle 17.57 -0300, "Germán A. Racca" ha scritto: On 01/26/2013 07:09 PM, Dario Lesca wrote: How to record via ctrl+alt+shift+r, video and audio together ? I have fount this trick: http://askubuntu.com/questions/112473/audio-not-working-for-gnome-screencast-ctrl-alt-shift-r But the command for set the "org.gnome.shell.recorder pipeline" key: gsettings set org.gnome.shell.recorder pipeline "queue ! \ videorate ! vp8enc quality=10 speed=2 ! mux. pulsesrc ! \ audio/x-raw-int ! queue ! audioconvert ! vorbisenc ! \ mux. webmmux name=mux" ... do not work, and break the recording, likely this setting is for gstreamer-0.10, bud f18 use gstreamer1-1.x, true?. This is home page of shell recorder, but there is nothing for enable audio recording. http://developer.gnome.org/shell/stable/shell-shell-recorder.html Someone have suggest? Many thanks Hi Dario, Did you find a solution? For now I rec video/audio via this command line: gst-launch ximagesrc ! ffmpegcolorspace ! queue ! vp8enc quality=10 speed=2 ! mux. pulsesrc ! audio/x-raw-int ! queue ! audioconvert ! vorbisenc ! mux. webmmux name=mux ! filesink location=/tmp/screencast.webm Found here: https://plus.google.com/111049168280159033135/posts/8Ra2uhYCgGm Using that pipeline it can't even start recording with Ctrl+Alt+Shift+R, at least using gnome-shell 3.6.3.1 :( Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: f18+gnome3: howto recording desktop with audio
On 05/07/2013 11:33 AM, Paul W. Frields wrote: On Mon, May 06, 2013 at 05:57:45PM -0300, "Germán A. Racca" wrote: On 01/26/2013 07:09 PM, Dario Lesca wrote: How to record via ctrl+alt+shift+r, video and audio together ? I have fount this trick: http://askubuntu.com/questions/112473/audio-not-working-for-gnome-screencast-ctrl-alt-shift-r But the command for set the "org.gnome.shell.recorder pipeline" key: gsettings set org.gnome.shell.recorder pipeline "queue ! \ videorate ! vp8enc quality=10 speed=2 ! mux. pulsesrc ! \ audio/x-raw-int ! queue ! audioconvert ! vorbisenc ! \ mux. webmmux name=mux" ... do not work, and break the recording, likely this setting is for gstreamer-0.10, bud f18 use gstreamer1-1.x, true?. This is home page of shell recorder, but there is nothing for enable audio recording. http://developer.gnome.org/shell/stable/shell-shell-recorder.html Someone have suggest? Many thanks Hi Dario, Did you find a solution? My recollection from looking at this last year is there's not a trivial fix for this due to the signal specifics in the shell recorder. However, an easy workaround is to load the screencast into something like pitivi, record a narration over it, and render the existing video with a new sound track. This actually is a good method, because it's not often that people do great narration while they're carrying out the tasks in the video. Thanks Paul for your suggestion :) Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: f18+gnome3: howto recording desktop with audio
On 01/26/2013 07:09 PM, Dario Lesca wrote: How to record via ctrl+alt+shift+r, video and audio together ? I have fount this trick: http://askubuntu.com/questions/112473/audio-not-working-for-gnome-screencast-ctrl-alt-shift-r But the command for set the "org.gnome.shell.recorder pipeline" key: gsettings set org.gnome.shell.recorder pipeline "queue ! \ videorate ! vp8enc quality=10 speed=2 ! mux. pulsesrc ! \ audio/x-raw-int ! queue ! audioconvert ! vorbisenc ! \ mux. webmmux name=mux" ... do not work, and break the recording, likely this setting is for gstreamer-0.10, bud f18 use gstreamer1-1.x, true?. This is home page of shell recorder, but there is nothing for enable audio recording. http://developer.gnome.org/shell/stable/shell-shell-recorder.html Someone have suggest? Many thanks Hi Dario, Did you find a solution? -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
is there a way to play swf files (version > 9) in Fedora?
Hi list! Not that I'm a fan of gaming, but I discovered the web site y8.com by chance and I liked the games, and they even offer a download option. The games are in swf format, and even having gnash installed, not all of the games I downloaded are working. Reading the info for gnash I can see that "Gnash is capable of reading up to SWF v9...". Taking a look at the files I downloaded: $ file *.swf AmericanRacing.swf: Macromedia Flash data (compressed), version 14 coasterracer2.swf: Macromedia Flash data (compressed), version 10 Formula Racer 2012_May_4th_2012.swf: Macromedia Flash data (compressed), version 10 virtual_drums.swf: Macromedia Flash data (compressed), version 6 In fact, the only one that plays nicely is virtual_drums.swf. Question is: how can I play the other files whose versions are > 9 in Fedora? All that I found in Google refers to Adobe Player, but the download links are for the flash plugin for the web browser. Any help is appreciated. Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Extract ".rar" file -
On 04/16/2013 05:33 PM, Kevin Martin wrote: On 04/16/13 14:41, Suvayu Ali wrote: On Tue, Apr 16, 2013 at 01:47:28PM -0400, Bob Goodwin - Zuni, Virginia, USA wrote: How do I extract "tomato-E3000USB-1.28.9054MIPSR2-beta-Ext.rar" ? The instructions said to "yum install p7zip" and I did that, but finding the command to make it happen eludes me. The command is 7za, see man 7za. But that won't help you; at least the man page does not list as a supported archive type. As mentioned by others, try unrar; see man unrar for details. 7zip's website says that it supports the RAR format on Linux, but only for extracting. You *should* be able to extract with p7zip-plugins rpm installed and then use "7z x file.rar" (note, *not* 7za x file.rar) but for some reason the folks that built the p7zip-plugins rpm didn't compile the 7z.so with the rar format plugin in it. FWIW, I grabbed the 9.20.1 source code for 7zip, built it in about 5 minutes, and can use the 7z that built from there with for extracting rar archives with no problem so I'm not sure why the Fedora folks don't build 7z with the needed plugins in 7z.so. Kevin "for some reason the folks that built the p7zip-plugins rpm didn't compile the 7z.so with the rar format plugin in it" p7zip packagers explain that in the spec file: "RAR sources removed since their license is incompatible with the LGPL" Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Extract ".rar" file -
On 04/16/2013 02:47 PM, Bob Goodwin - Zuni, Virginia, USA wrote: How do I extract "tomato-E3000USB-1.28.9054MIPSR2-beta-Ext.rar" ? The instructions said to "yum install p7zip" and I did that, but finding the command to make it happen eludes me. I've found a lot of things that don't work e.g. [root@box10 Downloads]# 7za e "tomato-E3000USB-1.28.9054MIPSR2-beta-Ext.rar" 7-Zip (A) [64] 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18 p7zip Version 9.20 (locale=en_GB.UTF-8,Utf16=on,HugeFiles=on,4 CPUs) Processing archive: tomato-E3000USB-1.28.9054MIPSR2-beta-Ext.rar Error: Can not open file as archive Can someone tell me how to do this? Bob "The instructions said..." what instructions?? I think you need to install unrar from rpmfusion to extract .rar files. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: GNS3 - Install on fedora 18
On 04/13/2013 10:43 PM, Celso Viana wrote: 2013/4/13 Ed Greshko mailto:ed.gres...@greshko.com>> On 04/14/13 07:49, Celso Viana wrote: > I'm trying to install GNS3 (network simulator) in Fedora 18 and missing dependency "python-sip," I can not find. Can anyone help? Taking a SWAG here F18 contains the package python3-sip. Maybe GNS3 requires python3 installed? -- From now on, at least during winter time, Im going to blame all spelling an grammar erros on the cat sitting on my chest every time I sit down at the computer -- users mailing list users@lists.fedoraproject.org <mailto:users@lists.fedoraproject.org> To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org Already tried to install GNS3 with addiction python3-sip but failed. Continued requiring python-sip. Because the package you are trying to install (from pkgs.org) has the following explicit requirements: Requires: python-qt4 Requires: python-sip Requires: dynamips and they all are wrong for Fedora. See my answer in the Fedora Brazil mailing list. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: yum erase unused dependencies
On 03/27/2013 09:33 AM, Michael Schwendt wrote: On Tue, 26 Mar 2013 18:22:49 -0430, Patrick O'Callaghan wrote: yum list yum\* yum info yum-plugin-remove-with-leaves package-cleanup can also be useful in this context. And let's not forget "yum history undo …", too, since it is the much cleaner solution for the occasional "install something to take a look and remove it again afterwards" scenario. +10 !! Pure leaf package removal bears the risk that you remove something that no other package depends on but _you_ need it. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: F18 grub hang with blinking cursor after kernel update
On 02/27/2013 11:09 AM, Reindl Harald wrote: Am 27.02.2013 15:07, schrieb Germán A. Racca: On 02/27/2013 10:44 AM, Mike Zingale wrote: grub2-mkconfig -o /boot/grub2/grub.cfg then grub2-install --boot-directory=/boot /dev/sda no issues reported, but it doesn't fix things. In rescue mode, I also tried uninstalling are reinstalling the kernel, and no change. I think that grub2-mkconfig must be done after grub2-install... it does not matter one installs the grub binary in the MBR teh other writes the config on the filesystem where should the order be important here? I didn't say that the order matters because I don't know, I just said "I think" :) -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: F18 grub hang with blinking cursor after kernel update
On 02/27/2013 10:44 AM, Mike Zingale wrote: yes, I did grub2-mkconfig -o /boot/grub2/grub.cfg then grub2-install --boot-directory=/boot /dev/sda no issues reported, but it doesn't fix things. In rescue mode, I also tried uninstalling are reinstalling the kernel, and no change. I think that grub2-mkconfig must be done after grub2-install... Germán. On Tue, Feb 26, 2013 at 12:22 PM, "Germán A. Racca" mailto:german.ra...@gmail.com>> wrote: On 02/25/2013 03:03 PM, Mike Zingale wrote: I just did a yum update and got the 3.7.9 kernel for F18. Upon reboot, the grub screen never appears, no prompt or anything, just a blinking cursor in the upper left. The system just hangs there. I booted the install disk, rescued, did a chroot to the system image and remade grub2.cfg and reinstalled grub2 (with grub2-install), and still the same issue. I even yum removed the kernel that was just installed and redid grub2, and again, nothing. Any ideas on how to fix grub on this system? Hi Mike, By "redid grub" you mean "grub2-mkconfig -o /boot/grub2/grub.cfg"? -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/__wiki/User:Skytux <https://fedoraproject.org/wiki/User:Skytux> -- users mailing list users@lists.fedoraproject.org <mailto:users@lists.fedoraproject.org> To unsubscribe or change subscription options: https://admin.fedoraproject.__org/mailman/listinfo/users <https://admin.fedoraproject.org/mailman/listinfo/users> Guidelines: http://fedoraproject.org/wiki/__Mailing_list_guidelines <http://fedoraproject.org/wiki/Mailing_list_guidelines> Have a question? Ask away: http://ask.fedoraproject.org -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: F18 grub hang with blinking cursor after kernel update
On 02/25/2013 03:03 PM, Mike Zingale wrote: I just did a yum update and got the 3.7.9 kernel for F18. Upon reboot, the grub screen never appears, no prompt or anything, just a blinking cursor in the upper left. The system just hangs there. I booted the install disk, rescued, did a chroot to the system image and remade grub2.cfg and reinstalled grub2 (with grub2-install), and still the same issue. I even yum removed the kernel that was just installed and redid grub2, and again, nothing. Any ideas on how to fix grub on this system? Hi Mike, By "redid grub" you mean "grub2-mkconfig -o /boot/grub2/grub.cfg"? -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Scaling
On 02/25/2013 05:08 PM, Richard Vickery wrote: On Mon, Feb 25, 2013 at 11:12 AM, "Germán A. Racca" mailto:german.ra...@gmail.com>> wrote: On 02/25/2013 03:05 PM, Richard Vickery wrote: On Mon, Feb 25, 2013 at 7:19 AM, "Germán A. Racca" mailto:german.ra...@gmail.com> <mailto:german.ra...@gmail.com <mailto:german.ra...@gmail.com>__>> wrote: On 02/25/2013 11:44 AM, Richard Vickery wrote: I meant the former, as did Mr. O'Connor. The experience was the same in 17 as it seems to be in KDE. But my preference is to use Gnome. Which line of code am I to put where to get the same effect in Gnome? Perhaps this question is better put to the Developers group. Use this command to see how the image is rendered: $ gsettings get org.gnome.desktop.background picture-options and this command to change the rendering option: $ gsettings set org.gnome.desktop.background picture-options OPTION where OPTION can be one of the following values: none, wallpaper, centered, scaled, stretched, zoom, spanned. For example, to set a wallpaper with zoom option: $ gsettings set org.gnome.desktop.background picture-options zoom HTH, Germán. On Feb 24, 2013 7:40 PM, "Eddie G. O'Connor Jr." mailto:eoconno...@gmail.com> <mailto:eoconno...@gmail.com <mailto:eoconno...@gmail.com>> <mailto:eoconno...@gmail.com <mailto:eoconno...@gmail.com> <mailto:eoconno...@gmail.com <mailto:eoconno...@gmail.com>>>__> wrote: On 02/24/2013 10:30 PM, Bill Oliver wrote: Are you talking about the desktop background image? I think that's a function of which desktop you are using. I use KDE, and nothing has changed -- you just right click on the background, choose "Default Desktop Settings" then choose (or open) the image, then pick the "scaled" option. I don't know how it's done in Gnome. Or do you mean the splash screen? I haven't played with that... billo On Sun, 24 Feb 2013, Richard Vickery wrote: In 17 there was an easy way to scale a photo for a background to the screen. In Fedora 18 this ease is gone. Is there a way to scale a photo to fit the screen without the ease of a button that I can do on my own? Thanks, Richard Well I cannot speak for Mr. Vickery, but I was talking about the little button that was visible when you chose an image to become your desktop background in Gnome, this button gave you the options of Fill.Center.Tile..__Span..Stretch etc the image you chose. It seems that as of F18 that's al changed? or was it changed within an update, because I seem to recall being able to do it! But with the button gone, when you select a picture, there's no way to scale it or stretch it or ANYTHINGall you have is the picture, and if it's not displayed properly you're pretty much "fluffed"! WGO II -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux <https://fedoraproject.org/__wiki/User:Skytux> <https://fedoraproject.org/__wiki/User:Skytux <https://fedoraproject.org/wiki/User:Skytux>> -- users mailing list users@lists.fedoraproject.org <mailto:users@lists.fedoraproject.org> <mailto:users@lists.__fedoraproject.org <mailto:users@lists.fedoraproject.org>> To unsubscribe or cha
Re: Scaling
On 02/25/2013 03:05 PM, Richard Vickery wrote: On Mon, Feb 25, 2013 at 7:19 AM, "Germán A. Racca" mailto:german.ra...@gmail.com>> wrote: On 02/25/2013 11:44 AM, Richard Vickery wrote: I meant the former, as did Mr. O'Connor. The experience was the same in 17 as it seems to be in KDE. But my preference is to use Gnome. Which line of code am I to put where to get the same effect in Gnome? Perhaps this question is better put to the Developers group. Use this command to see how the image is rendered: $ gsettings get org.gnome.desktop.background picture-options and this command to change the rendering option: $ gsettings set org.gnome.desktop.background picture-options OPTION where OPTION can be one of the following values: none, wallpaper, centered, scaled, stretched, zoom, spanned. For example, to set a wallpaper with zoom option: $ gsettings set org.gnome.desktop.background picture-options zoom HTH, Germán. On Feb 24, 2013 7:40 PM, "Eddie G. O'Connor Jr." mailto:eoconno...@gmail.com> <mailto:eoconno...@gmail.com <mailto:eoconno...@gmail.com>>> wrote: On 02/24/2013 10:30 PM, Bill Oliver wrote: Are you talking about the desktop background image? I think that's a function of which desktop you are using. I use KDE, and nothing has changed -- you just right click on the background, choose "Default Desktop Settings" then choose (or open) the image, then pick the "scaled" option. I don't know how it's done in Gnome. Or do you mean the splash screen? I haven't played with that... billo On Sun, 24 Feb 2013, Richard Vickery wrote: In 17 there was an easy way to scale a photo for a background to the screen. In Fedora 18 this ease is gone. Is there a way to scale a photo to fit the screen without the ease of a button that I can do on my own? Thanks, Richard Well I cannot speak for Mr. Vickery, but I was talking about the little button that was visible when you chose an image to become your desktop background in Gnome, this button gave you the options of Fill.Center.Tile..Span..Stretch etc the image you chose. It seems that as of F18 that's al changed? or was it changed within an update, because I seem to recall being able to do it! But with the button gone, when you select a picture, there's no way to scale it or stretch it or ANYTHINGall you have is the picture, and if it's not displayed properly you're pretty much "fluffed"! WGO II -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/__wiki/User:Skytux <https://fedoraproject.org/wiki/User:Skytux> -- users mailing list users@lists.fedoraproject.org <mailto:users@lists.fedoraproject.org> To unsubscribe or change subscription options: https://admin.fedoraproject.__org/mailman/listinfo/users <https://admin.fedoraproject.org/mailman/listinfo/users> Guidelines: http://fedoraproject.org/wiki/__Mailing_list_guidelines <http://fedoraproject.org/wiki/Mailing_list_guidelines> Have a question? Ask away: http://ask.fedoraproject.org Thanks very much German! (Please forgive my lack of the accent; I lack the expertise of how to add this) You are very welcome... no problem about the accent :) Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Scaling
On 02/25/2013 11:44 AM, Richard Vickery wrote: I meant the former, as did Mr. O'Connor. The experience was the same in 17 as it seems to be in KDE. But my preference is to use Gnome. Which line of code am I to put where to get the same effect in Gnome? Perhaps this question is better put to the Developers group. Use this command to see how the image is rendered: $ gsettings get org.gnome.desktop.background picture-options and this command to change the rendering option: $ gsettings set org.gnome.desktop.background picture-options OPTION where OPTION can be one of the following values: none, wallpaper, centered, scaled, stretched, zoom, spanned. For example, to set a wallpaper with zoom option: $ gsettings set org.gnome.desktop.background picture-options zoom HTH, Germán. On Feb 24, 2013 7:40 PM, "Eddie G. O'Connor Jr." mailto:eoconno...@gmail.com>> wrote: On 02/24/2013 10:30 PM, Bill Oliver wrote: Are you talking about the desktop background image? I think that's a function of which desktop you are using. I use KDE, and nothing has changed -- you just right click on the background, choose "Default Desktop Settings" then choose (or open) the image, then pick the "scaled" option. I don't know how it's done in Gnome. Or do you mean the splash screen? I haven't played with that... billo On Sun, 24 Feb 2013, Richard Vickery wrote: In 17 there was an easy way to scale a photo for a background to the screen. In Fedora 18 this ease is gone. Is there a way to scale a photo to fit the screen without the ease of a button that I can do on my own? Thanks, Richard Well I cannot speak for Mr. Vickery, but I was talking about the little button that was visible when you chose an image to become your desktop background in Gnome, this button gave you the options of Fill.Center.Tile..__Span..Stretch etc the image you chose. It seems that as of F18 that's al changed? or was it changed within an update, because I seem to recall being able to do it! But with the button gone, when you select a picture, there's no way to scale it or stretch it or ANYTHINGall you have is the picture, and if it's not displayed properly you're pretty much "fluffed"! WGO II -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: [OT?] question about external hd
On 02/06/2013 04:41 PM, Bryn M. Reeves wrote: On 02/06/2013 06:33 PM, Andrew Haley wrote: Should I be root to be able to create/remove files/folder in my external hd?? No. Create a scratch dir on the hd (as root) and do chmod 1777 This will create a directory that any user can write to. Or you could chown the root directory of the external drive's file system to the user that normally mounts it (this is what I do with most of my external storage). Regards, Bryn. Thanks Bryn, this is even better! I did: # chown german.german SKYTUX/ and this works fine, I can create/delete files/folders all over my hd now without restrictions :) All the best, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: [OT?] question about external hd
On 02/06/2013 04:33 PM, Andrew Haley wrote: On 02/06/2013 06:19 PM, "Germán A. Racca" wrote: Hi people, I have recently bought an external hard drive of 1 Tb capacity (Samsung M3). I made a backup of my home directory with the following command: $ cd /home $ rsync -avh --delete --stats --exclude=*.vdi --exclude=*.iso german /run/media/german/SAMSUNG/backup-skytux/ but it turns out that permissions on files/directories were not preserved in the destination, and then I new that this was because of the original NTFS format of the hd, so I formatted it to ext4 file system using gparted. On one hand, now the contents of my external hd are: $ ll /run/media/german/SKYTUX/ total 16 drwx--. 2 root root 16384 Feb 6 15:51 lost+found On the other hand, gparted gives me this information: Size: 931.50 GiB Used: 14.84 GiB (2%) Unused: 916.66 GiB (98%) So, my questions are: 1) I can't create any folder in the hd because it is owned by the root user, and as I showed above there is this lost+found directory that I don't understand why it is there. Is this ok? Yes. Should I be root to be able to create/remove files/folder in my external hd?? No. Create a scratch dir on the hd (as root) and do chmod 1777 This will create a directory that any user can write to. 2) What is this 14.84 GB used in the hd? Is this used by the ext4 file system? Yes. Inodes, reserved space, etc. Andrew. Thanks Andrew for your prompt reply and for clarifying my doubts. The creation of a directory using chmod 1777 works fine! Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
[OT?] question about external hd
Hi people, I have recently bought an external hard drive of 1 Tb capacity (Samsung M3). I made a backup of my home directory with the following command: $ cd /home $ rsync -avh --delete --stats --exclude=*.vdi --exclude=*.iso german /run/media/german/SAMSUNG/backup-skytux/ but it turns out that permissions on files/directories were not preserved in the destination, and then I new that this was because of the original NTFS format of the hd, so I formatted it to ext4 file system using gparted. On one hand, now the contents of my external hd are: $ ll /run/media/german/SKYTUX/ total 16 drwx--. 2 root root 16384 Feb 6 15:51 lost+found On the other hand, gparted gives me this information: Size: 931.50 GiB Used: 14.84 GiB (2%) Unused: 916.66 GiB (98%) So, my questions are: 1) I can't create any folder in the hd because it is owned by the root user, and as I showed above there is this lost+found directory that I don't understand why it is there. Is this ok? Should I be root to be able to create/remove files/folder in my external hd?? 2) What is this 14.84 GB used in the hd? Is this used by the ext4 file system? Thanks for reading this (OT?) question! All the best, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: GTK3 themes not working on Fedora 18?
On 02/01/2013 12:44 PM, Brian Millett wrote: On Fri, 01 Feb 2013 11:46:13 -0200 "Germán A. Racca" wrote: On 02/01/2013 10:29 AM, Andre Costa wrote: Hi, no matter how many GTK3 themes I install, gnome-tweak-tool only shows me "Adwaita" and "High Contrast" as options for the "Gtk+ Theme" combo on the Theme panel. Any advice? Right now I have these installed: ~ rpm -qa \*gtk3-theme\* greybird-gtk3-theme-1.0.7-1.fc18.noarch egtk-gtk3-theme-3.1-2.fc18.noarch adwaita-gtk3-theme-3.6.2-1.fc18.x86_64 albatross-gtk3-theme-1.2-4.fc18.noarch bluebird-gtk3-theme-0.6-5.fc18.noarch Not sure this is relevant, but judging from the listing above Adwaita (one of the themes that are working) is the only which isn't a "noarch" rpm. Regards, Andre Hi Andre, The package adwaita-gtk3-theme is not a "noarch" rpm because it includes the adwaita engine theme. If you see its contents (rpm -ql adwaita-gtk3-theme) you will see the library "libadwaita.so". HTH, Germán. I've found that any theme that I installed in my $HOME/.themes folder do not show up. So I moved my .themes folder to Themes and linked the themes to /usr/share/themes/, then they show up. You can also link ~/.themes (where themes are downloaded) to ~/.local/share/themes, this is how it works in my F18. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: GTK3 themes not working on Fedora 18?
On 02/01/2013 10:29 AM, Andre Costa wrote: Hi, no matter how many GTK3 themes I install, gnome-tweak-tool only shows me "Adwaita" and "High Contrast" as options for the "Gtk+ Theme" combo on the Theme panel. Any advice? Right now I have these installed: ~ rpm -qa \*gtk3-theme\* greybird-gtk3-theme-1.0.7-1.fc18.noarch egtk-gtk3-theme-3.1-2.fc18.noarch adwaita-gtk3-theme-3.6.2-1.fc18.x86_64 albatross-gtk3-theme-1.2-4.fc18.noarch bluebird-gtk3-theme-0.6-5.fc18.noarch Not sure this is relevant, but judging from the listing above Adwaita (one of the themes that are working) is the only which isn't a "noarch" rpm. Regards, Andre Hi Andre, The package adwaita-gtk3-theme is not a "noarch" rpm because it includes the adwaita engine theme. If you see its contents (rpm -ql adwaita-gtk3-theme) you will see the library "libadwaita.so". HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Lack of things in Gimp
On 01/29/2013 05:00 PM, Lailah wrote: El mar, 29-01-2013 a las 10:52 -0500, Mike Williams escribió: > On Tue, Jan 29, 2013 at 09:02:34 -0200, > Lailah mailto:lailah...@gmail.com>> wrote: >> >> >> Hello everybody! >> >>I found that Gimp in Fedora has less functions that in other >> distributions (like Fuduntu or Ubuntu). In example, I can find video >> and animation edition, and a lot of scripts. >> >> Why is this happening? How can I solve it? You could look on gimp.org or try asking on the gimp user list: http://mail.gnome.org/mailman/listinfo/gimp-user-list Mike It is not a Gimp problem, it is a Fedora problem. So I ask in the Fedora list. /Thanks and regards,/ */Lailah/* Hola Lailah, Packages in Fedora are under free and open source licenses, which is a clearly established issue, just see the Fedora wiki about licensing guidelines... so I can't see how this is a Fedora problem :( Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Anyone had success with Pungi or Revisor and F18 producing an INSTALL iso (not a LIVECD)?
On 12/13/2012 10:24 AM, Philip Rhoades wrote: People, After struggling with build iso errors with Pungi and Revisor and not getting any response from posts to the buildsys and test lists, I thought I would try here: While trying to build F17, F18 and Rawhide with configs like the attached kickstart file and a command like: pungi -c system_config_kickstart.ks --nosource --force --ver=F18 --all-stages I get this error. It appears that this was a problem with F15/16 as well? I want to build a minimal F18 install CD (ie NOT a Live CD). Am I missing something? - anaconda and lorax are in x86_64/os/Packages/ Someone must have this working? Thanks, Phil. Revisor was a beautiful tool, but it is not maintained anymore. https://bugzilla.redhat.com/show_bug.cgi?id=649815 -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: How do I disable polkitd?
On 11/22/2012 05:30 PM, lee wrote: Reindl Harald writes: Am 21.11.2012 15:58, schrieb lee: Hi, it seems systemctl doesn't know about polkitd though pstree shows it as started by systemd. There don't seem to be files for starting polkitd in /etc. It cannot be removed because almost 600 packages depend on it :( So how do I disable it? easy answer: you can't it is fired up by dbus Hmm, then I'd have to kill the daemon and rename or delete it. you can try "systemctl mask" Systemctl doesn't seem to know about it, and there doesn't seem to be a unit file for it. or LIVE with how the distribution is supposed to work - on installations without a GUI it does not get started at all And be stuck with gnome and a lot of other stuff I don't need and without lots of stuff I do need? I'd be better off with windoze then. So what do you expect? That Gnome/Fedora team develop a desktop/distribution only to fit your needs? -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Crossover For Free
Junayeed: your email was classified as *junk* in my system!! Are you subscribed to the Fedora list?? Germán. On 10/31/2012 09:18 AM, Junayeed Ahnaf wrote: Code Weavers is giving away crossover for free. Grab your copy from here: http://flock.codeweavers.com/ Junayeed Ahnaf Nirjhor Software Engineer @ Hulu <http://hulu.com> Twitter @ Nirjhor <http://twitter.com/nirjhor> -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: A note on youtube-dl
On 09/30/2012 03:21 PM, Joe Zeff wrote: On 09/30/2012 03:22 AM, Marko Vojinovic wrote: The "sudo youtube-dl --update" works as expected (and once updated, it downloads stuff fine) [joe@khorlia ~]$ su -c 'youtube-dl --update' Password: Usage: youtube-dl [options] video_url ... youtube-dl: error: no such option: --update $ sudo youtube-dl --update Updating to latest version... Updated youtube-dl. Restart youtube-dl to use the new version. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Does Spamassassin junk processing work for anyone under evolution?
On 08/03/2012 11:34 AM, Aaron Konstam wrote: On Thu, 2012-08-02 at 21:23 -0400, Matthew Saltzman wrote: From: Matthew Saltzman Reply-to: Community support for Fedora users To: Community support for Fedora users Subject: Re: Does Spamassassin junk processing work for anyone under evolution? Date: Thu, 2 Aug 2012 21:23:44 -0400 (08/02/2012 08:23:44 PM) On Thu, 2012-08-02 at 21:16 -0400, Aaron Konstam wrote: Beforwe I file a bugzilla does spamaswsassin Junk processing work for anyone under evolution? I'm not quite sure. I have evolution-spamassassin and evolution-rspam installed. I can filter junk, but I can't enable the spam reporting plugin. The question is when you receive mail doews the spam automatically end up in the Junk folder? It does not on my machine? And this has never happened before. I mean in earlier fedora versons. Hi Aaron: It doesn't work for me. I had to switch to bogofilter, see my post to this list about spamassassin: http://lists.fedoraproject.org/pipermail/users/2012-April/416366.html Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: gnome 3 extensions
On 08/02/2012 05:15 PM, Patrick Dupre wrote: On 2012-08-02 22:12, Germán A. Racca wrote: On 08/02/2012 04:16 PM, Patrick Dupre wrote: Hello, I have 3 machines: 1) Fedora 16 i686 2) Fedora 16 x86_64 3) Fedora 17 x86_64 All forced fallback mode ON Do you mean that you aren't using gnome-shell but classical fallback mode? If the answer is yes, how can you speak about "extensions"? Those are for gnome-shell! I run Forced Fallback Mode ON on the 3 machines, and on one I get the gnome extensions! This only means that you are confused, because as I said before extensions are only for gnome-shell. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: gnome 3 extensions
On 08/02/2012 04:16 PM, Patrick Dupre wrote: Hello, I have 3 machines: 1) Fedora 16 i686 2) Fedora 16 x86_64 3) Fedora 17 x86_64 All forced fallback mode ON Do you mean that you aren't using gnome-shell but classical fallback mode? If the answer is yes, how can you speak about "extensions"? Those are for gnome-shell! HTH, Germán. Only one 1) works fine regarding with the extensions It means that I can "add to panel" and select in a list of options starting with Character panel, Clock, CPU Frequency Scaling Factor, ... ,System Monitor, The 2 other ones, I just cannot do it, For example, Character panel, CPU Frequency Scaling Factor, System Monitor options are missing. I have the impression that I installed the same relevant packages on all the 3 machines: On 1) nautilus-extensions-3.2.1-2.fc16.x86_64 gnome-shell-extension-user-theme-3.2.3-2.fc16.noarch gnome-shell-extension-alternate-tab-3.2.3-2.fc16.noarch gnome-shell-extension-common-3.2.3-2.fc16.noarch on 2) (and 3)) nautilus-extensions-3.2.1-2.fc16.i686 gnome-shell-extension-user-theme-3.2.3-2.fc16.noarch gnome-shell-extension-alternate-tab-3.2.3-2.fc16.noarch gnome-shell-extension-common-3.2.3-2.fc16.noarch gnome-shell-extension-alternative-status-menu-3.2.3-2.fc16.noarch gnome-shell-extension-systemMonitor-3.2.3-2.fc16.noarch gnome-shell-extension-drive-menu-3.2.3-2.fc16.noarch gnome-shell-extension-places-menu-3.2.3-2.fc16.noarch Thus, I do not know how to debug the issues. Would you help? Thank. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: yum check-update: meaning of exclamation marks
On 07/19/2012 04:30 AM, Markus Schönhaber wrote: Hi, today I noticed this: | # yum check-update | Geladene Plugins: langpacks, presto, refresh-packagekit | adobe-linux-x86_64 | 951 B 00:00 | google-chrome| 951 B 00:00 !!! [...] What is the meaning of the exclamation marks on the line starting with "google-chrome"? I was about to make that question too! I saw the same exclamation marks but in different repos. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: pgftranslate.sty in fedora
On 07/11/2012 05:15 PM, Ranjan Maitra wrote: I am using a beamer style file which involves using pdftranslate. Apparently, the package having this is now pgfcomp-version-0-65.sty. Does anyone know where I can get this? Many thanks, Ranjan This is from texlive-release.repo: # yum install "tex(pgfcomp-version-0-65.sty)" or # yum install tex-pgf HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: gtk2 & gtk3 theme rpm to install to have same apparence
On 07/11/2012 06:59 AM, Mihamina Rakotomandimby wrote: Hi all, Running LXDE/F16, I have only GTK apps, but some are already ported to GTK3, some are still GTK3. My problem is I have different apparence for them: http://demo.ovh.net/View/1ce0b872e9893d3eac1eb86acdb9c144/0 (Left: GTK2, Right: GTK3) How I solved (at least partially): http://goo.gl/mFXEn Try "zukitwo" and "zukini" themes, both are available for gtk2 and gtk3 in fedora repos (at least for f17). Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: TeXlive 2012 problem
On 07/10/2012 07:35 PM, Timothy Murphy wrote: Matthew Saltzman wrote: I think the solution is to remove texlive-preview and install tex-preview from the Fedora 17 repo. The texlive repo no longer lists texlive-preview or tex-preview as a package. Thanks for your response. That did the trick. Unfortunately when I try to LaTeX (or pdfLaTeX) a file I get the error -- This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) restricted \write18 enabled. kpathsea: Running mktexfmt latex.fmt I can't find the format file `latex.fmt'! [tim@blanche Problems]$ pdflatex Problems-08 This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) restricted \write18 enabled. kpathsea: Running mktexfmt pdflatex.fmt I can't find the format file `pdflatex.fmt'! [tim@blanche Problems]$ sudo yum install tex-latex Loaded plugins: langpacks, presto, refresh-packagekit Package 1:tex-latex-svn23639-1.noarch already installed and latest version Nothing to do -- Should these .fmt files be part of the latest Fedora TeXlive distribution? I solved this issue with "yum reinstall tex-*". HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Help with R
On 07/10/2012 12:56 AM, Richard Vickery wrote: Is there anyone here with experience installing - and using - R, the statistics program? Hi Richard: I don't use R, but installing it is as easy as "yum install R". You can get your own questions answered here: http://stackoverflow.com/questions/tagged/r (I use stackoverflow for python and always solve my issues there) HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: TeXlive 2012 problem
On 07/10/2012 09:25 AM, Timothy Murphy wrote: I am running Fedora-17/KDE on my laptop, and have been trying to update TeXlive. I've enabled the fedora-updates-testing repo, as was suggested, but still get the error: - [tim@blanche ~]$ sudo yum update texlive* ... Error: Package: 1:texlive-preview-11.86.svn17118-1.noarch (@texlive) Requires: texlive-kpathsea Removing: 1:texlive-kpathsea-svn26691-1.noarch (@texlive) texlive-kpathsea = 1:svn26691-1 Obsoleted By: 1:tex-kpathsea-svn26691-1.noarch (texlive) Not found - Any suggestions or enlightenment gratefully received. Hi Timothy: I have F17 and texlive repo installed, but not updates-testing enabled. My TeXLive 2012 works fine, and I don't have any texlive-preview package in my repos: $ yum --enablerepo=updates-testing search texlive-preview Warning: No matches found for: texlive-preview No Matches found So where do your texlive-preview package comes from? Maybe you should disable updates-testing repo, it's not a good thing to keep it enabled. HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: gnote data imported to cherrytree
On 07/06/2012 05:38 PM, Aaron Konstam wrote: On Fri, 2012-07-06 at 11:42 -0300, "Germán A. Racca" wrote: On 07/06/2012 11:30 AM, Aaron Konstam wrote: On Fri, 2012-07-06 at 08:17 +0530, Rahul Sundaram wrote: On 07/06/2012 01:51 AM, Aaron Konstam wrote: Since at least F16 Fedora has included a progrwam for taking notes called cherrytree seemingly a substitute for gnote or Tomboy. Now when you choose the import option one of the sub-options is to import daqta from tomboy. Now tomboy does not exist since it was succeeded by gnote. My impression is that tomboy and gnote used the same dat structures but I can't get cherrytree to import my gnotw data. Is cherrytree the future. If so does anyone know how the gnote data can be imported into cherrytree? Tomboy stores its notes in .local/share/tomboy according to https://live.gnome.org/Tomboy/Directories. gnote stores its notes in .local/share/gnote. Perhaps you can create the tomboy directory and copy from latter to former and see if cherrytree picks that up. Rahul Well I copied the gnote directory in to a tomboy directory. However, I can't get cherrytree to display a directory (i.e. .local) which is hidden. How would one do that? I think you don't need to copy from one directory to the other, just leave notes in gnote directory (~/.local/share/gnote), then select import from tomboy, and in the open file dialog just right click and select something like 'show hidden files' ;-) HTH, Germán. It automaticly picks .local/share/tomboy to import if it exists. Well... but you said you don't have tomboy and want to import gnote notes, and also you don't know how to select hidden folders... that's why my answer... -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: gnote data imported to cherrytree
On 07/06/2012 11:30 AM, Aaron Konstam wrote: On Fri, 2012-07-06 at 08:17 +0530, Rahul Sundaram wrote: On 07/06/2012 01:51 AM, Aaron Konstam wrote: Since at least F16 Fedora has included a progrwam for taking notes called cherrytree seemingly a substitute for gnote or Tomboy. Now when you choose the import option one of the sub-options is to import daqta from tomboy. Now tomboy does not exist since it was succeeded by gnote. My impression is that tomboy and gnote used the same dat structures but I can't get cherrytree to import my gnotw data. Is cherrytree the future. If so does anyone know how the gnote data can be imported into cherrytree? Tomboy stores its notes in .local/share/tomboy according to https://live.gnome.org/Tomboy/Directories. gnote stores its notes in .local/share/gnote. Perhaps you can create the tomboy directory and copy from latter to former and see if cherrytree picks that up. Rahul Well I copied the gnote directory in to a tomboy directory. However, I can't get cherrytree to display a directory (i.e. .local) which is hidden. How would one do that? I think you don't need to copy from one directory to the other, just leave notes in gnote directory (~/.local/share/gnote), then select import from tomboy, and in the open file dialog just right click and select something like 'show hidden files' ;-) HTH, Germán. My second attempt is to copy the tomboy directory to /tmp. Now the filwe is available to cherrytree but clicking open has no effect, So how can the transfer of databases be done? -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Installing smplayer2
On 06/18/2012 09:54 AM, Roelof 'Ben' Kusters wrote: Junayeed Ahnaf Nirjhor wrote: Is there any RPM for smplayer 2? I don't know an smplayer2 - I only know of smplayer 0.8.0... Did you mean that one? There isn't afaik. I had never heard of it, but I liked what I saw when you mailed about it. So I had a look. The text in the "install.txt" in the download from the smplayer website is not perfectly clear. Before following the instructions, be sure to install qt-devel ( # yum install qt-devel ) and that once the rpmbuild is done, you look carefully in the terminal output for where it's parked the rpm. In case that's all too confusing for you, I've managed to install it from the rpm my machine generated. I would think it would be possible for you to install it with my rpm. I have temporarily parked it here: https://dl.dropbox.com/u/2138099/smplayer-0.8.0-rvm.i386.rpm Let me know when you have it, and if it's worked. I'll also look into sticking this in rpm fusion, but have patience. I'm a busy man. There is no need to install that rpm because it is already in rpmfusion repos, so you don't need to compile anything. The OP is talking about smplayer2: http://www.mplayer2.org/ Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: yum remove selinux*
On 05/29/2012 04:07 PM, Neal Becker wrote: Tommy Pham wrote: On Tue, May 29, 2012 at 11:32 AM, Neal Becker wrote: I don't want/use selinux. Any reason I shouldn't just do: yum remove selinux* ? IIRC, selinux is part of the kernel. Hence when you make any changes to/from SELINUX=disabled in the /etc/selinux/config, you have to reboot. Yes, but my question is just whether it is safe to yum remove selinux*? It seems rather widespread, and I just wanted to be sure it won't cause other problems if I remove it. It is not safe to remove selinux, but if you don't want to use it then just don't use it, or use it in premissive mode, but you don't need to remove it. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Perhaps this exists already, and if not, it should...
On 04/13/2012 06:07 PM, Fernando Cassia wrote: On Fri, Apr 13, 2012 at 17:59, "Germán A. Racca" wrote: gnome-open? xdg-open? Thanks Germán. The question marks are because you're not sure? ;-) Or because you're implying "sheesh, how doesn't he know?". INQminds want to know. ;-) Hi Fernando: More or less... hahaha! No, no... it was because I wasn't sure about what you were asking for. *joke*. I appreciate your answer. FC All the best, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Perhaps this exists already, and if not, it should...
On 04/13/2012 05:56 PM, Fernando Cassia wrote: I found myself on a command line window, wanting to open a PDF, and I didnt remember the name of the pdf reader that now comes as a default install for Fedora. Too many years of "just installing Acrobat" left me with "./acroread whatever.pdf" engraved into my brain cells. So.. I had to go to "add/remove programs" type "PDF" in the search field, and then wait as the program showed the name of the app: evince. Now that's great. I now know its 'evince whatever.pdf'. But that got me thinking. Shouldn't there be a "meta-command" like "open filename.whatever" that just seeks the default file association in gnome or whatever, and find the app name, and invoke the right app without the end user having to memorize the exact app name associated with any given file extension type?. I'm not exceptionally bright, and my bright ideas more often than not tend to be ideas implemented ages ago... so I guess that utilty might exist already, no? FC gnome-open? xdg-open? -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Changing the login screen background image in F16
On 04/11/2012 05:53 PM, Fernando Cassia wrote: On Wed, Apr 11, 2012 at 17:41, Fernando Cassia wrote: I've looked around and can't find where the Gnome login screen background image is stored. I want to set it to something different from the default. Nevermind. I will do it the brute-force way and overwrite the default in usr/share/backgrounds/verne/default/ FC Hi Fernando: Just to complement your own answer, that question is discussed here and may be useful: http://ask.fedoraproject.org/question/452/how-can-i-change-the-background-of-the-gnome-login All the best, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Login on Fedora 17
On 04/11/2012 10:20 AM, Lawrence Graves wrote: I am sorry. Some of the what I wrote got cut off. I was talking about Fedora 17 Beta RC4 release. On 04/11/2012 07:13 AM, Frank Murphy wrote: On 11/04/12 14:08, Lawrence Graves wrote: Just want to ask one question. What is Fedora 17 No idea, didn't know it was released. -- Lawrence Graves All things are workable but don't all things work. What Frank means is that you should ask your question to the devel list (de...@lists.fedoraproject.org) because F17 was not released yet :) Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: evolution + spamassassin
On 04/03/2012 11:21 AM, Aaron Konstam wrote: On Mon, 2012-04-02 at 17:33 -0300, "Germán A. Racca" wrote: On 04/02/2012 05:19 PM, Aaron Konstam wrote: On Mon, 2012-04-02 at 12:54 -0300, "Germán A. Racca" wrote: Hi folks: I always utilized Spamassassin for filtering spam messages in Evolution, but lately it is not working effectively. It happens in my POP3 account for my institution email. I have to mark always the same messages as junk, which is frustrating. Some spam mails get filtered, but others don't, they always appear as not junk, even though I mark them as junk. Does this happens to anyone else? Any help is appreciated. All the best, Germán. Do you have a user_prefs filer in the .spamassassin directory in your home directory. That is needed to control the actions of spamassassin. Look to the spamassassin documentation to see how that works if you don't. On my machine spamassassin is wonderfully effective. Yes, I have that file, but I never modified it, so I think it should work. Or do I have to modify it to really work? Germán. It should work but there are things you can modify in the file to improve its performance. I see you are thinking to switch to Bogofilter. I have always used spamassassin on a non-server and it works well for me. But maybe in your environment Bogofillter will work better One more thing. You have evolution-spamassassin installed and have configured evolution to use spamassassin? Hi Aaron: Yes, I have configured evo to use spamassassin, I always used it and worked well, but as I said before, in the last months it is not working as before. Now I have switched to bogofilter and it seems to be faster and it's working well... let's see what happens in a near future :) All the best, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: evolution + spamassassin
On 04/02/2012 06:28 PM, Patrick O'Callaghan wrote: On Mon, 2012-04-02 at 17:33 -0300, "Germán A. Racca" wrote: On 04/02/2012 05:19 PM, Aaron Konstam wrote: On Mon, 2012-04-02 at 12:54 -0300, "Germán A. Racca" wrote: Hi folks: I always utilized Spamassassin for filtering spam messages in Evolution, but lately it is not working effectively. It happens in my POP3 account for my institution email. I have to mark always the same messages as junk, which is frustrating. Some spam mails get filtered, but others don't, they always appear as not junk, even though I mark them as junk. Does this happens to anyone else? Any help is appreciated. All the best, Germán. Do you have a user_prefs filer in the .spamassassin directory in your home directory. That is needed to control the actions of spamassassin. Look to the spamassassin documentation to see how that works if you don't. On my machine spamassassin is wonderfully effective. Yes, I have that file, but I never modified it, so I think it should work. Or do I have to modify it to really work? You might want to consider Bogofilter as an alternative. SpamAssassin is more oriented to server installations and BF works well with Evo. poc I already had that in mind but was not sure. Now I'm going to follow your advise about bogofilter. Thanks, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: evolution + spamassassin
On 04/02/2012 05:19 PM, Aaron Konstam wrote: On Mon, 2012-04-02 at 12:54 -0300, "Germán A. Racca" wrote: Hi folks: I always utilized Spamassassin for filtering spam messages in Evolution, but lately it is not working effectively. It happens in my POP3 account for my institution email. I have to mark always the same messages as junk, which is frustrating. Some spam mails get filtered, but others don't, they always appear as not junk, even though I mark them as junk. Does this happens to anyone else? Any help is appreciated. All the best, Germán. Do you have a user_prefs filer in the .spamassassin directory in your home directory. That is needed to control the actions of spamassassin. Look to the spamassassin documentation to see how that works if you don't. On my machine spamassassin is wonderfully effective. Yes, I have that file, but I never modified it, so I think it should work. Or do I have to modify it to really work? Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
evolution + spamassassin
Hi folks: I always utilized Spamassassin for filtering spam messages in Evolution, but lately it is not working effectively. It happens in my POP3 account for my institution email. I have to mark always the same messages as junk, which is frustrating. Some spam mails get filtered, but others don't, they always appear as not junk, even though I mark them as junk. Does this happens to anyone else? Any help is appreciated. All the best, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: BOINC x86_64 - anyone had this working recently?
On 02/17/2012 09:45 AM, Philip Rhoades wrote: Germán, Date: Thu, 16 Feb 2012 20:00:25 -0200 From: "Germán A. Racca" To: users@lists.fedoraproject.org Subject: Re: BOINC x86_64 - anyone had this working recently? Message-ID: <4f3d7c79.30...@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed On 02/16/2012 03:32 PM, Philip Rhoades wrote: Germán, Date: Thu, 16 Feb 2012 13:59:39 -0200 From: "Germán A. Racca" To: users@lists.fedoraproject.org Subject: Re: BOINC x86_64 - anyone had this working recently? Message-ID: <4f3d27eb.3060...@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed On 02/16/2012 10:40 AM, Philip Rhoades wrote: People, Some years ago this used to work for me but for the last few versions of Fedora that I have used (12, 14 and now 16) I haven't had any luck - the client keeps stopping. Has anyone got the latest version going on F16 x86_64? Thanks, Phil. Hi Phil: You have to add your username to the boing group, and then restart your computer. Did that - trying to add a project causes a "Connecting" message briefly and then immediately returns to "Disconnected" and I see in the terminal where I started the client: SIGSEGV: segmentation violation Stack trace (14 frames): /usr/lib64/libboinc.so.6(boinc_catch_signal+0x1bc)[0x316023753d] /lib64/libc.so.6[0x30b6636300] /lib64/libc.so.6(readdir+0x36)[0x30b66b7b06] /usr/lib64/libboinc.so.6(_Z8dir_scanPcP11__dirstreami+0x1f)[0x3160237ae7] /usr/lib64/libboinc.so.6(_Z8dir_sizePKcRdb+0x77)[0x3160237fc0] /usr/lib64/libboinc.so.6(_Z8dir_sizePKcRdb+0xe9)[0x3160238032] /usr/lib64/libboinc.so.6(_Z8dir_sizePKcRdb+0xe9)[0x3160238032] boinc_client[0x45bb02] boinc_client[0x45cc5d] boinc_client[0x42c0a2] boinc_client[0x47ba72] boinc_client[0x47bcb4] /lib64/libc.so.6(__libc_start_main+0xed)[0x30b662169d] boinc_client[0x4135d9] Exiting... I suppose I should log a bug report somewhere but this is not a high priority app for me but it would be nice if it would "just work" . . Thanks, Phil. Phil: After adding my username to the boinc group, I made sure the service was enabled and running (using systemd), and then I started "boincmgr". Then I went to "Advanced -> Select computer -> Host name: localhost", and as password I put the content of the file /var/lib/boinc/gui_rpc_auth.cfg But maybe you should file a bug. Thanks! - I eventually got it working with a blank password (ie only CR/LF i the file). Now my computer can be of use to some other people's scientific research again! Regards, Phil. Nice to see it is working for you again! I'm running the project Milkyway@Home :) Have a nice day, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: BOINC x86_64 - anyone had this working recently?
On 02/16/2012 03:32 PM, Philip Rhoades wrote: Germán, Date: Thu, 16 Feb 2012 13:59:39 -0200 From: "Germán A. Racca" To: users@lists.fedoraproject.org Subject: Re: BOINC x86_64 - anyone had this working recently? Message-ID: <4f3d27eb.3060...@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed On 02/16/2012 10:40 AM, Philip Rhoades wrote: People, Some years ago this used to work for me but for the last few versions of Fedora that I have used (12, 14 and now 16) I haven't had any luck - the client keeps stopping. Has anyone got the latest version going on F16 x86_64? Thanks, Phil. Hi Phil: You have to add your username to the boing group, and then restart your computer. Did that - trying to add a project causes a "Connecting" message briefly and then immediately returns to "Disconnected" and I see in the terminal where I started the client: SIGSEGV: segmentation violation Stack trace (14 frames): /usr/lib64/libboinc.so.6(boinc_catch_signal+0x1bc)[0x316023753d] /lib64/libc.so.6[0x30b6636300] /lib64/libc.so.6(readdir+0x36)[0x30b66b7b06] /usr/lib64/libboinc.so.6(_Z8dir_scanPcP11__dirstreami+0x1f)[0x3160237ae7] /usr/lib64/libboinc.so.6(_Z8dir_sizePKcRdb+0x77)[0x3160237fc0] /usr/lib64/libboinc.so.6(_Z8dir_sizePKcRdb+0xe9)[0x3160238032] /usr/lib64/libboinc.so.6(_Z8dir_sizePKcRdb+0xe9)[0x3160238032] boinc_client[0x45bb02] boinc_client[0x45cc5d] boinc_client[0x42c0a2] boinc_client[0x47ba72] boinc_client[0x47bcb4] /lib64/libc.so.6(__libc_start_main+0xed)[0x30b662169d] boinc_client[0x4135d9] Exiting... I suppose I should log a bug report somewhere but this is not a high priority app for me but it would be nice if it would "just work" . . Thanks, Phil. Phil: After adding my username to the boinc group, I made sure the service was enabled and running (using systemd), and then I started "boincmgr". Then I went to "Advanced -> Select computer -> Host name: localhost", and as password I put the content of the file /var/lib/boinc/gui_rpc_auth.cfg But maybe you should file a bug. Good luck Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: BOINC x86_64 - anyone had this working recently?
On 02/16/2012 10:40 AM, Philip Rhoades wrote: People, Some years ago this used to work for me but for the last few versions of Fedora that I have used (12, 14 and now 16) I haven't had any luck - the client keeps stopping. Has anyone got the latest version going on F16 x86_64? Thanks, Phil. Hi Phil: You have to add your username to the boing group, and then restart your computer. HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: yum managment
On 02/14/2012 05:52 PM, Patrick Dupre wrote: Hello, Is there a way to tell to yum to not update a specific package when doing yum update? Thank Hi Patrick: See "man yum.conf" and the option "exclude". HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Virtual machine => Physical machine - fix screen resolution?
On 01/29/2012 12:01 AM, Philip Rhoades wrote: People, I sent this note to the Fedora virtual list so I thought I might try here . . I installed a Fedora 16 x86_64 virtual machine on a Fedora 14 x86_64 server but used a physical disk (/dev/sdb = /dev/vda) so I could get the new server going almost completely in virtual mode and then when it was ready to go, reboot the machine on the new drive. This process went extremely well (thanks to all the Fedora developers!) but there were a few glitches left to sort out - one of which was the screen resolution for both the console and in X. It seems the default virtual screen is 1024x768 but I need 1280x1024(or 768). I tried adding a vga parameter to the linux line in the grub.cfg file but that only temporarily changed the resolution during bootup. xorg.conf doesn't get used much anymore - do I need to create it for this case? Is there some way to tell Fedora to rediscover the maximum screen resolution somehow? Thanks, Phil. Hi Phil: Are you using Virtual Box? Did you install guest additions? Cheers, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: F16 - Clementine doesn't start
On 01/11/2012 07:45 PM, antonio wrote: A friend of mine (she doesn't speak English) installed Clementine but when she started it nothing happened: starting from a terminal she gets the following message: clementine db error: QSqlError(21, "Unable to execute multiple statements at a time", "not an error") faulty query: "CREATE TABLE schema_version ( version INTEGER NOT NULL ); INSERT INTO schema_version (version) VALUES (0);" bound values: QMap() Unable to update music library database Annullato She removed the ./config/Clementine folder but nothing changed: also a different user on same computer gets the same message. Any hint?? She has same mysql packages as I have on my box, that works fine Tnx That happened to me today when I installed Clementine for the first time. I also removed the config floder but the bug persists. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Gnote + Gome 3
On 01/03/2012 07:45 PM, William Case wrote: Hi; You can't always believe what you read !? Google shows several conversations about gnote not yet being integrated into gnome. Yet in Fedora 15 I had a little menu icon on a bottom panel task bar/ notification area. I have no remembrance of putting it there, but it just seemed to show up one day. So I don't know how to get it back in Fedora 16. I have tried everything I can think of. Gnote has become one of my most important aids to writing. How can I get it back so that it is handy? And, get it so that I don't have to open the search menu with it? I used to have a recently used notes list. Hi William, I had the same problem, and I found a solution, that at least works for me: $ gsettings set org.gnome.gnote use-status-icon true HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Theme extension broke
On 12/21/2011 10:32 PM, Lawrence Graves wrote: On 12/21/2011 04:44 PM, Mohamed El Morabity wrote: Hi, the bug was reported and fixed upstream; https://bugzilla.gnome.org/show_bug.cgi?id=666054 You should write a bug report to merge the fix in the gnome-tweak-tool package. Thanks for this information but this doesn't change what I am experiencing with my selector. -- Lawrence Graves All things are workable but don't all things work. You can fix it if you don't want to wait for the update. Open this file as superuser: /usr/lib/python2.7/site-packages/gtweak/tweaks/tweak_shell.py and change line 46 by this one: THEME_EXT_NAME = "user-th...@gnome-shell-extensions.gcampax.github.com" and it will work again. HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: VirtualBox installation question.
On 12/16/2011 09:34 PM, Reindl Harald wrote: Am 17.12.2011 00:17, schrieb Erik P. Olsen: On 16/12/11 23:54, Reindl Harald wrote: Am 16.12.2011 23:50, schrieb Erik P. Olsen: I have installed VirtualBox-4.0-4.0.14_74382_fedora14-1.x86_64 and have been running it for quite some time. I have now noticed that a new version VirtualBox-4.1-4.1.6_74713_fedora14-1.x86_64 is available but not as an update only as a new install. Is it safe to remove the current package and install the new one? Will my virtual machines be automatically picked up by the installation process? this is linux not windows rpm -Uvh "package.rpm" or better "yum --nogpgcheck update package.rpm" to update downloaded packages My question had nothing to do with windows. I have never run windows except as virtual machines. and "yum update VirtualBox*" gets "No Packages marked for Update" so a clean install is needed. * download the rpm * go in the folder with the rpm * type "yum --nogpgcheck update filename.rpm" yum is not limited to repos if something is installed as rpm a "clean install" is not needed why? because for a rpm a "clean install" does not exist a rpm-package knows which files are form the apckages, which are new and which are obsoleted to remove, that is why a package-manager exists your user-data has nothing to do with the rpm/software/package a virtual machine for vbox/vmware whatever is the same as a doc for openoffice it is yur data and has nothing to do with install/update/uninstall the software It has to be a "clean install" from my point of view, because he has to remove one package and then install the other. Why? Because the newer one has a different name. In the format of name-version-release.arch, this is: Old package: VirtualBox-4.0-4.0.14_74382_fedora14-1.x86_64 New package: VirtualBox-4.1-4.1.6_74713_fedora14-1.x86_64 so the old one is called VirtualBox-4.0 and the newer is VirtualBox-4.1. (BTW, Erik, take into account that F14 is EOL. We are in F16, and the same versio of VirtualBox is available). HTH, Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Gnome tweak tool
On 12/16/2011 12:23 PM, Lawrence Graves wrote: Just wondering if anyone has notice that you can't install shell themes in the gnome-tweak-tool or it is just me. -- Lawrence Graves All things are workable but don't all things work. You are not alone :) -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Main Menu Won't Run
On 12/12/2011 06:23 PM, Joe Zeff wrote: On 12/12/2011 11:40 AM, "Germán A. Racca" wrote: Well, Joe, I did my part. I've sent my backtrace, and I'm hoping it can get to the developers in order to fix the bug... :) You and me both. However, I get an email every time somebody adds to it and most of the "crash reports" are useless. I agree. It is irritating :) -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Main Menu Won't Run
On 12/12/2011 05:27 PM, Joe Zeff wrote: > On 12/12/2011 10:02 AM, "Germán A. Racca" wrote: >> I have already filed a bug about this error: >> >> https://bugzilla.redhat.com/show_bug.cgi?id=752238 > > You and over a hundred other people (including me). Most of them give > absolutely no details other than "Started alacarte and it crashed." Well, Joe, I did my part. I've sent my backtrace, and I'm hoping it can get to the developers in order to fix the bug... :) Cheers, Germán.- -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: intel graphic card boot error
On 12/11/2011 08:46 PM, Shibi wrote: > Hi list > I use a script to switch between my graphic cards on startup and shutdown. > there are a atu Radeon HD 5650 and an intel integrated card, because > of heating problems that made my gpu fan stuck, i always switch off > that radeon card on start up, but due to some problems that other > people reports about highspeed fan in boot time, i always use the > script to bring the radeon card back on when i shot down my laptop. > i don't know what i explained above is relevant but every time i boot > up again after power off the system with the script i get this error > in my screen: > > [drm:ironlake_update_pch_refclk] *ERROR* enabling SSC on PCH > > if i don't use script to shut down, I get a clean boot up. > what does it mean? > some serious problem exists when i boot up to my windows box with > intel card (it shows BDOS after two or tree minutes) that makes it > almost impossible to run windows on battery power for me because it > automatically uses intel graphic card and eventually get to BDOS > state. > is it a hardware problem or just a driver fault? (I like to mention > that my Radeon GPU fan doesn't work at all but with radeon card being > off i don't have any heating problems) Shibi: I can't answer your question, and even don't know what it means, but I have a Dell Vostro 3500 with an Intel card and when using the battery I also get this error message when the system comes back from suspending ... just to say that you are not alone :) Germán. -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: Main Menu Won't Run
On 12/09/2011 08:20 PM, Smith, Herb wrote: > All, > > I did a fresh install of F16 on my Dell Inspiron Laptop. All seemed to > go fine, however, when I try to run the Main Menu (alacarte) > application, it acts like it tries to start and then goes away (no > window pops up, only a small icon in the upper task bar and a small > spinning icon). The first two times I tried it I got error messages > about not finding Module gmenu, but now it does nothing. > > Any ideas on how I can get it working? > > TIA > > Herb Smith > > > I have already filed a bug about this error: https://bugzilla.redhat.com/show_bug.cgi?id=752238 Germán.- -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
Re: kde desktop
On 08/31/2011 08:46 AM, Rahul Sundaram wrote: > On 08/31/2011 04:44 PM, Adel ESSAFI wrote: >> Hello >> was the KDE desktop removed in F15?? >> >> ~]# yum grouplist | grep -i kde >> KDE Software Compilation >> KDE Software Development >> >> >> I don't find the corresponding group > > Software compilation is the current name but if you find the long names > clumsy to type, I recommend using yum -v grouplist to find the shorter name > > # yum install @kde > > Rahul Actually, the result of "yum -v grouplist" is: ...[snip]... KDE Software Compilation (kde-desktop) ...[snip]... So the short name would be @kde-desktop, but @kde also works! They are hiding some information here... :) -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Re: Obsolete RPMs
On Tue, 28 Jun 2011 17:06:31 +0100 Dave Cross wrote: > I've upgraded a couple of systems from F14 to F15 using preupgrade. > Everything seems to have gone fine. > > I'm slowly getting used to GNOME 3 and I'm sure that it will make > sense to me one day. > > But it strikes me that there will now be a number of obsolete RPMs > hanging around on my system. These will be the RPMs relating to > features used in GNOME 2 but not in GNOME 3. I'm thinking of things > like compiz and all of the applets. Is there any reason why I > shouldn't just remove all of these RPMs? Are there any more that I can > remove safely? > > Cheers, > > Dave > But compiz runs under Gnome 3 also, so why do you thing you don't need it any more? :) -- Germán A. Racca Fedora Package Maintainer https://fedoraproject.org/wiki/User:Skytux -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Re: How to open a mht format
On Wed, 2010-12-08 at 09:51 +1030, Tim wrote: > On Tue, 2010-12-07 at 13:40 -0500, Jim wrote: > > Fedora 14 > > > > How does one open a email attachment with a format of .mht > > You could use a text-only MIME email client. The mht (htm spelt > backwards) is, virtually, the same as a multi-part email, in HTML format > (all the content, text and encoded graphics, being concatenated into one > text file). > > While the mht file isn't actually an email message, but a webpage and > contents all in one file, it's virtually the same format (descriptive > headers, and content parts). > Last week I saved some web pages using Opera, and then when I opened them with Firefox I noticed that Opera uses that mht format !?!? -- Germán A. Racca National Institute for Space Research (INPE) São José dos Campos - SP - Brasil http://skytux.fedorapeople.org -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Re: Kernel-PAE no longer 32 bit default?
On Sun, 2010-11-14 at 08:35 -0500, Lamar Owen wrote: > On Saturday, November 13, 2010 07:51:17 pm Tom Horsley wrote: > > I was finally getting around to tweaking my 32 bit fedora 14 > > partition when I noticed that I was running kernel, > > not kernel-PAE. > > For what it's worth, my pre-upgraded F14 box pulled in the PAE kernel, but > that was an upgrade, not a fresh install. My fresh install ended with a kernel, not PAE, in my 32 bits notebook. -- Germán A. Racca National Institute for Space Research (INPE) São José dos Campos - SP - Brasil http://skytux.fedorapeople.org -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Re: revisor doesn't start
On Mon, 2010-11-08 at 12:37 -0600, Bruno Wolff III wrote: > On Mon, Nov 08, 2010 at 14:19:30 -0200, > "Germán A. Racca" wrote: > > Hi list: > > > > I want to use revisor but > > > > $ revisor > > Cannot find anaconda-runtime in /usr/lib/anaconda-runtime > > These changes affected livecd-creator and we made some changes to work for > that. Probably no one noticed the same issue affected revisor. > > Have you filed a bug against revisor for this issue? Bruno: As I said in my message: > I've reported this to BZ: > https://bugzilla.redhat.com/show_bug.cgi?id=649815 Regards, Germán. -- Germán A. Racca National Institute for Space Research (INPE) São José dos Campos - SP - Brasil http://skytux.fedorapeople.org -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
revisor doesn't start
Hi list: I want to use revisor but $ revisor Cannot find anaconda-runtime in /usr/lib/anaconda-runtime $ uname -r 2.6.35.6-48.fc14.x86_64 I've reported this to BZ: https://bugzilla.redhat.com/show_bug.cgi?id=649815 Any ideas?? -- Germán A. Racca National Institute for Space Research (INPE) São José dos Campos - SP - Brasil http://skytux.fedorapeople.org -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Re: root rpm package list?
On Thu, 2010-11-04 at 05:38 -0400, Tom Horsley wrote: > On Wed, 03 Nov 2010 19:20:32 -0700 > JD wrote: > > > So, how could zoneminder package be a root package? > > No one depends on it. Those are the "roots" I'm trying > to find (i.e. packages that must have been installed > intentionally rather than via some dependency). package-cleanup --orphans ??? -- Germán A. Racca National Institute for Space Research (INPE) São José dos Campos - SP - Brasil http://skytux.fedorapeople.org -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Re: Question about installing with yum...
On Mon, 2010-10-25 at 13:20 -0500, Kevin Martin wrote: > I'm trying to get wine installed on Fedora 13 x86_64 but I get an error: > > Transaction Check Error: > package libuuid-2.17.2-9.fc13.x86_64 (which is newer than > libuuid-2.17.2-8.fc13.i686) is already installed > package mesa-libGLU-7.8.1-9.fc13.x86_64 (which is newer than > mesa-libGLU-7.8.1-8.fc13.i686) is already installed > package openldap-2.4.21-11.fc13.x86_64 (which is newer than > openldap-2.4.21-10.fc13.i686) is already installed > > > Of course, if I try to downgrade these packages then yum complains that other > packages have dependencies on these versions. Is > there some way to get around this? > > Thanks. > > Kevin Kevin: Did you see that the older versions are i686 and your system is x86_64? -- Germán A. Racca National Institute for Space Research (INPE) São José dos Campos - SP - Brasil http://skytux.fedorapeople.org -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Re: Re: Can't remove package from update manager
for Fedor disabled > rpmfusion-free-updates-testing RPM Fusion for Fedor disabled > rpmfusion-free-updates-testing-debuginfoRPM Fusion for Fedor disabled > rpmfusion-free-updates-testing-source RPM Fusion for Fedor disabled > rpmfusion-nonfree RPM Fusion for Fedor > enabled:156 > rpmfusion-nonfree-debuginfo RPM Fusion for Fedor disabled > rpmfusion-nonfree-rawhide RPM Fusion for Fedor disabled > rpmfusion-nonfree-rawhide-debuginfo RPM Fusion for Fedor disabled > rpmfusion-nonfree-rawhide-sourceRPM Fusion for Fedor disabled > rpmfusion-nonfree-sourceRPM Fusion for Fedor disabled > rpmfusion-nonfree-updates RPM Fusion for Fedor > enabled:135 > rpmfusion-nonfree-updates-debuginfo RPM Fusion for Fedor disabled > rpmfusion-nonfree-updates-sourceRPM Fusion for Fedor disabled > rpmfusion-nonfree-updates-testing RPM Fusion for Fedor disabled > rpmfusion-nonfree-updates-testing-debuginfo RPM Fusion for Fedor disabled > rpmfusion-nonfree-updates-testing-sourceRPM Fusion for Fedor disabled > updates Fedora 13 - x86_64 - > enabled: 7,270 > updates-debuginfo Fedora 13 - x86_64 - disabled > updates-source Fedora 13 - Updates disabled > updates-testing Fedora 13 - x86_64 - disabled > updates-testing-debuginfo Fedora 13 - x86_64 - disabled > updates-testing-source Fedora 13 - Test Upd disabled > repolist: 30,167 > _________ > > [sil...@terminal-bmrf-9 ~]$ find /var/cache/yum/ -type f -name > 'zsnes*\.rpm' > [sil...@terminal-bmrf-9 ~]$ find /var/cache/yum/ -type f -name 'zsnes*\.rpm' > [sil...@terminal-bmrf-9 ~]$ find /var/cache/yum/ -type f -name 'zsnes*\.rpm' > [sil...@terminal-bmrf-9 ~]$ > > The above command does nothing. Tried three times. > > Where are .repo files kept? What is that repository called "_repo"? You can see the content of the repo with this command: $ repoquery --repoid=_repo -a Configuration files for repos are here: /etc/yum.repos.d/ -- Germán A. Racca National Institute for Space Research (INPE) São José dos Campos - SP - Brasil http://skytux.fedorapeople.org -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines