Re: How can you get remote access to laptops behind a NAT/firewall?

2023-12-21 Thread Chris Adams
Once upon a time, Thomas Cameron said: > I suppose I could set up the laptops so that they log into the VPN > at boot, that would do the same thing and the staff on the Linux > laptops wouldn't have to do anything manual. But I don't want to > chew up that VPN bandwidth if I don't have to. If

Re: How can you get remote access to laptops behind a NAT/firewall?

2023-12-21 Thread Thomas Cameron via users
On 12/21/23 14:39, Chris Adams wrote: Once upon a time, Thomas Cameron said: So my question is, is there any sort of software which is similar to Quick Assist we can install on our Linux laptops so that the Linux team sysadmins can get access to laptops? I've seen folks on this list talk about

Re: How can you get remote access to laptops behind a NAT/firewall?

2023-12-21 Thread Chris Adams
Once upon a time, Thomas Cameron said: > So my question is, is there any sort of software which is similar to > Quick Assist we can install on our Linux laptops so that the Linux > team sysadmins can get access to laptops? I've seen folks on this > list talk about TeamViewer and AnyDesk, but both

How can you get remote access to laptops behind a NAT/firewall?

2023-12-21 Thread Thomas Cameron via users
In my company, we're rolling out Linux laptops to my team. We're 100% remote workers, no one even lives in the same state as the headquarters. If my teammates are logged into the VPN, it's pretty easy to administer a team member's laptop - I just ask the user for the IP address and ssh in as

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
On 12/12/22 17:20, Samuel Sieb wrote: On 12/12/22 13:54, ToddAndMargo via users wrote: On 12/12/22 12:08, ToddAndMargo via users wrote: On 12/12/22 06:43, Tom Horsley wrote: On Mon, 12 Dec 2022 06:33:15 -0800 ToddAndMargo via users wrote: This it? dd if=/dev/zero of=/sometempfile Seems

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
On 12/12/22 17:22, Samuel Sieb wrote: On 12/12/22 12:08, ToddAndMargo via users wrote: On 12/12/22 06:43, Tom Horsley wrote: On Mon, 12 Dec 2022 06:33:15 -0800 ToddAndMargo via users wrote: This it? dd if=/dev/zero of=/sometempfile Seems like that would work. Might need to do it as root

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Samuel Sieb
On 12/12/22 12:08, ToddAndMargo via users wrote: On 12/12/22 06:43, Tom Horsley wrote: On Mon, 12 Dec 2022 06:33:15 -0800 ToddAndMargo via users wrote: This it? dd if=/dev/zero of=/sometempfile Seems like that would work. Might need to do it as root in case the kernel doesn't allow an

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Samuel Sieb
On 12/12/22 13:54, ToddAndMargo via users wrote: On 12/12/22 12:08, ToddAndMargo via users wrote: On 12/12/22 06:43, Tom Horsley wrote: On Mon, 12 Dec 2022 06:33:15 -0800 ToddAndMargo via users wrote: This it? dd if=/dev/zero of=/sometempfile Seems like that would work. Might need to do

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
On 12/12/22 14:17, Patrick O'Callaghan wrote: On Mon, 2022-12-12 at 13:54 -0800, ToddAndMargo via users wrote: dump/restore restored a "raw" file perfectly. Interesting.  sha256sum came back different for before and after  (.000 is before) # sha256sum KVM-W11.raw KVM-W11.raw.000

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Patrick O'Callaghan
On Mon, 2022-12-12 at 13:54 -0800, ToddAndMargo via users wrote: > dump/restore restored a "raw" file perfectly. > > Interesting.  sha256sum came back different for > before and after  (.000 is before) > > # sha256sum KVM-W11.raw KVM-W11.raw.000 > >

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Bill Cunningham
You might want to think about setting a size on that file. dd can be pretty destructive as well as useful. I like to randomize file with it before truncating the contents. For example, if a file is 4096 bytes, I would use, 'dd if=/dev/zero of=/file bs=4096 count=1 conv=notrunc. Just so there

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
On 12/12/22 12:08, ToddAndMargo via users wrote: On 12/12/22 06:43, Tom Horsley wrote: On Mon, 12 Dec 2022 06:33:15 -0800 ToddAndMargo via users wrote: This it? dd if=/dev/zero of=/sometempfile Seems like that would work. Might need to do it as root in case the kernel doesn't allow an

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
On 12/12/22 06:43, Tom Horsley wrote: On Mon, 12 Dec 2022 06:33:15 -0800 ToddAndMargo via users wrote: This it? dd if=/dev/zero of=/sometempfile Seems like that would work. Might need to do it as root in case the kernel doesn't allow an ordinary user to use up all the free space on a disk.

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Mauricio Tavares
On Mon, Dec 12, 2022 at 9:56 AM ToddAndMargo via users wrote: > > On 12/12/22 06:49, Mauricio Tavares wrote: > > I use logical volumes for the virtual machines I care about > > What is that? My desktop's (a VM guest) drive [user@vmhost ~]# sudo lvs vmhost_vg1 LVVG

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Tom Horsley
On Mon, 12 Dec 2022 06:55:15 -0800 ToddAndMargo via users wrote: > I wonder if qemu-ing convert will convert from > qcows2 to qcows2? I will see! Yep, that's how I always sparsified my files before the virt-sparsify tool existed. Write zeroes till you run out of space (thus making all the free

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
On 12/12/22 06:49, Mauricio Tavares wrote: I use logical volumes for the virtual machines I care about What is that? ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
On 12/12/22 06:43, Tom Horsley wrote: On Mon, 12 Dec 2022 06:33:15 -0800 ToddAndMargo via users wrote: This it? dd if=/dev/zero of=/sometempfile Seems like that would work. Might need to do it as root in case the kernel doesn't allow an ordinary user to use up all the free space on a disk.

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Mauricio Tavares
On Mon, Dec 12, 2022 at 9:44 AM Tom Horsley wrote: > > On Mon, 12 Dec 2022 06:33:15 -0800 > ToddAndMargo via users wrote: > > > This it? > > > > dd if=/dev/zero of=/sometempfile > > Seems like that would work. Might need to do it as root in case the > kernel doesn't allow an ordinary user to use

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Tom Horsley
On Mon, 12 Dec 2022 06:33:15 -0800 ToddAndMargo via users wrote: > This it? > > dd if=/dev/zero of=/sometempfile Seems like that would work. Might need to do it as root in case the kernel doesn't allow an ordinary user to use up all the free space on a disk. And don't forget "rm /sometempfile"

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
On 12/12/22 06:25, Tom Horsley wrote: On Mon, 12 Dec 2022 04:57:08 -0800 ToddAndMargo via users wrote: Anyone know how to unsparsify a qcows2 file? Boot up the virtual machine and write zeroes to a temp file on that disk till you get out of space errors is one way. Basically stop after the

