Re: gimp erase question
On Mon, 10 Feb 2020 at 21:26, ToddAndMargo via users < users@lists.fedoraproject.org> wrote: > Hi All, > > If I use the gimp erase tool to remove a customers name > from a screen shot, is it really gone or just not showing? > I want to make sure I don't post any private information. > If you use a basic RGB or indexed color image format such as PNG the actual pixels are changed. There are image formats that support layers (e.g., CMYK TIFF's) where redaction could be done by manipulating a layer. It is best to convert images with layers to 8-bit indexed color for transmission -- less chance for hidden data and smaller file size. With a document format like PDF, editing text is much more involved than just putting a black box over the text, so many redaction tools don't touch the text. Before releasing such documents they should be rasterized or printed. It is good practice to check your redactions with a different image viewer. -- George N. White III ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Re: evolution decoding errors
On Tue, 2020-02-11 at 12:43 +1030, Tim via users wrote: > Hi, > > Has anybody else noticed Evolution badly decode messages? > > I have several different Linux installations using different versions > of Evolution, and from time to time full-stops disappear on any of > them. If I look at the raw code, they *are* in the mail, but they're > not being rendered, and I can't see any cause for it. When they do > fail to render, that message always fails (it's consistent). > > e.g. I received a quote for $17000, which was really $170.00. And some > weblinks fail, or images don't load, in HTML mail because a dot has > gone AWOL within a link (www.example.com has become wwwexample.com). I've never seen this. Possibly related to your font or desktop theme, though it's hard to see how that would affect HTML. You're more likely to get useful answer on the Evolution mailing list ( https://mail.gnome.org/mailman/listinfo/evolution-list). The lead devel hangs out there and is pretty responsive. Note that the list is not Fedora-specific so be sure to mention the version of Evo that's giving problems (Help->About). poc ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Re: Slowdown for outgoing traffic on Realtek Ethernet interface
On Mon, 2020-02-10 at 18:33 -0600, Roger Heflin wrote: > And I am going to guess before the extra ethtool options being > configured you found were inhibiting your previous tests. Could be, but I still don't know where those options came from originally. poc ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Re: Slowdown for outgoing traffic on Realtek Ethernet interface
On Tue, 2020-02-11 at 12:33 +1030, Tim via users wrote: > On Mon, 2020-02-10 at 22:31 +, Patrick O'Callaghan wrote: > > I switched the cable that came with the router for the Cat-6 I was > > using when this problem arose originally, but without changing the > > port. > > > > It's now running at 1000Mbps. Clearly the (new) cable was at fault. > > Good to hear. It's a wonder that network cables aren't the cause of > more things, or perhaps it's not even realised the network isn't > running properly (chances are some people won't notice that their > network is running at 100 Mbs instead of 1000). Cables get dragged > about, badly kinked, crushed against the wall, and equipment-supplied > ones can be crappy. I've got one that came with equipment that has 8 > thin parallel wires, none of them are twisted together. > > And I've got a weird ISP-supplied router with 1 Gbs port and 3 100 Mbs > ports. Quite why anyone would build something like that, I don't know. > And it's hard to tell which is the gigabit port, there's no printing, > just tiny indented writing on white plastic. Who knows why ISPs do anything? In fact my ISP (Zen Internet) is pretty responsive and their support crew sound like human beings rather than droids. That said, it's clear that the thin white cable supplied with the router is simply not adequate for Gigabit Ethernet. Once I sussed the problem, it was obvious that this was the case and I should have realised it earlier. My old NAS is connected with a proper CAT-6 cable and it was going full speed. I'll be mailing Zen to let them know they should inform their customers of this. poc ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Unnecessary hard drive spin-ups
Suppose I have a "green" USB hard drive that frequently spins down the drive in order to save energy, then spins back up when a file system mounted on it is accessed. It is mounted at /var/backups. I'm logged in as a non-root user with my home directory as my current working directory. The file system containing my home directory is mounted at /home. I'm using a shell prompt via a graphical terminal emulator (xfce4-terminal, in my case). Now, I enter an 'ls' command at a bash prompt. The output doesn't appear until after my USB hard drive spins up. Note that neither /var/backups nor any directory under it is in my shell's PATH, nor is there any symlink to /var/backups in my current working directory. Thus, there should be no need to read /var/backups, yet evidently this exactly what happens. Question: why does a sleeping hard drive that has no connection with the file system I'm working with have to spin up? The behavior I would expect is that the hard drive would spin down after its file system(s) have not been accessed for a certain amount of time and would spin up if/when a file system on it is accessed. If I'd entered 'ls /var/backups' or 'cd /var/backups' or even a command that accesses all file systems (e.g., 'df') I'd totally expect the hard drive to spin up, but I don't get at all why it should spin up if I'm not accessing any data on it. I don't like this behavior for two reasons: (1) unnecessary I/O delays while waiting for a hard drive that I'm not explicitly accessing to spin up, plus (2) unnecessary wear and tear on the "green" hard drive. Other than keeping all of my hard drives spinning all the time--i.e., by using a non-green hard drive in my USB enclosure--is there any way to prevent this behavior? What might be causing it? Thanks, Dave ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Old Wine RPMs
Hi All, Now that Wine Staging has be gobbled up by Wine and Wine bugs are no longer being fixed unless you put Code Weavers on your payroll, I have had to downgrade my copy of Wine, due to regression errors Wine has reintroduced since we lost Wine Staging. What is the best way to figure out what all RPM's are used on my old version of Wine, so I can download them for when my version gets aged out of the repos? Many thanks, -T ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Re: Upgrade of F30 to F31 Appears to Have not Worked Correctly
On 5/2/20 02:20, Ed Greshko wrote: On 2020-02-04 17:45, Stephen Morris wrote: I tried Virtualbox with vm's for every version of Fedora from F29 to F31 and internet access fails in every version. The network gets an IP Address from DHCP and Firefox can access http://www.google.com.au and return results for google searches, but it cannot access the default home page of https://start.fedoraproject.org, nor can dnf refresh any of its repositories. It also doesn't matter what network setting I specify in the VM settings the same thing happens on every one of them. I'm not sure at the moment what the issue is. Well, you are running VMware Player and VirtualBox as host on Windows 10. And the guest systems are Fedora. This is opposite of what I, and I suspect others here, are familiar with. My bare metal systems are all Fedora. I run both VirtualBox and QEMU virtualization without difficulty. Yes, there are some quirks. But those quirks are most likely different if your bare metal system is Windows. IMO, you probably should seek help from those running virtualization with Windows as the host system. Thanks Ed, I'll see if I can find someone who is running the same setup as me. As a side issue, I had to reinstall vmware and virtualbox as a result of having to reinstall windows because the SSD that is windows drive c died on the weekend. After the reinstall of virtualbox the network issues I had with the original install have disappeared, but the X11 virtualbox video driver supplied by fedora does not support the 4k resolution of my monitor whereas the X11 vmware driver supplied by fedora does. Is this something that can be raised as a bugzilla? regards, Steve ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Re: Upgrade of F30 to F31 Appears to Have not Worked Correctly
On 2020-02-12 14:37, Stephen Morris wrote: > Thanks Ed, I'll see if I can find someone who is running the same setup as me. > As a side issue, I had to reinstall vmware and virtualbox as a result of > having to reinstall windows because the SSD that is windows drive c died on > the weekend. After the reinstall of virtualbox the network issues I had with > the original install have disappeared, but the X11 virtualbox video driver > supplied by fedora does not support the 4k resolution of my monitor whereas > the X11 vmware driver supplied by fedora does. Is this something that can be > raised as a bugzilla? AFAIK, and I could be wrong, the driver supplied by fedora is an opensource version of the driver supplied by VMware. Much like nouveau is the opensource of the nVidia driver. So, sure, you can raise a BZ. But not sure how long it would take, or how much effort would be put into, getting the capability added. -- The key to getting good answers is to ask good questions. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Re: Upgrade of F30 to F31 Appears to Have not Worked Correctly
On 12/2/20 17:54, Ed Greshko wrote: On 2020-02-12 14:37, Stephen Morris wrote: Thanks Ed, I'll see if I can find someone who is running the same setup as me. As a side issue, I had to reinstall vmware and virtualbox as a result of having to reinstall windows because the SSD that is windows drive c died on the weekend. After the reinstall of virtualbox the network issues I had with the original install have disappeared, but the X11 virtualbox video driver supplied by fedora does not support the 4k resolution of my monitor whereas the X11 vmware driver supplied by fedora does. Is this something that can be raised as a bugzilla? AFAIK, and I could be wrong, the driver supplied by fedora is an opensource version of the driver supplied by VMware. Much like nouveau is the opensource of the nVidia driver. So, sure, you can raise a BZ. But not sure how long it would take, or how much effort would be put into, getting the capability added. It wasn't the vmware driver I was looking at raising the issue on, it was the virtualbox driver not supporting the preferred 4k resolution of the monitor. regards, Steve ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Re: Upgrade of F30 to F31 Appears to Have not Worked Correctly
On 12/2/20 17:54, Ed Greshko wrote: On 2020-02-12 14:37, Stephen Morris wrote: Thanks Ed, I'll see if I can find someone who is running the same setup as me. As a side issue, I had to reinstall vmware and virtualbox as a result of having to reinstall windows because the SSD that is windows drive c died on the weekend. After the reinstall of virtualbox the network issues I had with the original install have disappeared, but the X11 virtualbox video driver supplied by fedora does not support the 4k resolution of my monitor whereas the X11 vmware driver supplied by fedora does. Is this something that can be raised as a bugzilla? AFAIK, and I could be wrong, the driver supplied by fedora is an opensource version of the driver supplied by VMware. Much like nouveau is the opensource of the nVidia driver. You are correct in saying the driver supplied for vmware is open source, but with the advent of Version 11 and onwards of the vmware-tools vmware require users to source and use the vmware-tools supplied by linux distributions, as opposed to a windows guest where vmware still supply the vmware-tools. regards, Steve So, sure, you can raise a BZ. But not sure how long it would take, or how much effort would be put into, getting the capability added. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org