Re: How do you unsparsify a qcows2 file?

2022-12-12 Thread Tom Horsley
On Mon, 12 Dec 2022 04:57:08 -0800 ToddAndMargo via users wrote: > Anyone know how to unsparsify a qcows2 file? Boot up the virtual machine and write zeroes to a temp file on that disk till you get out of space errors is one way. Basically stop after the first step of sparsifying :-).

How do you unsparsify a qcows2 file?

2022-12-12 Thread ToddAndMargo via users
Hi All, Anyone know how to unsparsify a qcows2 file? https://libguestfs.org/virt-sparsify.1.html Many thanks, -T ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-10 Thread sean darcy
On 5/9/20 9:12 PM, Samuel Sieb wrote: On 5/9/20 3:38 PM, sean darcy wrote: And it works. I can now dual boot, and Windows is a LOT faster. Oh, the irony... Absolutely. Why in the world would Dell sell an nvme laptop provisioned with RST ?

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-09 Thread Samuel Sieb
On 5/9/20 3:38 PM, sean darcy wrote: And it works. I can now dual boot, and Windows is a LOT faster. Oh, the irony... ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-09 Thread sean darcy
On 5/7/20 10:49 AM, sean darcy wrote: My new laptop has Windows 10 installed with the Intel rapid Storage Technology  (optane) system chip. Windows is on an nvme drive. FC31 is on a SATA ssd. BIOS allows me to choose AHCI or RST. I must use AHCI to boot the FC31 drive, and RST to boot the

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-09 Thread Robert G (Doc) Savage via users
On Sat, 2020-05-09 at 09:30 -0400, sean darcy wrote: > On 5/9/20 1:38 AM, Robert G (Doc) Savage via users wrote: > > On Thu, 2020-05-07 at 10:49 -0400, sean darcy wrote: > > > My new laptop has Windows 10 installed with the Intel > > > rapid Storage Technology (optane) system chip. Windows is on

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-09 Thread sean darcy
On 5/9/20 1:38 AM, Robert G (Doc) Savage via users wrote: On Thu, 2020-05-07 at 10:49 -0400, sean darcy wrote: My new laptop has Windows 10 installed with the Intel rapid Storage Technology  (optane) system chip. Windows is on an nvme drive. FC31 is on a SATA ssd. BIOS allows me to choose

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-08 Thread Robert G (Doc) Savage via users
On Thu, 2020-05-07 at 10:49 -0400, sean darcy wrote: > My new laptop has Windows 10 installed with the Intel > rapid Storage Technology (optane) system chip. Windows is on an > nvme > drive. > > FC31 is on a SATA ssd. > > BIOS allows me to choose AHCI or RST. I must use AHCI to boot the > FC31

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-08 Thread Gordon Messmer
On 5/7/20 7:49 AM, sean darcy wrote: 1. Is there a way to get the FC31 drive to boot with RST ? No.  RST is unsafe by design, and the kernel developers won't support it. * No NVMe device power management * No NVMe reset support * No NVMe quirks based on PCI ID * No SR-IOV VFs * Reduced

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-08 Thread Samuel Sieb
On 5/7/20 7:49 AM, sean darcy wrote: My new laptop has Windows 10 installed with the Intel rapid Storage Technology  (optane) system chip. Windows is on an nvme drive. FC31 is on a SATA ssd. I thought RST was where it used a small SSD as caching for a regular spinning hard drive. The few

Re: How do you Dual boot with Intel RST - Optane ?

2020-05-08 Thread sean darcy
On 5/7/20 10:49 AM, sean darcy wrote: My new laptop has Windows 10 installed with the Intel rapid Storage Technology  (optane) system chip. Windows is on an nvme drive. FC31 is on a SATA ssd. BIOS allows me to choose AHCI or RST. I must use AHCI to boot the FC31 drive, and RST to boot the

How do you Dual boot with Intel RST - Optane ?

2020-05-07 Thread sean darcy
My new laptop has Windows 10 installed with the Intel rapid Storage Technology (optane) system chip. Windows is on an nvme drive. FC31 is on a SATA ssd. BIOS allows me to choose AHCI or RST. I must use AHCI to boot the FC31 drive, and RST to boot the Windows drive. Neither will boot with

Re: How do you request a package in RPMFusion?

2019-04-13 Thread Ed Greshko
On 4/13/19 2:54 PM, ToddAndMargo via users wrote: > That was easy.  It even worked with my Fedora login (this time, > the time before it gave me a bunch of ...). > > Is rpmfusion-users the right place to go to ask for > a package?  Is that what they mean by "Wiki"? Well, I think they want you to

Re: How do you request a package in RPMFusion?

2019-04-13 Thread ToddAndMargo via users
On 4/12/19 11:47 PM, Ed Greshko wrote: On 4/13/19 2:33 PM, ToddAndMargo via users wrote: Maybe I am just tied, but I can't find my own nose over there.  What mailing list? https://lists.rpmfusion.org/archives/ In particular

Re: How do you request a package in RPMFusion?

2019-04-13 Thread Ed Greshko
On 4/13/19 2:33 PM, ToddAndMargo via users wrote: > Maybe I am just tied, but I can't find my own nose over > there.  What mailing list? https://lists.rpmfusion.org/archives/ In particular https://lists.rpmfusion.org/archives/list/rpmfusion-us...@lists.rpmfusion.org/

Re: How do you request a package in RPMFusion?

2019-04-13 Thread ToddAndMargo via users
On 4/12/19 11:10 PM, Ed Greshko wrote: On 4/13/19 12:50 PM, ToddAndMargo via users wrote: On 4/12/19 9:47 PM, Ed Greshko wrote: On 4/13/19 12:09 PM, ToddAndMargo via users wrote: On 4/12/19 8:51 PM, Todd Zullinger wrote: ToddAndMargo via users wrote: Okay, I give up.  I can find everyone

Re: How do you request a package in RPMFusion?

2019-04-13 Thread Ed Greshko
On 4/13/19 12:50 PM, ToddAndMargo via users wrote: > On 4/12/19 9:47 PM, Ed Greshko wrote: >> On 4/13/19 12:09 PM, ToddAndMargo via users wrote: >>> On 4/12/19 8:51 PM, Todd Zullinger wrote: ToddAndMargo via users wrote: > Okay, I give up.  I can find everyone else's requests for packages

Re: How do you request a package in RPMFusion?

2019-04-12 Thread ToddAndMargo via users
On 4/12/19 9:47 PM, Ed Greshko wrote: On 4/13/19 12:09 PM, ToddAndMargo via users wrote: On 4/12/19 8:51 PM, Todd Zullinger wrote: ToddAndMargo via users wrote: Okay, I give up.  I can find everyone else's requests for packages in RPM Fusion, but I can't find the form to fill out for a new

Re: How do you request a package in RPMFusion?

2019-04-12 Thread Ed Greshko
On 4/13/19 12:09 PM, ToddAndMargo via users wrote: > On 4/12/19 8:51 PM, Todd Zullinger wrote: >> ToddAndMargo via users wrote: >>> Okay, I give up.  I can find everyone else's requests for packages >>> in RPM Fusion, but I can't find the form to fill out for a >>> new request. >> >> Have you read

Re: How do you request a package in RPMFusion?

2019-04-12 Thread ToddAndMargo via users
On 4/12/19 8:51 PM, Todd Zullinger wrote: ToddAndMargo via users wrote: Okay, I give up. I can find everyone else's requests for packages in RPM Fusion, but I can't find the form to fill out for a new request. Have you read this entry in the RPM Fusion FAQ?

Re: How do you request a package in RPMFusion?

2019-04-12 Thread Todd Zullinger
ToddAndMargo via users wrote: > Okay, I give up. I can find everyone else's requests for packages > in RPM Fusion, but I can't find the form to fill out for a > new request. Have you read this entry in the RPM Fusion FAQ?

How do you request a package in RPMFusion?

2019-04-12 Thread ToddAndMargo via users
Hi All, Okay, I give up. I can find everyone else's requests for packages in RPM Fusion, but I can't find the form to fill out for a new request. -T ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to

Re: How do you reset Selinux back to default?

2018-03-13 Thread Lukas Vrabec
On 03/13/2018 07:53 AM, Samuel Sieb wrote: > On 03/12/2018 06:28 PM, ToddAndMargo wrote: >> I mean before I started adding things to SELinux based on >> SEAlerts and such.  In other word, set SELinux back to >> the way I found it after I installed Linux > > I thought I had seen something to list

Re: How do you reset Selinux back to default?

2018-03-13 Thread Samuel Sieb
On 03/12/2018 06:28 PM, ToddAndMargo wrote: I mean before I started adding things to SELinux based on SEAlerts and such.  In other word, set SELinux back to the way I found it after I installed Linux I thought I had seen something to list changed modules, but now I think I misunderstood. I

Re: How do you reset Selinux back to default?

2018-03-12 Thread Ed Greshko
On 03/13/18 09:28, ToddAndMargo wrote: > On 03/12/2018 04:20 PM, Ed Greshko wrote: >> On 03/13/18 07:02, ToddAndMargo wrote: >>> Hi All, >>> >>> How do you set SELinux back to default and start over? >> >> You mean for the entire fi

Re: How do you reset Selinux back to default?

2018-03-12 Thread ToddAndMargo
On 03/12/2018 04:20 PM, Ed Greshko wrote: On 03/13/18 07:02, ToddAndMargo wrote: Hi All, How do you set SELinux back to default and start over? You mean for the entire file system?  If so, "fixfiles onboot"  will setup the machine to relabel on the next reboot. See the "fix

Re: How do you reset Selinux back to default?

2018-03-12 Thread Ed Greshko
On 03/13/18 07:02, ToddAndMargo wrote: > Hi All, > > How do you set SELinux back to default and start over? You mean for the entire file system?  If so, "fixfiles onboot"  will setup the machine to relabel on the next reboot. See the "fixfiles" man page.

How do you reset Selinux back to default?

2018-03-12 Thread ToddAndMargo
Hi All, How do you set SELinux back to default and start over? Many thanks, -T ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org

Re: How do you store a Live Feed from a guitar

2015-07-01 Thread Bob Goodwin - Zuni, Virginia, USA
On 01/07/15 00:08, Doug wrote: Any suggestions Greg Ennis I have seen ads for a setup that will record vinyl records from a turntable onto a PC thru a gizmo plugged into the USB port. If you were to find any of the software that works with this, it may work with your guitar also. You

Re: How do you store a Live Feed from a guitar

2015-07-01 Thread luca paganotti
Hi, if allowed, I suggest you to take a look at karma. You will find all that's needed to begin here: http://ccrma.stanford.edu/planetccrma/software/ Hope this helps! On Wed, Jul 1, 2015 at 12:25 PM, Ian Malone ibmal...@gmail.com wrote: On 1 July 2015 at 10:11, Bob Goodwin - Zuni, Virginia,

Re: How do you store a Live Feed from a guitar

2015-07-01 Thread Ian Malone
On 1 July 2015 at 10:11, Bob Goodwin - Zuni, Virginia, USA bobgood...@wildblue.net wrote: On 01/07/15 00:08, Doug wrote: Any suggestions Greg Ennis I have seen ads for a setup that will record vinyl records from a turntable onto a PC thru a gizmo plugged into the USB port. If you

How do you store a Live Feed from a guitar

2015-06-30 Thread Gregory P. Ennis
Everyone, I finally have enough time to play with my computer and guitar at the same time. Does anyone have a method of storing a live feed from a guitar. I have a guitar with an acoustic pickup that I normally use with a regular amplifier. I now have a usb audio cable from Alesis LineLink

Re: How do you store a Live Feed from a guitar

2015-06-30 Thread Doug
On 06/30/2015 08:42 PM, Gregory P. Ennis wrote: Everyone, I finally have enough time to play with my computer and guitar at the same time. Does anyone have a method of storing a live feed from a guitar. I have a guitar with an acoustic pickup that I normally use with a regular amplifier. I

F21: How do you turn on syntax highlighting in vim?

2015-03-26 Thread Max Pyziur
Greetings, After installing F21, I no longer seem to be able to control syntax-highlighting. I have the same 4 packages installed that I had on F18: vim-common-7.4.475-2.fc21.x86_64 vim-enhanced-7.4.475-2.fc21.x86_64 vim-filesystem-7.4.475-2.fc21.x86_64 vim-minimal-7.4.475-2.fc21.x86_64 ...

[solved, I think] Re: F21: How do you turn on syntax highlighting in vim?

2015-03-26 Thread Max Pyziur
On Thu, 26 Mar 2015, Max Pyziur wrote: Greetings, After installing F21, I no longer seem to be able to control syntax-highlighting. I have the same 4 packages installed that I had on F18: vim-common-7.4.475-2.fc21.x86_64 vim-enhanced-7.4.475-2.fc21.x86_64

[389-users] bak2db script: how do you use it?

2014-05-05 Thread Graham Leggett
nobody 4243456 May 5 13:41 uniquemember.db4 What is the secret to the bak2db? What command line should I use that is compatible with the server? How do you convince bak2db to restore into the userRoot directory instead of just dumping everything in the root of the directory, to be ignored

Re: How doo you turn off large letter application

2013-07-22 Thread Aaron Konstam
On Mon, 2013-07-22 at 14:28 +0930, Tim wrote: Allegedly, on or about 21 July 2013, Aaron Konstam sent: I have managed to turn on a largr letter application that displays a keyboard on the screen. How do I turn is off and when is is name of the application? Gnome on-screen keyboard? Or

How doo you turn off large letter application

2013-07-21 Thread Aaron Konstam
I have managed to turn on a largr letter application that displays a keyboard on the screen. How do I turn is off and when is is name of the application? -- I have a theory that it's impossible to prove anything, but I can't prove it. -- users mailing list users@lists.fedoraproject.org To

Re: How doo you turn off large letter application

2013-07-21 Thread Tim
Allegedly, on or about 21 July 2013, Aaron Konstam sent: I have managed to turn on a largr letter application that displays a keyboard on the screen. How do I turn is off and when is is name of the application? Gnome on-screen keyboard? Or are you using KDE? Before, or after login, there

how are you?

2013-05-14 Thread Aaron Konstam
http://www.frizzphotozz.com/news_xml.php?techqg862xuciej akonstam Aaron Konstam Don't mess with anybody who can make a lot more trouble for you than you can

Re: how are you?

2013-05-14 Thread John Aldrich
Quoting Aaron Konstam akons...@sbcglobal.net: http://www.frizzphotozz akonstam Aaron Konstam Don't mess with anybody who can make a lot more trouble for you than you can make for them. % Uh-oh. Looks like someone's email got hacked. -- users mailing list

Re: How do you keep contacts in Fedora/KDE?

2013-04-03 Thread Craig White
On Mon, 2013-04-01 at 14:59 +0200, Timothy Murphy wrote: As a matter of interest, how do those of you running Fedora/KDE keep your contacts? I have a rather messy combination of Google contacts, KAddressBook and LDAP, but would like to organise something simpler. I suspect the simplest

Re: How do you keep contacts in Fedora/KDE?

2013-04-02 Thread Anthony Messina
On Monday, April 01, 2013 02:59:43 PM Timothy Murphy wrote: As a matter of interest, how do those of you running Fedora/KDE keep your contacts? I keep my contacts in 389 DS (LDAP), with EGroupware as a frontend. I access them in KDE via Akonadi's DAV Groupware Resource which has an option for

Re: How do you keep contacts in Fedora/KDE?

2013-04-02 Thread Max Pyziur
On Mon, 1 Apr 2013, Patrick O'Callaghan wrote: On Mon, 2013-04-01 at 14:59 +0200, Timothy Murphy wrote: As a matter of interest, how do those of you running Fedora/KDE keep your contacts? I have a rather messy combination of Google contacts, KAddressBook and LDAP, but would like to organise

Re: How do you keep contacts in Fedora/KDE?

2013-04-02 Thread Junk
On 2 Apr 2013, at 19:47, Max Pyziur p...@brama.com wrote: On Mon, 1 Apr 2013, Patrick O'Callaghan wrote: On Mon, 2013-04-01 at 14:59 +0200, Timothy Murphy wrote: As a matter of interest, how do those of you running Fedora/KDE keep your contacts? I have a rather messy combination of

How do you keep contacts in Fedora/KDE?

2013-04-01 Thread Timothy Murphy
As a matter of interest, how do those of you running Fedora/KDE keep your contacts? I have a rather messy combination of Google contacts, KAddressBook and LDAP, but would like to organise something simpler. I suspect the simplest solution might be to go over entirely to Google contacts, as I want

Re: How do you keep contacts in Fedora/KDE?

2013-04-01 Thread Patrick O'Callaghan
On Mon, 2013-04-01 at 14:59 +0200, Timothy Murphy wrote: As a matter of interest, how do those of you running Fedora/KDE keep your contacts? I have a rather messy combination of Google contacts, KAddressBook and LDAP, but would like to organise something simpler. I suspect the simplest

Re: How do you keep contacts in Fedora/KDE?

2013-04-01 Thread Steven Stern
On 04/01/2013 09:05 AM, Patrick O'Callaghan wrote: On Mon, 2013-04-01 at 14:59 +0200, Timothy Murphy wrote: As a matter of interest, how do those of you running Fedora/KDE keep your contacts? I have a rather messy combination of Google contacts, KAddressBook and LDAP, but would like to

abrt: how can you change bugzilla credentials?

2012-11-17 Thread D. Hugh Redelmeier
On Fedora 17, I'm getting a few aborts. Before I get to the fundamental problem, I'd like to let abrt file a BZ. The problem is that I mistyped the password when abrt first ran. Now it always uses that wrong password. So it can never succeed. Does anyone know how to change abrt's idea of

Re: abrt: how can you change bugzilla credentials?

2012-11-17 Thread Sergio
--- Em sáb, 17/11/12, D. Hugh Redelmeier h...@mimosa.com escreveu: De: D. Hugh Redelmeier h...@mimosa.com Assunto: abrt: how can you change bugzilla credentials? Para: users@lists.fedoraproject.org Data: Sábado, 17 de Novembro de 2012, 12:33 On Fedora 17, I'm getting a few aborts.  Before

Re: abrt: how can you change bugzilla credentials?

2012-11-17 Thread D. Hugh Redelmeier
| From: Sergio sergiocmailbox-userl...@yahoo.com.br | --- Em sáb, 17/11/12, D. Hugh Redelmeier h...@mimosa.com escreveu: | Does anyone know how to change abrt's idea of Bugzilla | credentials? | Go in 'Preferences' and re-configure the bugzilla account. Ah, thanks. I had tried that menu but

Re: how do you make Fedora 16 run a script at boot time, was: Fedora 16 black screen with Radeon HD 6470M: partially solved?

2011-12-09 Thread Michael Schwendt
On Thu, 8 Dec 2011 22:52:15 +0100, MF (M.) wrote: On Thu, Dec 08, 2011 22:40:11 PM +0100, Marco Fioretti wrote: # #! /bin/bash modprobe radeon echo IGD /sys/kernel/debug/vgaswitcheroo/switch echo OFF

how do you make Fedora 16 run a script at boot time, was: Fedora 16 black screen with Radeon HD 6470M: partially solved?

2011-12-08 Thread M. Fioretti
On Thu, Dec 08, 2011 22:40:11 PM +0100, Marco Fioretti wrote: # #! /bin/bash modprobe radeon echo IGD /sys/kernel/debug/vgaswitcheroo/switch echo OFF /sys/kernel/debug/vgaswitcheroo/switch

Re: how do you make Fedora 16 run a script at boot time, was: Fedora 16 black screen with Radeon HD 6470M: partially solved?

2011-12-08 Thread Reindl Harald
Am 08.12.2011 22:52, schrieb M. Fioretti: On Thu, Dec 08, 2011 22:40:11 PM +0100, Marco Fioretti wrote: # #! /bin/bash modprobe radeon echo IGD /sys/kernel/debug/vgaswitcheroo/switch echo OFF /sys/kernel/debug/vgaswitcheroo/switch

Re: how do you make Fedora 16 run a script at boot time, was: Fedora 16 black screen with Radeon HD 6470M: partially solved?

2011-12-08 Thread M. Fioretti
On Thu, Dec 08, 2011 23:00:29 PM +0100, Reindl Harald wrote: if you look in systemctl list-unis you find prefdm.service loaded active running Display Manager so make a one-shot service with the right dependency and enable it with systemctl enable yourservice.service

Re: [389-users] How do you prevent someone from doing this

2011-10-28 Thread Rich Megginson
On 10/20/2011 05:13 AM, Chris Cawley wrote: Hello - How would you prevent a user who has access from downloading the entire directory? Is there a flag or schema that would allow this? So you want to allow someone to perform normal searches, but not be able to search more than N entries

How do you get FC13 to export using NFS3?

2010-03-31 Thread Bill Davidsen
There seems to be a great deal of effort in today's FC13/rawhide release to make sure NFS3 can't be served. First, opening NFS server in the firewall rules doesn't open port 111 (sunrpc) so the connect can be built. Then after opening that port manually the firewall RELATED rule no longer

Re: How do you get FC13 to export using NFS3?

2010-03-31 Thread Patrick O'Callaghan
On Thu, 2010-04-01 at 00:19 -0400, Bill Davidsen wrote: There seems to be a great deal of effort in today's FC13/rawhide release to make sure NFS3 can't be served. First, opening NFS server in the firewall rules doesn't open port 111 (sunrpc) so the connect can be built. Then after

[389-users] Multiple LDAP servers - how do you load balance?

2010-02-04 Thread Sean Carolan
For those of you with multiple servers that use replication, how do you do your load balancing and failover? DNS round robin? Some kind of hardware load balancer like a Netscaler or BigIP F5? -- 389 users mailing list 389-us...@lists.fedoraproject.org https://admin.fedoraproject.org/mailman