Re: No network on first try

2018-03-15 Thread Todd Chester



On 03/14/2018 11:29 PM, Martin Wagner wrote:

TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=none
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME="Profile 2"
UUID=
ONBOOT=yes
IPADDR=192.168.1.103
PREFIX=24
GATEWAY=192.168.1.1
DNS1=127.0.0.1
SECONDARY_UUIDS=



Nothing seems wrong here.  You are using Fixed IP.
And ONBOOT is enabled

The only thing I am find a bit odd is your DNS1.
This is okay if you are running your own DNS (bind).
If not, try changing it to 8.8.8.8 (Google's DNS).

Also what is your /etc/resolv.conf ?

Mine looks like:

   # Generated by NetworkManager
   search netgear.com
   nameserver 192.168.250.1

The above is my el-cheap-o router.


Also try adding to your ifcfg-eno1
   USERCTL=yes

and see if that helps.

You can up and down eno1 from the command line with
ifdown eno1
ifup eno1

USERCTL has to be enabled for a user to do the above,
otherwise, you are stuck doing it as root





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


How do I check a process' memory usage?

2018-03-23 Thread Todd Chester

Hi All,

FC27, x64

I have a 32 bit program running on a server that may be
running out of memory.

From the command line, how do I check this?

Many thanks,
-T

This web site only made my head spin:

https://stackoverflow.com/questions/131303/how-to-measure-actual-memory-usage-of-an-application-or-process

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


Re: How do I check a process' memory usage?

2018-03-23 Thread Todd Chester

On 03/23/2018 08:55 PM, fred roller wrote:



On Fri, Mar 23, 2018 at 10:32 PM, Todd Chester <mailto:toddandma...@zoho.com>> wrote:


Hi All,

FC27, x64

I have a 32 bit program running on a server that may be
running out of memory.

 From the command line, how do I check this?

Many thanks,
-T

This web site only made my head spin:


https://stackoverflow.com/questions/131303/how-to-measure-actual-memory-usage-of-an-application-or-process

<https://stackoverflow.com/questions/131303/how-to-measure-actual-memory-usage-of-an-application-or-process>



The command:

top

should give you a live break down of processes to include % of memory 
for a process.



Hi Fred,

Thank you!

Look like it is getting close to the harry edge of a 32 bit program.

-T


$ top -o %MEM

from `man top`:

2. %MEM  --  Memory Usage (RES)
  A task's currently used share of available physical memory.

17. RES  --  Resident Memory Size (KiB)
  The non-swapped physical memory a task is using.

36. VIRT  --  Virtual Memory Size (KiB)
  The  total  amount  of  virtual  memory  used by the task.
  It includes all code, data and shared libraries plus pages
  that have  been swapped out and pages that have been mapped
  but not used.

%Cpu(s): 11.8 us,  8.8 sy,  0.0 ni, 54.3 id, 23.5 wa,  0.7 hi,  0.8 si, 
0.0 st

KiB Mem : 32710736 total,  5083192 free,  6250780 used, 21376764 buff/cache
KiB Swap: 16385020 total, 16059160 free,   325860 used. 25605772 avail Mem


  PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND
15160 root  20   0 4112444 3.672g  11784 S   2.0 11.8  40:44.60 
redacted.bin



%MEM -- Memory Usage (RES)
11.8% (0.118 * 3271036 /1e6 = 3.59818096 GiB)

RES -- Resident Memory Size (KiB)
3.672  GiB

VIRT -- Virtual Memory Size (KiB):
4112444 KiB  (4.112444 GiB)

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


Re: OT:Question on NVME disk direct access?

2018-04-04 Thread Todd Chester



On 04/02/2018 11:30 AM, Michael D. Setzer II wrote:

I'm the maintainer of the G4L disk imaging project since 2004, and I use
Fedora as the build platform. Currently using Fedora 27.

Have an issue from a user that has me baffled, so am hoping someone here
might provide some guidance.

The program boots a linux kernel, and basically uses dd to copy the
disk/partitions thru a compression program and creates an image file on ftp
server or local device.

I don't have any physical nvme disks, but using virtualbox I created a 4M
disk, and 2 - 2M partitions within it. In testing that, the 4M disk compresses 
to
a 30K file, and the 2M partitions compress to about 15K each. That is what is
expected with cleared partitions.

The user though, with a real 256G disk doesn't seem to get any compression
of the disk or partitions. Them resulting images are close to the same size as
the disks or partitions??

He can mount the partitions and see the files, so there must be something
going on that I don't see?

Would think that accessing the /dev/nvme0n1 or partitions /dev/nvme0n1p1
thru p5 would act the same as accessing /dev/sda or /dev/sdax partitions.

The images that are created pass the compression program test, so it is
reading data, but in some form that doesn't compress much, and user has
used a program to clear the unused space?

Thanks for your time, and any ideals.


Hi Michael,

This probably won't help as I don't entirely understand your
question.

My FC27 system has a LUKS encrypted 1 GB NVMe drive.  I clone
the drive to a mechanical drive as a poor man's RAID1.  NVMe
drives don't do RAID1.

My first attempt, was booting off a Live USB and do a "dd".
It was a disaster.  Took 14 hours and did not work in the
end.

Then I switched Clone Zilla to do the clone and it has worked
perfectly about 5 times now.  The mechanical clone drive boots
perfectly too.

Clone Zilla only takes 1:24 to clone.  It uses dd to clone LUKS
drives, so who knows why Clone Zilla's works and mine does not.

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


Re: OT:Question on NVME disk direct access?

2018-04-05 Thread Todd Chester



On 04/04/2018 09:43 PM, Michael D. Setzer II wrote:


Thanks for the reply. There are lots of issues with doing cloning.
Usually, doing a disk clone gets arround issues where the boot loader is
using the blkid, since it makes the blikids for the partitions the same. Problem
with that thou is that you can't have to disks in the same machine with the
same blkids. Once cloned a disk, and then rebooted it to the OS without
disconnecting, and for some reason, it mounted some partitions from the first
disk, and others from the second?

Same issue with the boot loaders using the /dev/sdx option. If you clone a
disk on /dev/sda to /dev/sdb it works fine, but if you remove sda to test if it
will boot, it will not since second disk with have sdb instead of the sda. Have
to switch cables, or change boot order in bios.

Contacted the person in charge of the nvme program, and he says it should
work as it does with the virtualbox test I did.


Chuckle.  I have the same problem.  My two backup drives and my clone
drive fit into a removable SATA drive sleeve.  If I forget to remove
the clone drive after I do the clone, Fedora will boot off the clone
drive and mix things up as you describe.  I researched as to why
this happens and it is all do to both drives having the same UUID
numbers on their partitions.

I am not in my office at the moment, but when I do get back, I can
send you a bash script I wrote to warm me when this happens.  Let
me know if you would like it.

I frequently forget to swap out the clone drive and reinsert one
of the backup drives.  The first clue is that it takes about
eight times longer to boot.



User was using a windows program called eraser to clear the drive, but from
what I have just found it seems to be a security eraser, and rights random
data to the unused space as contrasted to writing nulls. Think the program
was probable working just fine, but with completely random data the lzop
compression doesn't work well. About twice the speed of gzip but 10% larger
images. I could take a 1T disk, and compress it down to a 40G file with
Windows 10 and Fedora 25 on it.


If you what to completely blank a disk out, don't mess around with that
operating system whose name I shall not mention.  (I hear it is slow,
buggy, and expensive.)  Stay in Linux.

   # dd bs=1M if=/dev/zero of=/dev/sdx

/dev/zero is the fastest, but you also have /dev/one which is slower
and /dev/random which is really slow.



My classroom setup also, had and NFTS clone image file on a separate
partitions, and had an grub boot option, that would reimage the 160G
Windows 10 partition in about 12 minutes.  About a 20G image file.

Have a program on the g4l disk that will zero out the unused space, so have
asked the user to try using that to clean disk, and then make image.

Hopefully, that will result in the expected compression.


Take a look at Clone Zilla, it does all that for you:
http://clonezilla.org/

The author is extremely responsive to questions too.

I use Clone Zilla with its rescue mode (advanced setting) on
NTFS drives with bad sectors on them ALL THE TIME.

What ?? Yes, I have to work on THAT operating system whose name I
shall not mentions too.  My customer base is mainly small
businesses and they can not get apps to run on anything other
than THAT operating system.  It is what it is.

Tip: stay the hell away from Intel SSD drives.  I use to sell them.
They are garbage.  I took around a $2000 loss so far having to replace
them as they go bad in my customer's machines.

I switched to Samsung SSD's and they are rock solid.  Not a
single failure yet.  They are about 20% more expensive than
Intel's drives, but when your have to replace them for free
and just before they brick and lose your customer's data,
they become extremely expensive.

Samsung's NVMe drives are awesome.  (My wife named them NeVada
Medical Examiner drives to remember the abbreviation.)

Tip: try to size your SSD drives such that they have at least 50%
or more free space on them.  This improves your wear life.  And
the wear leveling algorithm on the drive will adore you.




Thanks again for the info.


You are most welcome.

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


Re: OT:Question on NVME disk direct access?

2018-04-05 Thread Todd Chester



On 04/05/2018 01:15 PM, Michael D. Setzer II wrote:

I like making image files, and include the date as back of the image name.
That way, I can have multiple backups of images, and in the event of
something going wrong, can restore older versions on other disk to recover
files that might have been deleted that should not have been.


CloneZilla will do a disk to image, including a network location
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: OT:Question on NVME disk direct access?

2018-04-05 Thread Todd Chester



On 04/05/2018 01:15 PM, Michael D. Setzer II wrote:

G4L includes ntfsclone for windows paritions, and
fsarchiver for that and others, and it can backup data only, and is faster.
Also, has options to change size of partitions. Bit level restores exactly the
same size, but can be resized by other utilities afterwards.


Interesting.  I am going to have to try out G4L.  CloneZilla will
not do resizing.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: printer and Fedora support.

2018-04-25 Thread Todd Chester



On 04/25/2018 06:41 PM, Rick Stevens wrote:

On 04/25/2018 03:13 PM, home user via users wrote:

Good inputs everyone.  Thank-you.

I anticipated Brother would be one recommended company.  HP was slightly 
surprising.  Brother does offer LED printers and multi-functions.  I have not 
yet found any LED printers from HP.  Does HP make LED color printers and 
multi-functions?

The only connection I'll want between workstation and printer is via USB cable. 
 No network.

An HP laser desktop for 50-100?  Is that color, and is it multi-function?

My experience with support matches that of ToddAndMargo.

After doing back-ups this evening and upgrading to Fedora-27 tomorrow, I'll 
start searching Brother and HP.  I hope their searches are smarter than the job 
search in this state's job search site, and that I can find what I want without 
busting my budget too severely.


Don't forget to look at Xerox. One is the WorkCentre 6027. It's LED,
claims 1200 x 2400 dpi and their website has Linux drivers. I have no
experience with it, but it may fit the bill for you.


Okidata sells LED printers, but they are expensive.  On the
other hand, they never break.  Extraordinary tech support too.
(Disclaimer: I sell Okidata.)
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Firefox ESR for F28?

2018-05-03 Thread Todd Chester



On 05/02/2018 01:53 PM, Terry Polzin wrote:
Is there a Firefox ESR for F28,  I just upgraded and have found that 
firefox and java are having certificate issues trying to run a JNLP 
application.


Hi Terry,

Not the question you asked (what? me go off on a tangent???),
but I use "Brave" as my second go to browser.  (Firefox is my
first as I love several plugins.)

Brave's claim to fame is that is has built in ad blocking.
It is apparently (watch the weasel word) is written by a
guy that use to work for Mozilla.

And it does stand on it own.  If I can't get something
to working in Firefox, I go to Brave.

https://brave.com/download/

And it has a 64 bit RPM for Fedora

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


vsftpd stopped allow logins after fc28 upgrade

2018-05-22 Thread Todd Chester

Hi All,

After upgrading to FC 28 from FC 27, my customer's
vsftpd server stopped allowing ftp logins
from anywhere.

# systemctl status vsftpd

shows it running and happy (I tried stopping and
restarting several times)

There is no complaining in

# journalctl -f

when I attempt to make a connection.

I just get told something is wrong with the
username or password.

SELinux alerts are quiet.

What the heck 

-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/DMGC3Y7LC2KK5WWUPTK2YOBFGC54IKZK/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 03:33 PM, Ed Greshko wrote:

On 05/24/18 05:59, ToddAndMargo wrote:



You said you get a message about a bad username or password.  What is the exact 
error?


Nothing.  No motion at all.

I do get motion from other things.  But dead quiet when Windows
(Cobian Backup add Windows Explorer) is trying to log in.


You can check the firewall quite easily with firewall-config.


I will.  I will try to log in from localhost first

Thank you for all the help!

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/IVZSCDTZRYREDRHU7DXXS2H3NXANZLEH/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 08:09 PM, Joe Zeff wrote:

On 05/23/2018 06:59 PM, Todd Chester wrote:



On 05/23/2018 03:33 PM, Ed Greshko wrote:

On 05/24/18 05:59, ToddAndMargo wrote:


You said you get a message about a bad username or password.  What is 
the exact error?


Nothing.  No motion at all.


When this happens, can you log in from a CLI console?  If so, there 
should be something in the journal about a failed login attempt.


Oh yes.  CLI, SSH, xRDP, Thunar (sftp).  The only
thing now working beautifully is vsftp.




___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/BFXKRGQ6ZIB3HTQWE7FZSRVBXDNNREEN/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 08:20 PM, Ed Greshko wrote:

On 05/24/18 11:18, Todd Chester wrote:



On 05/23/2018 08:09 PM, Joe Zeff wrote:

On 05/23/2018 06:59 PM, Todd Chester wrote:



On 05/23/2018 03:33 PM, Ed Greshko wrote:

On 05/24/18 05:59, ToddAndMargo wrote:



You said you get a message about a bad username or password.  What is the exact
error?


Nothing.  No motion at all.


When this happens, can you log in from a CLI console?  If so, there should be
something in the journal about a failed login attempt.


Oh yes.  CLI, SSH, xRDP, Thunar (sftp).  The only
thing now working beautifully is vsftp.



Did you mis-type?  Did you mean to say "The only thing *not* working 
beautifully is
vsftp?".


Oops.  Yes it was a mistype.


Did you try

ftp localhost?


Just did and I got right in.  I ssh in and then did "ftp localhost".
Ahh Poop!  the "user" command tells me I am not connected

`firewall-config` is loading over `ssh -X` as I write this.
It is having a devil of a time scrolling.  And it just crashed.
I did get to see that ftp was not checked off



___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/ULXGXKFNW4FYZAT4ZRAXUEGGDIQ37RKK/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 08:56 PM, Ed Greshko wrote:

I did not realize you were doing this remote from the server.



I was on site yesterday.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/ALACX3LZLIPFAU42FOJV2S5KYJPT6GTS/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 08:56 PM, Ed Greshko wrote:

# firewall-cmd --info-zone=FedoraWorkstation
FedoraWorkstation (active)
   target: default
   icmp-block-inversion: no
   interfaces: enp0s3
   sources:
   services: dhcpv6-client ssh samba-client mdns ftp
   ports: 1025-65535/udp 1025-65535/tcp
   protocols:
   masquerade: no
   forward-ports:
   source-ports:
   icmp-blocks:
   rich rules:

note that services shows "ftp".



Ah Ha!

# firewall-cmd --info-zone=FedoraWorkstation
FedoraWorkstation
  target: default
  icmp-block-inversion: no
  interfaces:
  sources:
  services: dhcpv6-client ssh samba-client
  ports: 1025-65535/udp 1025-65535/tcp
  protocols:
  masquerade: no
  forward-ports:
  source-ports:
  icmp-blocks:
  rich rules:


# systemctl status vsftpd
● vsftpd.service - Vsftpd ftp daemon
   Loaded: loaded (/usr/lib/systemd/system/vsftpd.service; enabled; 
vendor pres>

   Active: active (running) since Tue 2018-05-22 21:42:26 PDT; 24h ago
  Process: 13218 ExecStart=/usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf 
(code=exite>

 Main PID: 13219 (vsftpd)
Tasks: 1 (limit: 4915)
   Memory: 1.3M
   CGroup: /system.slice/vsftpd.service
   └─13219 /usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf

May 22 21:42:26 server.storall.local systemd[1]: Stopped Vsftpd ftp daemon.
May 22 21:42:26 server.storall.local systemd[1]: Starting Vsftpd ftp 
daemon...

May 22 21:42:26 server.storall.local systemd[1]: Started Vsftpd ftp daemon.

Systemd sure thinks it is a service



# firewall-cmd --zone=public --add-port=21/tcp --permanent
Warning: ALREADY_ENABLED: 21:tcp
success

# firewall-cmd --zone=public --add-port=20/tcp --permanent
Warning: ALREADY_ENABLED: 20:tcp
success

# firewall-cmd --zone=public --add-port=10090-10100/tcp --permanent
Warning: ALREADY_ENABLED: 10090-10100:tcp
success
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/EHEFWD43QZ7JPHJJK5WCRB4VWIHKTAKE/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 10:13 PM, Ed Greshko wrote:

You need to be certain what zone is actually being used.

That is why I asked you to run...

firewall-cmd --get-active-zones

Are you certain the "public" zone is assigned to the interface?

I have one system here running KDE and for sure the active interfaces are in the
"public" zone.



# firewall-cmd --get-active-zones
public
  interfaces: br0 eno1


Yup, that is the Ethernet card and the bridge for qemu-kvm

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/MK654MGGANJ3ETX4LY5RYRFSTFUKQRZO/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 10:32 PM, Ed Greshko wrote:

telnet 192.168.1.107 21



$ telnet 192.168.202.10 21
Trying 192.168.202.10...
Connected to 192.168.202.10.
Escape character is '^]'.
500 OOPS: tcp_wrappers is set to YES but no tcp wrapper support compiled in
Connection closed by foreign host.


And "tcp_wrappers is set to YES but no tcp wrapper support compiled"
was that same error message Cobian Backup reported

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/XECDUL2OOZC5RVB3O7BKQ5XM2IAW463V/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 11:07 PM, Ed Greshko wrote:

On 05/24/18 13:56, Todd Chester wrote:



On 05/23/2018 10:32 PM, Ed Greshko wrote:

telnet 192.168.1.107 21



$ telnet 192.168.202.10 21
Trying 192.168.202.10...
Connected to 192.168.202.10.
Escape character is '^]'.
500 OOPS: tcp_wrappers is set to YES but no tcp wrapper support compiled in
Connection closed by foreign host.


And "tcp_wrappers is set to YES but no tcp wrapper support compiled"
was that same error message Cobian Backup reported


A.  You got that error message before and just now telling the list 
about it?


It came from Cobian Backup and Cobian's errors are typically
meaningless.  Sorry.


Go to /etc/vsftpd and remove all references to tcp_wrappers.


mine is /etc/vsftpd/vsftpd.conf

And that fixed it.  Thank you!  I owe you one!




FWIW, I don't use tcp_wrappers.


I was just using the defaults
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/SCFP7Y7QDBZORX5ZRMZINXP2KO5E3GEH/


Re: vsftpd stopped allow logins after fc28 upgrade

2018-05-23 Thread Todd Chester



On 05/23/2018 11:30 PM, Ed Greshko wrote:

On 05/24/18 14:25, Todd Chester wrote:



On 05/23/2018 11:07 PM, Ed Greshko wrote:

On 05/24/18 13:56, Todd Chester wrote:



On 05/23/2018 10:32 PM, Ed Greshko wrote:

telnet 192.168.1.107 21



$ telnet 192.168.202.10 21
Trying 192.168.202.10...
Connected to 192.168.202.10.
Escape character is '^]'.
500 OOPS: tcp_wrappers is set to YES but no tcp wrapper support compiled in
Connection closed by foreign host.


And "tcp_wrappers is set to YES but no tcp wrapper support compiled"
was that same error message Cobian Backup reported


A.  You got that error message before and just now telling the list 
about it?


It came from Cobian Backup and Cobian's errors are typically
meaningless.  Sorry.


Go to /etc/vsftpd and remove all references to tcp_wrappers.


mine is /etc/vsftpd/vsftpd.conf

And that fixed it.  Thank you!  I owe you one!


Good.

Where do I go to collect?   :-) :-)


This would be a good place

:-)

I am a jack of all trades.  it astounds me some of
the stuff I know.



FWIW, I don't use tcp_wrappers.


I was just using the defaults


Also, tcp_wrappers support was removed in January   From the changelog

* Fri Jan 05 2018 Ondřej Lysoněk  - 3.0.3-16
- Disable tcp_wrappers support
- Resolves: rhbz#1518796
- Fix default value of strict_ssl_read_eof in man page


That explains it.

 Ah [expletive deleted] !!! 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/3LX7VWUOPHGTUMGQI2ZAW622DIJECHNN/


Re: tip: star tech PEXUSB311AC2

2018-05-31 Thread Todd Chester



On Thu, May 31, 2018 at 9:44 AM, ToddAndMargo  wrote:

Also, a bit off topic, but the Star Tech PEXUSB311AC2

 StarTech.com Dual Port USB 3.1 Card – 1x USB-C – 1x USB-A – 10Gbps per
port – Expansion Card – USB 3.1 PCI-E Card – USB 3 PCI

Crashes your file system on large file transfers and crashes your
boot if anything is plugged into it when you boot.

Anyone know of a card that works right?  How about Siig?



On 05/31/2018 01:24 PM, Roger Heflin wrote:

I have had issues like that that tracked back to the usb card not
having enough power and needing the extra power adapter connected, so
you may want to try that.   Especially if anything on the card may be
using a lot of power (I have had web cams and hard disks both cause
it).



I have had the same experience.  I only use cards with an external power
connector.

I am thinking of trying Siig.  I have not had a lot of luck with
star tech's USB adapter cards
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/267ZBWVDUP4BS5HHRJT23LTCTBMGJ5AF/


Re: centos7 -- webapp setup

2018-06-27 Thread Todd Chester



On 06/27/2018 11:19 AM, bruce wrote:

Also, given that centos is behind in terms of php/python/etc..  are
there "better" OS/platforms to use?


Hi Bruce,

Oh good golly!  CentOS (RHEL) is a MISERABLE bug riddled OS.
I used  it for years and almost went INSANE.  Simply put, RHEL is
an Anti-Kaisen (Kaisen = Constant Improvement) OS.  They
take a snapshot of a defunct versions of Fedora and freeze it
in place.  The last straw was when RHEL ate my business
contacts in Osmo every time I shut down.  Mind you Osmo
has this issue fixed but could do nothing for me as
RHEL is wildly out of date.  That and it would not
run on modern motherboards.

Keep in mind the following rule.  Every OS is "stable"
*** if *** it runs the programs you want to use properly.
And you can freeze ANY OS by turning off the updates
(like RHEL does), even buggy M$ Windows (Shut Up 10).

So where to turn?  I have converted all of my computer
and all of my computers to Fedora (all on 28 now).
I adore Fedora.  They actually fix things and keep
after bugs and problems.  In my experience, because
of such, Fedora is about 50 times (not exaggerating)
more stable that freeze-all-the-bugs-in-place RHEL.

Don't use RHEL or clones (CentOS), if you want things
to be kept after.

Oh and you will notice that your USB 2 is 4 to 5 times faster
and USB pass through actually works on qemu-kvm under Fedora
that RHEL.  And you can actually use it on a modern motherboard!

So, pick which OS has the support you are after.

After converting to Fedora, I had a case of the out-right-laughter
over being so tickled over all the hundreds of bugs that were fixed.
VLC even worked right!

And the irony did not miss me that kvm is a Red Hat project
and they can't run their fixes and upgrades on RHEL either.
qemu-kvm is sweet under Fedora, but a bug riddled mess under RHEL.

Wine Staging worked sweet under Fedora too.

-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/CV7HBB56NRSNACQLQDPPRNO46XCQIUJQ/


Re: centos7 -- webapp setup

2018-06-27 Thread Todd Chester

Rick,

I have used Cent OS and Scientific Linux for more years
than I can remember.   I do know how it works.  Too
well.  If you don't pay for it, they don't fix it.  This is
the way their open source model works.  Same with Code
Weavers and Wine.  (I don't use Wine.  I use Wine Staging,
which comes with Fedora. Tons bugs fixed.)

Yes, Osmo was the problem.  I made that very clear. Osmo
jumped on the problem and fixed it.  But could do nothing for me
as RHEL and Clones uses out dated, bug riddled version
of software that Osmo need to run properly.

Yes Fedora has its issues.  In my experience 1/50'th of RHEL.
And the turn around time for Fedora to fix bugs is a few
months.  RHEL's turn around time is 7 years (no fooling!)
to NEVER.  I have posted a good 50 bugs over the years.
They don't care.

Fedora, unlike RHEL and friends, works on their bugs and
fixs them.   RHEL usually can not, even if they want to,
which they usually do not.

KVM is sweet running on Fedora, but a miserable bug riddled dog
on RHEL and friends, as even Red Hat is too out of date to
run their current versions.

My experience is that Fedora has 1/50 the issues that RHEL does.
If yo do not keep after your bugs, RHEL is what happens to you.
I almost went INSANE !!!

Now how to use RHEL and Clones.

1) find a piece of old software that will never
   need an update.  New software won run on it.

2) find a software vendor that SPECIFICALLY develops
   for RHEL

3) buy an old motherboard, as new ones are not supported.
   Don't expect new motherboard performance.

4) set and forget.  (You can do this with any OS by
   turning off the updates.)

Basically, you use RHEL as an appliance.  Once it
is cooked, do expect to season it.

If you want Kaisen (constant improvement), Fedora
is your man.  If you want a set and forget appliance,
consider RHEL.

Fedora is a shining example of Kaisen.  RHEL is
a miserable example of what happens when you don't
keep after your stuff.

Both have their uses.

By the way, my new motherboard, Supermicro X11SAE-M won't
boot REHL and clones properly.  And it only cost me over
2000.00 U$D in free warranty work to figure it out.  RHEL
couldn't give a poop about the bug report.  Ya, they told
me they did not have access to the hardware.  I told them
the phone number to call at Supermicro to get all the free
hardware they needed (Supermicro supports vendors like Red Hat)
and they still wouldn't fix it.  (Is okay, Fedora run beautifully
on the server.)  Funny, but not so much, RHEL and clones works
fine off a Live USB on the X11SAE-M, which mean a timing issue.
(Yes I documented it out the nose.)  If you were to say I
was "angry" over the whole issue, "angry" does not even begin to
describe it.

Yup.  I know how the system works.

And all I have to say about RHEL and clones is, been there,
done that, never want to do it again.  I TOOK IT IN THE SHORTS.

-T

You should have seen the way Fedora fix the bugs in saned
for me.  Sane is now a thing of beauty.  Only took a
couple of months.  Too bad if you want to use a scanner
in RHEL.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/MJXTMNBOM6ZBTDAOBMIQR5ULSSRRKTWK/


Re: centos7 -- webapp setup

2018-06-27 Thread Todd Chester



On 06/27/2018 04:29 PM, Tim via users wrote:

Allegedly, on or about 27 June 2018, Rick Stevens sent:

Almost no-one running a commercial venture runs Fedora because of
potential stability issues AND the fact that updates are only
available for Fedora for "current release less one" (updates stopped
for F26 one month after F28 came out). RHEL and CentOS generally have
a 3-year or more lifespan. No, they're not current, but they ARE
supported. Fedora 26 isn't, for example. F27 will be supported until
one month after F29 comes out.


I can attest to that.  If you run anything that has a database, even
websites and email services, keeping all that going across an OS
upgrade is a real pain.  With Fedora having such a short lifespan, that
amount of pain means you end up leaving servers running with ancient
un-updated software.



So can I.  Usually under RHEL and friends there is some new feature on
a piece of software you can't live without and it doesn't run under 
RHEL.  I have had far more problems with that that Fedora's upgrade 
schedule.


Don't forget you can turn off updates and live with what you have.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/6T3IIWVGGFUQP3VALPZ3QTZY532F7GME/


Re: off-topic : Adobe reader doesn't show file window

2018-06-29 Thread Todd Chester



On 06/29/2018 04:54 PM, Ed Greshko wrote:

On 06/30/18 06:10, ToddAndMargo wrote:

You actually got Adobe reader to work at all.  Wow!



Even though I use okular, I just installed AdbeRdr9.5.5-1_i486linux_enu.rpm for
testing only on an F28 system running fully updated KDE.

It installed and ran just fine from the KDE menu as well as from the command 
line.

FWIW, okular does what I need it to do and I really don't like (personal 
preference)
the 80+ i686 packages it needs to install to run.


I run WineStaging .686, so I got a ton of i686 packages
to support it.  I wonder how many more Adobe reader would add?



___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/UQR3CBKQ4VPT2SLNFFNG32ROQXMRZERO/


Re: off-topic : Adobe reader doesn't show file window

2018-06-29 Thread Todd Chester



On 06/29/2018 10:48 PM, Ed Greshko wrote:

On 06/30/18 13:35, Todd Chester wrote:



On 06/29/2018 04:54 PM, Ed Greshko wrote:

On 06/30/18 06:10, ToddAndMargo wrote:

You actually got Adobe reader to work at all.  Wow!



Even though I use okular, I just installed AdbeRdr9.5.5-1_i486linux_enu.rpm for
testing only on an F28 system running fully updated KDE.

It installed and ran just fine from the KDE menu as well as from the command 
line.

FWIW, okular does what I need it to do and I really don't like (personal 
preference)
the 80+ i686 packages it needs to install to run.


I run WineStaging .686, so I got a ton of i686 packages
to support it.  I wonder how many more Adobe reader would add?


It adds the following to a totally x86_64 system

     Install atk-2.28.1-1.fc28.i686    @fedora
     Install avahi-libs-0.7-12.fc28.i686   @fedora
     Install bzip2-libs-1.0.6-26.fc28.i686 @fedora
     Install cairo-1.15.12-2.fc28.i686 @updates
     Install cups-libs-1:2.2.6-15.fc28.i686    @updates
     Install dbus-libs-1:1.12.8-1.fc28.i686    @updates
     Install expat-2.2.5-3.fc28.i686   @fedora
     Install fontconfig-2.13.0-4.fc28.i686 @updates
     Install freetype-2.8-10.fc28.i686 @fedora
     Install fribidi-1.0.2-1.fc28.i686 @updates
     Install gdk-pixbuf2-2.36.12-1.fc28.i686   @fedora
     Install gdk-pixbuf2-modules-2.36.12-1.fc28.i686   @fedora
     Install gdk-pixbuf2-xlib-2.36.12-1.fc28.i686  @fedora
     Install glib2-2.56.1-4.fc28.i686  @updates
     Install glibc-2.27-19.fc28.i686   @updates
     Install gmp-1:6.1.2-7.fc28.i686   @fedora
     Install gnutls-3.6.2-3.fc28.i686  @updates
     Install graphite2-1.3.10-5.fc28.i686  @fedora
     Install gtk2-2.24.32-2.fc28.i686  @fedora
     Install harfbuzz-1.7.5-3.fc28.i686    @fedora
     Install jasper-libs-2.0.14-5.fc28.i686    @updates
     Install jbigkit-libs-2.1-12.fc28.i686 @fedora
     Install keyutils-libs-1.5.10-6.fc28.i686  @fedora
     Install krb5-libs-1.16.1-7.fc28.i686  @updates
     Install libICE-1.0.9-12.fc28.i686 @fedora
     Install libSM-1.2.2-8.fc28.i686   @fedora
     Install libX11-1.6.5-7.fc28.i686  @fedora
     Install libX11-xcb-1.6.5-7.fc28.i686  @fedora
     Install libXau-1.0.8-11.fc28.i686 @fedora
     Install libXcomposite-0.4.4-12.fc28.i686  @fedora
     Install libXcursor-1.1.15-1.fc28.i686 @fedora
     Install libXdamage-1.1.4-12.fc28.i686 @fedora
     Install libXext-1.3.3-8.fc28.i686 @fedora
     Install libXfixes-5.0.3-5.fc28.i686   @fedora
     Install libXft-2.3.2-8.fc28.i686  @fedora
     Install libXi-1.7.9-6.fc28.i686   @fedora
     Install libXinerama-1.1.3-10.fc28.i686    @fedora
     Install libXrandr-1.5.1-5.fc28.i686   @fedora
     Install libXrender-0.9.10-5.fc28.i686 @fedora
     Install libXt-1.1.5-7.fc28.i686   @fedora
     Install libXxf86vm-1.1.4-7.fc28.i686  @fedora
     Install libblkid-2.32-2.fc28.i686 @fedora
     Install libcap-2.25-9.fc28.i686   @fedora
     Install libcom_err-1.43.8-2.fc28.i686 @fedora
     Install libdatrie-0.2.9-7.fc28.i686   @fedora
     Install libdrm-2.4.92-1.fc28.i686 @updates
     Install libffi-3.1-16.fc28.i686   @fedora
     Install libgcc-8.1.1-1.fc28.i686  @updates
     Install libgcrypt-1.8.3-1.fc28.i686   @updates
     Install libglvnd-1:1.0.1-0.7.git5baa1e5.fc28.i686 @updates
     Install libglvnd-glx-1:1.0.1-0.7.git5baa1e5.fc28.i686 @updates
     Install libgpg-error-1.31-1.fc28.i686 @updates
     Install libidn-1.34-3.fc28.i686   @updates
     Install libidn2-2.0.5-1.fc28.i686 @updates
     Install libjpeg-turbo-1.5.3-5.fc28.i686   @updates
     Install libmount-2.32-2.fc28.i686 @fedora
     Install libpciaccess-0.13.4-8.fc28.i686   @fedora
     Install libpng-2:1.6.34-3.fc28.i686   @fedora
     Install libselinux-2.8-1.fc28.i686    @updates
     Install libsepol-2.8-1.fc28.i686  @updates
     Install libstdc++-8.1.1-1.fc28.i686   @updates
     Install libtasn1-4.13-2.fc28.i686 @fedora
     Install libthai-0.1.27-2.fc28

sed and grep stopped working!

2018-08-17 Thread Todd Chester

Hi All,

grep and sed stopped working!  I dnf re-installed them
both. No joy

What the heck (not my "actual" word)?


  H 

How do I fix this?

Many thanks,
-T


uname -r
4.17.9-200.fc28.x86_64

# rpm -qa grep
grep-3.1-5.fc28.x86_64

# rpm -qa sed
sed-4.5-1.fc28.x86_64



$ echo "a-b-c" | sed -e 's/-//g'


Workaround:
$ echo "a-b-c" | perl -pe 's/-//g'
abc

$ echo "a-b-c" | perl6 -pe 's:g/\-//'
abc



$ ls -al /tmp | sed -n 3,4p


Workaround:
$  ls -al /tmp  | perl6 -ne ".say if 3 <= ++$ <= 4"
dr-xr-xr-x. 19 root root278 Apr 11 20:43 ..
drwxr--r--.  2 todd users40 Aug 17 00:08 ARI

$ x=3; y=4; ls -al /tmp  | perl6 -ne ".say if $x <= ++$ <= $y"
dr-xr-xr-x. 19 root root278 Apr 11 20:43 ..
drwxr--r--.  2 todd users40 Aug 17 00:08 ARI



# echo "abc" | grep  "ab"


Work around:
$ echo "abc" | ack "ab"
abc





___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/JX5UFWW53HVLKZEPLYNMK5YKOGCAOY2V/


Re: sed and grep stopped working!

2018-08-17 Thread Todd Chester



On 08/17/2018 12:17 AM, Todd Chester wrote:

Hi All,

grep and sed stopped working!  I dnf re-installed them
both. No joy

What the heck (not my "actual" word)?


  H 

How do I fix this?

Many thanks,
-T


And now that you all write me back, they mysteriously started
working again.   AAHH!

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/AOH7KAD4HYEWQNCWNV7Z42FSS4YSAVAY/


Re: I need iptables ftp nat help

2018-08-23 Thread Todd Chester



On 08/23/2018 12:14 PM, Mike Wright wrote:

On 08/23/2018 11:50 AM, ToddAndMargo wrote:

On 08/23/2018 11:41 AM, Mike Wright wrote:

On 08/23/2018 11:23 AM, ToddAndMargo wrote:


Just ftp client and I want to support both active and passive mode



This covers both:

http://www.devops-blog.net/iptables/iptables-settings-for-outgoing-ftp

:m


Hi Mike,

That is a description of what is happening.

I am looking for Fedora specific iptables instructions.


iptables rules are processed by the kernel.  They are distribution 
agnostic.


:m


Yippee!!

I still the directions.  What worked on RHEL, does not
work on Fedora, so what am I doing wrong?

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/WADDN34MBMZJ4N4ZMUJ74EAMXS3VVZEY/


Re: convert to EUFI boot?

2018-09-04 Thread Todd Chester



On 09/03/2018 04:48 AM, Richard Shaw wrote:
I'm planning on upgrading my computer to a Ryzen 5 later this year. I 
think what I'm going to do since I'm upgrading to a M.2 SSD at the same 
time is:



Hi Richard,

Disclaimer: I am a Samsung re-seller.

Just some tips on that.

1) Buy a Samsung NVMe SSD drive.  I have gone through hell trying
   to replace everyone one with Samsung at my own expense.
   Especially stay away from Intel.  I took it in the shorts
   over that one.  Cost me a few thousand dollars of free
   parts and labor to remove all of them.  All but the very
   oldest ones that work perfectly.

2) size you drive such that it will have 1/2 of its capacity open.  This
   is because there is a computer on the drive you don't know about
   that is constantly moving data around so that no one spot gets
   over used.  It is called "wear leveling".  And it work well only
   if your drive is 1/2 or more empty.

3) make sure you have proper air circulation across it.  They get hot
   and heat is your enemy.

I have a Samsung 960 NVMe drive in my office computer.  Only holy
molly it is fast!  Fedora 28 takes 7 seconds to boot up after I
enter the password prompt.  The 960 has been replaced with the 970.

-T



___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Open office (LibreOffice) has disappeared from FC30.

2018-09-13 Thread Todd Chester



On 09/13/2018 05:28 PM, George R Goffe via users wrote:

Hi,

I'm hoping this isn't a UFU (user foul up) but I'm trying to use openoffice but 
it is gone from my FC30 system.


Have I missed something here?

Best regards,

George...


Hi George,

You should migrate from Open Office to Libre Office.  Open Office
is riddled with bugs and is not maintained.

As for Libre Office, they have not been good as of late
about fixing bugs, but it is still a lot better than OO

Get the RPM's from

https://www.libreoffice.org/

-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: can I clone from a usb flash drive to an NVMe drive?

2024-05-02 Thread Todd Chester via users



On 4/29/24 17:27, ToddAndMargo via users wrote:

Hi All,

I am making up a USB flash from of Fedroa 40 MATE for
a customer to play with.

If he likes it, can I clonezilla clone it over
to his brand new NVMe drive (gpart it to expand
the extents)?

-T


It worked !
--
___
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
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: OT: motherboard

2024-07-12 Thread Todd Chester via users

On 7/11/24 20:56, Frank Bures wrote:
Have you looked at TYAN recently? I have not used them since I retired 
in 2013 but before that I used them quite heavily for multi-socket CPU 
setups.  They supported up to 4 sockets and huge amount of ECC RAM.  
They were not cheap though.  Very reliable too.  Never had a problem 
with TYAN Mo-Bos.


Cheers
Frank


Hi End, no fooling!   I sent them a letter asking
them about uATX and ECC and W11/12 support.

Thank you!
--
___
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
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: OT: motherboard

2024-07-12 Thread Todd Chester via users



On 7/12/24 01:41, Barry Scott wrote:




On 11 Jul 2024, at 22:20, ToddAndMargo via users 
 wrote:

  I am trying to get
ahead of Windows 12's idiot hardware requirements


All I can find is rumours for the hardware requirements.
Do you know of a Microsoft document with any details?

Barry


All I get is rumors too.  What I do know it
that the hardware requirements will be the same
as W11 plus the addition of an AI capable
processor.

My current processor does not meet W11's
requirements.
--
___
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
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: shudown

2018-10-25 Thread Todd Chester via users



On 10/25/18 7:49 AM, Patrick Dupre wrote:

/sbin/shutdown -h +70


Hi Patrick,

1) open a command prompt (terminal)

2) run the following command:

   su root -c "/sbin/shutdown -h +70"

3) if it does not shutdown, please copy and paste what
   appeared after running the command.

-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Is your USB3 slow?

2018-10-31 Thread Todd Chester via users



On 10/31/18 12:34 PM, Ed Greshko wrote:

On 11/1/18 1:23 AM, ToddAndMargo via users wrote:

What was the file system of your target usb flash drive?
Ext4?  NTFS?


NTFS

I can reformat if need be.




Thanks for the feedback!


No problem, used NTFS too.  And I have several sticks I
can reformat to ext4 and retest.

I am suspicious of qemu-kvm being the culprit.
But ...


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Is your USB3 slow?

2018-10-31 Thread Todd Chester via users



On 10/31/18 12:35 PM, Samuel Sieb wrote:

On 10/30/18 3:45 PM, ToddAndMargo via users wrote:

FC28, x86
Xfce 4.12

I am trying to copy he new Xfce Live ISO (1.4 GB) over
to a Samsung usb 3.1 stick.  It is taking FOREVER.  And
this is typical.

Is your usb also slow by any chance?


My kernel is 4.18.16-200.fc28.x86_64

I just copied a 3GB iso to a FAT32 partition:
real    2m6.738s

Copying to EXT4 and syncing took almost 3 mins.

So I don't see this problem with my laptop.

Check the mount options, maybe there is something like sync set, 
although it still shouldn't take that long.

Try running "iostat 5" while it's copying to see how much I/O is happening.


Thank you!

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: (OT) Beeping drives used for backup

2019-03-01 Thread Todd Chester via users



On 2/28/19 4:41 PM, Jonathan Ryshpan wrote:
I have persistent problems with small USB hard drives that I use for 
backup. The backup utility is the rsnapshot, which is set up to back up 
my system incrementally every day starting about 3:00am. The backup 
fails occasionally; when this happens the drive's file system is usually 
corrupted, which can be repaired using fsck. So far, there has been no 
perceptible loss of data.


The drive also produces an occasional beeping sound: pitch about 340 cps 
(my best guess using a tuner), lasting about 250 msec. The beeps happen 
when the drive is in use, particularly when it's busy, and never when 
the drive is starting up. The problem has happened on at least 4 
different drives:

WD My Passport 1 Tb
Seagate Backup Plus 2 Tb
Seagate Ultra Slim 2 Tb
Seagate Ultra Slim 2 Tb (replacement for above)
It starts about 6 months to a year after the drive goes into use and 
persists thereafter. When the problem gets bad, I replace the drive.


The latest drive is a replacement given to me by Seagate; they said that 
the drive had failed and had to be replaced, which they did, since it 
was still under warranty. It's not exactly new by refurbished. It 
started to beep after being used for about 4 days.


Does anyone have an idea what's going on or how to prevent it?

Many Thanks - Jon


Hi Jonathan,

I have noticed that my customers who go out and buy external
USB mechanical drive drives for backup never have any
"last".  They always go bad.  Some so bad that they hang
the USB port and the computer won't boot or is really
slow.  SMART sheds tears.  The drives and just *TOO* cheap.

What I have been lately, is building my own with drives
with Rosewill backup cases (RX304-APU3-35B).  I populate
them with Western Digital drives.  Had one Blue drive
go bad.  I have since switched to Red and Black drives
and haven't had an issue.

The Rosewell cases come with USB 3.0 and eSATA including
an internal eSata bracket and eSata and USB cables.
And a temperature controlled cooling fan, which add a
YUGE amount to reliability.  They are a class act.
El-chepo-o external drive just cook in place, probably
why they go bad so fast.

Oh and be careful of WD's tech support.  It STINKS.
But their drives are the most available at my suppliers and
their reliability is better than Seagate, based on cloud
studies I have seen.

HTH,
-T


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: MTP?

2019-03-28 Thread Todd Chester via users



On 3/28/19 1:16 PM, Jonathan Ryshpan wrote:

On Thu, 2019-03-28 at 09:34 -0700, ToddAndMargo via users wrote:

On 3/28/19 6:24 AM, Jonathan Ryshpan wrote:

On Fri, 2019-03-22 at 21:44 -0700, ToddAndMargo via users wrote:

My notes:

Fedora and MTP devices:

   # dnf install gvfs-mtp gvfs-fuse
   # groupadd fuse
   # gpasswd --add tony fuse

reboot


To find the name of the device:
   $ gio mount -li

   Mount(0): KYOCERA Android -> mtp://KYOCERA_KYOCERA_Android_615756870/
      Type: GProxyShadowMount (GProxyVolumeMonitorMTP)
-->    default_location=mtp://KYOCERA_KYOCERA_Android_615756870/
      themed icons:  [phone]
      symbolic themed icons:  [phone-symbolic]  [phone]
      can_unmount=1
      can_eject=0
      is_shadowed=0


To mount my phone (get from Nautilus or Thunar):

   $ gio mount mtp://KYOCERA_KYOCERA_Android_615756870/
   $ ls -al /run/user/500/gvfs


No luck here. When I do this, for the last command I get:
$ ls -al /run/user/1000/gvfs
total 0
drwx--.  2 jonrysh jonrysh  40 Mar 28 04:48 .
drwx--. 10 jonrysh jonrysh 300 Mar 28 06:14 ..



Run your updates
 # dnf upgrade
Let us know


$ sudo dnf upgrade
[sudo] password for jonrysh:
Last metadata expiration check: 0:24:14 ago on Thu 28 Mar 2019 12:49:10 
PM PDT.

Dependencies resolved.
Nothing to do.
Complete!

In general I keep my system up do date.

jon


Does your phone show up in ?

 $ gio mount -li

Are yo able to see your phone with Nautulis?


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Is something wrong with the testing mailing list?

2019-04-19 Thread Todd Chester via users

Hi All,

I noticed that testing mailing list suddenly went
dead.  So I when to the archives

https://lists.fedoraproject.org/archives/list/test%40lists.fedoraproject.org/

and noticed that posts are arriving, but no one is
answering them.  So apparently nothing is getting
relayed back to members.

This list is normally really, really chatty.  Is it down?
Anyone here know how to contact the administrator?

-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Is something wrong with the testing mailing list?

2019-04-19 Thread Todd Chester via users



On 4/19/19 4:04 AM, Ed Greshko wrote:

On 4/19/19 6:42 PM, Todd Chester via users wrote:

Hi All,

I noticed that testing mailing list suddenly went
dead.  So I when to the archives

https://lists.fedoraproject.org/archives/list/test%40lists.fedoraproject.org/

and noticed that posts are arriving, but no one is
answering them.  So apparently nothing is getting
relayed back to members.

This list is normally really, really chatty.  Is it down?
Anyone here know how to contact the administrator?



It is working just fine.  Everything in the archives has arrived in my email.

FWIW, I don't have an answer to the Q you asked on that list.


Hi Ed,

Thanks for looking at my Q,eve if you did not have an answer.

I am not getting anything from the list.  I notice from the
archives that tons of posts have been made, but no one answered
any of the new ones.

I wonder is zoho.com got blacklisted, again.  Several mailing lists
do not work with it after its domain was used in a denial of
service attack and the black list was not removed afterwards.

You know if they ever fixed the issue with the upgrade corrupting
grub?

-T

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Does cups-pdf have its own mailing list?

2019-04-24 Thread Todd Chester via users



On 4/24/19 4:53 PM, Ed Greshko wrote:

On 4/25/19 3:51 AM, ToddAndMargo via users wrote:

# lpoptions -p Cups-PDF
copies=1 device-uri=cups-pdf:/ finishings=3 job-cancel-after=10800
job-hold-until=no-hold job-priority=50 job-sheets=none,none landscape=true
marker-change-time=0 number-up=1 orientation-requested=4
printer-commands=AutoConfigure,Clean,PrintSelfTestPage printer-info=Cups-PDF
printer-is-accepting-jobs=true printer-is-shared=true printer-is-temporary=false
printer-location printer-make-and-model='Generic CUPS-PDF Printer (no options)'
printer-state=3 printer-state-change-time=1556134913 printer-state-reasons=none
printer-type=8450124 printer-uri-supported=ipp://localhost/printers/Cups-PDF

I see both
 landscape=true  and
 orientation-requested=4

I wonder if they conflict?


I don't think they would.


Brian over on the CUPS group told me this
Not quite. landscape=true rotates the page by 90 degrees
in a direction determined by *LandscapeOrientation in
the PPD. orientation-requested=4 always rotates by 90
degrees anticlockwise.



One thing I would do is use the Cups Web Interface to change the driver from 
Generic
CUPS-PDF Printer (no options) to CUPS-PDF Printer (w/ options)

You mentioned "Lotus Approach".  I am unfamiliar with that application.


It is abandoned.  I run it under Wine Staging:

https://en.wikipedia.org/wiki/IBM_Lotus_Approach




___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Does cups-pdf have its own mailing list?

2019-04-24 Thread Todd Chester via users



On 4/24/19 5:51 PM, Ed Greshko wrote:

Brian over on the CUPS group told me this
     Not quite. landscape=true rotates the page by 90 degrees
     in a direction determined by *LandscapeOrientation in
     the PPD. orientation-requested=4 always rotates by 90
     degrees anticlockwise.

I don't see an answer to if they conflict or not.


One turn it +90 deg the other -90 deg.  Maybe.

I use the Cups-PDF driver from Fedora's repo


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Does cups-pdf have its own mailing list?

2019-04-24 Thread Todd Chester via users



On 4/24/19 6:47 PM, Ed Greshko wrote:

On 4/25/19 8:21 AM, Todd Chester via users wrote:

It is abandoned.  I run it under Wine Staging:


You are running this under Wine, so that means Windows?

Why not just install a Windows PDF Printer?

Windows 10?

https://www.digitaltrends.com/computing/print-pdf-windows/



It is a Windows program running on Linux under Wine Staging.
Wine reads my installed printers from CUPS.


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Does cups-pdf have its own mailing list?

2019-04-24 Thread Todd Chester via users



On 4/24/19 8:18 PM, Ed Greshko wrote:

On 4/25/19 11:07 AM, Todd Chester via users wrote:

It is a Windows program running on Linux under Wine Staging.
Wine reads my installed printers from CUPS.


I've not used Wine in a long time.  I guess you can't install a Windows Printer 
under it.

If you can't get your issue sorted, another idea would be to export the file 
you want to
print into a format available in LibreOffice and open and convert to PDF using 
its native
function or using the Cups PDF printer.

Doing some "Googling" has shown people exporting Lotus Approach files to .xls.



What I do is print to Cups-PDF, it comes out Portrait.  Then I go into
Approach's page set up and change it back to Landscape and print again.
The setting does not hold in Approach.  Changing printers picks up the 
defaults from CUPS.  It is annoying.



___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Does cups-pdf have its own mailing list?

2019-04-24 Thread Todd Chester via users



On 4/24/19 9:19 PM, Ed Greshko wrote:

On 4/25/19 11:51 AM, Todd Chester via users wrote:


What I do is print to Cups-PDF, it comes out Portrait.  Then I go into
Approach's page set up and change it back to Landscape and print again.
The setting does not hold in Approach.  Changing printers picks up the
defaults from CUPS.  It is annoying


So, I think you're saying, if you remember to set landscape in Approach all is 
OK printing
to Cups-PDF?  And that setting is permanent in Approach?

So, just something annoying more than broken?



The paper is all set up perfectly to print to my OkiData B4350 printer.
If I want to make a PDF, I have to change the printer to
Portrait after it prints.  I can only correct it after it prints.
And if you save the new settings, Approach reverts back to the old
settings.

More annoying than broken, because I have to do it twice and I can't
turn the task over to a regular user.

I suppose I could always edit the form so that everything crams on
a portrait page.  Maybe reduce the font.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Does cups-pdf have its own mailing list?

2019-04-24 Thread Todd Chester via users



On 4/24/19 10:08 PM, Tim via users wrote:

On Wed, 2019-04-24 at 20:51 -0700, Todd Chester via users wrote:

What I do is print to Cups-PDF, it comes out Portrait.  Then I go
into Approach's page set up and change it back to Landscape and print
again. The setting does not hold in Approach.  Changing printers
picks up the defaults from CUPS.  It is annoying.


I'm wondering if you're missing a step.  In most authoring software,
you have to set the page format to landscape or portrait.  This isn't a
printer setting, it's data about the actual document.  This will be the
default print layout used when you get around to printing it.

e.g. In various word processors, you have style formatting options per
character, per paragraph, and then the whole page.



Hi Tim,

In Approach, when you set up your report, you choose a "paper" size. 
Approach gets it from the default print driver for the page.  You

can set it to whatever the printer supports.

Cups-PDF is not the default printer, so when you print to it, you
have to set the page up again.  "Supposedly" when you save
the Approach file, it saves the new settings, but this is
the exception.  It saves everything else.

-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: How do I generate grub for legacy?

2019-05-02 Thread Todd Chester via users



On 5/2/19 5:40 PM, Samuel Sieb wrote:

On 5/1/19 2:48 PM, ToddAndMargo via users wrote:

Remaking grub.cfg, I get

    # grub2-mkconfig -o /boot/grub2/grub.cfg
    Generating grub configuration file ...
    Adding boot menu entry for EFI firmware configuration
    done

Uh.. I wanted legacy, not EFI.

What am I missing?


Are you doing this while booted in EFI or legacy mode?


Legacy.  It only boots in EFI mode.  I need both.



___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: How do I generate grub for legacy?

2019-05-03 Thread Todd Chester via users



On 5/2/19 10:24 PM, Samuel Sieb wrote:

On 5/2/19 8:23 PM, Todd Chester via users wrote:

On 5/2/19 5:40 PM, Samuel Sieb wrote:

On 5/1/19 2:48 PM, ToddAndMargo via users wrote:

Remaking grub.cfg, I get

    # grub2-mkconfig -o /boot/grub2/grub.cfg
    Generating grub configuration file ...
    Adding boot menu entry for EFI firmware configuration
    done

Uh.. I wanted legacy, not EFI.

What am I missing?


Are you doing this while booted in EFI or legacy mode?


Legacy.  It only boots in EFI mode.  I need both.


How are you booting in legacy mode if it doesn't work?


I am not.  That is what I am trying to get working.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: simple scan no longer prints?

2019-05-09 Thread Todd Chester via users



On 5/9/19 5:45 PM, Samuel Sieb wrote:

On 5/9/19 11:25 AM, ToddAndMargo via users wrote:

It looks like I lost my ability to print directly
from Simple Scan.  Is this a regression or am I
missing something?


I see the same thing on F29 and thinking about it, it makes sense to me. 
  It's a scanning program, leave the printing details to the pdf viewer. 
  Generally, the scanner is part of a printer anyway, so if you want 
prints, then just use the copy function instead.


Thank you for the double check!

I prefer stand alone scanners.

The extra step is annoying, especially since I had the
feature before

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: simple scan no longer prints?

2019-05-10 Thread Todd Chester via users



On 5/9/19 9:25 PM, Samuel Sieb wrote:
I'm curious what the use case is for printing something that you just 
scanned?  Is it for the purpose of making copies since you only have a 
stand alone scanner?


I scan and print my customer's checks so I can double check
my paperwork if someone does not pay me and make sure it
is not my mistake.  It is a (ha ha) "paper trail".

I have a old Okidata B4350 printer (LED black and white) that
just won't die.   I virtually only use the printer for printing
banking, tax forms, and invoices.  There have only been a couple
of times in 24 years of doing this that I wanted color.  I have
thought of an inkjet, but they make a bad impression on invoices
as the ink smears under hot, sweaty hands.  And I can always ask
any of my customers if they mind me printing out a color photo.
They are more than happy to help.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Migrqate from Legacy to EUFI?

2020-07-09 Thread Todd Chester via users



On 2020-07-08 22:20, Mauricio Tavares wrote:

On Wed, Jul 8, 2020 at 5:11 PM toddandmargo via users



Even though I knew it would not work, I tried clonzilla'ing the two.


   Odd since you can restore one partition at a time in clonezilla.
So, if you partition new drive (LVM/whatever), you then feed the
partitions.  But I have only done that by first creating a clonezilla
server.


I did the whole thing. And I knew better, but  ...

I created a dual legacy / EUFI dual boot flash drive
with a full version of Fedora on it.  I found that
Fedora always thinks it has the original EUFI or original
legacy boot on the drive.  I suppose you could configure it out,
but the project is something to behold.


   What if you boot off a liveCD and then move the bits you want to
save, mentioned below? Also, your box cannot boot off the NVMe drive
and then mount old drive?


Oh it is easier than that.  I have full access to the original drive
and a wonderful "dump" backup of the original drive. It will not be
too hard to migrate the data over.  And it will dump all the sins
of the past.  And I already have Fedora 32 installed on the NVMe drive.


The scope of this server has changed dramatically, so reinstalling might
no be such a bad idea.  It would dump a lot of sins of the past.  I just
was to restore users, groups, /home, /export, samba, ftp and I am
good to go.


   I take you are then just rsyncing it?


I will just use cp and krusader

I was just hoping there was a utility out there that
would do it all for me.  But, I am thinking it would
be better to start over.
___
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: I need help with "nmcli device status"

2020-08-05 Thread Todd Chester via users



On 2020-08-04 20:44, Tim via users wrote:

Tim:

You know they'll start removing those lights, because the average
user doesn't need to know about them.


ToddAndMargo:

But fortunately those will be the e-cheap-o computers
and they only come with one Ethernet port.


Then they'll replace the keyboard with a single button, because it's
easier to remember some kind of special tapping code pattern than find
the right key.  The screen will be replaced by a single light that's
either yellow or blue, which you're supposed to understand what that
means.

It'll end up like that chair in Star Trek, where an inert Capt Pike
communicates with a light that just comes on once, no matter what he's
communicating, and somehow people know what that means.




Tablets are getting there.

And there is precedence with Capt Pike.  Everyone
knew what Chewy was saying too.  Everything he said
sounded like he was passing a kidney stone.
___
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: Any subs for Libreoffice?

2020-08-12 Thread Todd Chester via users



On 2020-08-12 16:16, Doug McGarrett wrote:

Please tell me the difference between Free Office and SoftMaker Standard.


std is version 2021

Free is version 2018


___
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: Any subs for Libreoffice?

2020-08-12 Thread Todd Chester via users



On 2020-08-12 15:48, Samuel Sieb wrote:

On 8/12/20 12:15 PM, ToddAndMargo via users wrote:

On 2020-08-11 23:13, Samuel Sieb wrote:

On 8/11/20 9:24 PM, ToddAndMargo via users wrote:

On 2020-08-11 21:07, Samuel Sieb wrote:
"Intuitive" is almost completely dependent on your previous 
experience.


You are very forgiving.  It belongs in Format-> page.

NOT Insert->page breaks->More Breaks->manual breaks->Page Style.


The reason it's there is because in order to change the page format 
you have to start a new page.  And it's not really there anyway.  The 
actual landscape setting is part of the style.  Format->Page modifies 
the page settings for the currently active style.  If you switch to 
the "Landscape" style, then Format->Page will show that you are in 
landscape.  I guess you have to understand that LO operates at a 
higher level than just basic typing.  You can do that, but you 
shouldn't, at least if you're writing something more than just a 
really basic memo. If you use styles properly, then you can make 
global layout and formatting changes easily.


True.  And since when do I need to be a rocket scientist to figure 
out. That is the issue.  It should be in page format,

period.  I should not have to learn" what is under the hood to
be able to use the thing.


It's very clear in the documentation.  A quick search for "landscape" 
gave me:
https://help.libreoffice.org/latest/en-US/text/swriter/guide/pageorientation.html 




Oh and on what planet is the orientation of the page
a "paragraph" format?


Are you referring to LO or something else?  In LO, the page orientation 
is in the page format right where it should be.


Sam,

Do you have any idea how much arguing I had to do to get
LO to move that out of paragraph?

-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: Is Brave kicking you out too?

2020-09-02 Thread Todd Chester via users



On 2020-09-02 11:03, George Avrunin wrote:

On Wed, 2 Sep 2020 13:57:38 -0400, Temlakos wrote:


I'm using KDE. Brave causes no problems except for breaking maybe one
Web site in twenty or twenty-five. But that's not a Fedora or KDE problem.

Temlakos


Also on KDE, Fedora 32, brave-browser-1.13.82-1.x86_64.  No problem with
the URL ToddAndMargo asked about.

   George


I will check with the Xfce mailing list
___
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: printers listed after deletion

2020-10-29 Thread Todd Chester via users



On 10/29/20 6:58 PM, Tim via users wrote:

there was another post about the same
kind of thing in the last few days.



That would be me.  "Most" (watch the weasel word) of
my programs found the deletions.  Some held on
to them.  Never figured out how to get those
few to finally update.

Hold outs:
   Wine (all of them)
   Libre Office
   Free Office
   Master PDF Editor
___
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


new hardware?

2020-10-30 Thread Todd Chester via users

Hi All,

Just a refresher. If I add a new piece of presumably supported
hardware to my computer, do I need to run some kind of scan
to add it to the fray?  Or does a reboot take care of that?

-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


View HEIC format photes?

2022-02-04 Thread Todd Chester via users

Hi All,

Does Fedora have a viewer that will import
an Apple HEIC format photo?

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
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Fedora Laptop?

2022-03-10 Thread Todd Chester via users

Hi All,

Anyone know of someone selling laptops with
Fedora preinstalled?

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
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Fedora Laptop?

2022-03-10 Thread Todd Chester via users



On 3/10/22 21:54, Frederic Muller wrote:



On 3/11/22 00:10, Todd Chester via users wrote:

Hi All,

Anyone know of someone selling laptops with
Fedora preinstalled?

Many thanks,
-T 


Yes, just got a Thinkpad X1 Gen 9 with Fedora 33 pre-installed for Black 
Friday in the US. I installed F35 directly. Everything seems to work ok 
but I need to dig into the power management as it seems the 3 
'performance' modes didn't really worked as they should have, thus 
giving me rather subpar autonomy. Not sure why at this stage.


I also have 2 firmware updates which don't seem to install.

So you have a full report on this machine, but I didn't file any bug as 
I have been busy with other things.


Fred



I wonder if the sell OS-less laptops, so you
can install what you want?
___
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
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Can I see an iMac drive with a Live USB?

2022-11-02 Thread Todd Chester via users



On 11/1/22 22:44, Slade Watkins via users wrote:

On 11/1/22 11:54 PM, Mauricio Tavares wrote:

I second shred. Only issue is that if drive is ssd chances are you
will not overwrite every sector.


Ditto, as well.



Todd, I do not know how old those iMacs are, but some (lampshade) had
the drives on the base while others have it behind the motherboard
behind the monitor. And some also had the drive soldered to the
motherboard.



I didn't even think about that. Apple sticks to the same design for
basically everything for so long I hadn't considered that when I
originally replied to Todd.

-srw


I met with the customer today.  She bought a Mac Books instead
of repairing or replacing her iMac.  She plans just to run
the iMac until bricks.

Soldered to the motherboard?  Does Micky Mouse know about this?
___
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
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


qemu-kvm steels my flash drives

2019-11-13 Thread Todd Chester via users


Hi All,

Fedora 31
qemu-kvm-4.1.0-5.fc31.x86_64

If I have a virtual machine running and I insert a
flash drive into a USB socket, the virtual machine
steels the flash drive from the host, not that it
will actually work in the VM, which they don't.
To get them to work in my VM's I have to add them
as a piece of hardware to my configuration, then
they work.

I have to exit all my VM's to be able to see my flash
drives again from the hosts system (FC31).  This is
a pain in the neck.

Any way around this?

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: qemu-kvm steels my flash drives

2019-11-13 Thread Todd Chester via users



On 11/13/19 5:54 PM, Ed Greshko wrote:

On 11/14/19 8:51 AM, Todd Chester via users wrote:


Fedora 31
qemu-kvm-4.1.0-5.fc31.x86_64

If I have a virtual machine running and I insert a
flash drive into a USB socket, the virtual machine
steels the flash drive from the host, not that it
will actually work in the VM, which they don't.
To get them to work in my VM's I have to add them
as a piece of hardware to my configuration, then
they work.

I have to exit all my VM's to be able to see my flash
drives again from the hosts system (FC31).  This is
a pain in the neck.

Any way around this? 


If you are using the Virtual Machine Manager?


Yes



On the top Menu select "Virtual Machine--->Redirect USB Device" and 
uncheck the flash drive in question

to release it and return it to the host system.


I did.  It does not work.

:'(



___
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: qemu-kvm steels my flash drives

2019-11-13 Thread Todd Chester via users



On 11/13/19 8:05 PM, Ed Greshko wrote:

On 11/14/19 8:51 AM, Todd Chester via users wrote:


Hi All,

Fedora 31
qemu-kvm-4.1.0-5.fc31.x86_64

If I have a virtual machine running and I insert a
flash drive into a USB socket, the virtual machine
steels the flash drive from the host, not that it
will actually work in the VM, which they don't.
To get them to work in my VM's I have to add them
as a piece of hardware to my configuration, then
they work.


Oh, BTW, I forgot to add that I just installed an F31 system under qemu 
and I didn't have to do anything

to use a flash drive in the VM.  The host system is also F31.

Filesystem  1K-blocks    Used Available Use% 
Mounted on

/dev/mapper/fedora_localhost--live-root  28683172 5907560  21295524 22% /
/dev/vda1  999320  217372    713136 24% 
/boot
/dev/sda1   123569632 2471936 121097696   3% 
/run/media/egreshko/FLASH


The USB drive happens to have been labeled "FLASH" and was auto mounted 
by GNOME.


[egreshko@f31gq ~]$ ll /run/media/egreshko/FLASH/
total 32
drwxr-xr-x. 2 egreshko egreshko 32768 Jun 20 20:33 HPSCANS



The only way I can get a flash drive to actually work
in my VM's is to add it as a piece of hardware in the
manager (and reboot the VM).


___
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: qemu-kvm steels my flash drives

2019-11-13 Thread Todd Chester via users



On 11/13/19 5:22 PM, George N. White III wrote:
On Wed, 13 Nov 2019 at 20:52, Todd Chester via users 
mailto:users@lists.fedoraproject.org>> 
wrote:



Hi All,

Fedora 31
qemu-kvm-4.1.0-5.fc31.x86_64

If I have a virtual machine running and I insert a
flash drive into a USB socket, the virtual machine
steels the flash drive from the host, not that it
will actually work in the VM, which they don't.
To get them to work in my VM's I have to add them
as a piece of hardware to my configuration, then
they work.

I have to exit all my VM's to be able to see my flash
drives again from the hosts system (FC31).  This is
a pain in the neck.

Any way around this?


Has the USB controller been assigned as a PCI device to the VM?   If so 
it would be detached from the host machine.


It just says USB Controller.  I will look more closely
tomorrow to see if there is anything like that.




___
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: qemu-kvm steels my flash drives

2019-11-13 Thread Todd Chester via users



On 11/13/19 8:55 PM, Ed Greshko wrote:

On 11/14/19 12:31 PM, Todd Chester via users wrote:



On 11/13/19 5:54 PM, Ed Greshko wrote:

On 11/14/19 8:51 AM, Todd Chester via users wrote:


Fedora 31
qemu-kvm-4.1.0-5.fc31.x86_64

If I have a virtual machine running and I insert a
flash drive into a USB socket, the virtual machine
steels the flash drive from the host, not that it
will actually work in the VM, which they don't.
To get them to work in my VM's I have to add them
as a piece of hardware to my configuration, then
they work.

I have to exit all my VM's to be able to see my flash
drives again from the hosts system (FC31).  This is
a pain in the neck.

Any way around this? 


If you are using the Virtual Machine Manager?


Yes



On the top Menu select "Virtual Machine--->Redirect USB Device" and 
uncheck the flash drive in question

to release it and return it to the host system.


I did.  It does not work.

:'(



Well, it works fine for me here on multiple hosts.

If you want to keep the guest from grabbing the USB device you could 
always remove the USB Redirect from

the HW in the guest.



Any of your VM's Windows 7 Pro or Windows 10 Pro?


___
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: qemu-kvm steels my flash drives

2019-11-13 Thread Todd Chester via users



On 11/13/19 10:56 PM, Ed Greshko wrote:

On 11/14/19 2:43 PM, Ed Greshko wrote:
No, but that shouldn't make a difference.  It would be HW level. What HW is presented to the guest. 



I do have a Win10 iso if I have time I'll install to see if this does make a difference. 



OK, it didn't take long and I did have the time.

Installed Win10-Pro.  Works the same as with an F31 guest.

Plug in the flash drive and the guest grabs it.  Uncheck the drive from 
the Redirect menu and the

guest releases it.




Would you fire up your 10 VM, do a ps on it, and copy and
paste me the run line?
___
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: qemu-kvm steels my flash drives

2019-11-14 Thread Todd Chester via users



On 11/13/19 11:06 PM, Ed Greshko wrote:

On 11/14/19 3:03 PM, Todd Chester via users wrote:



On 11/13/19 10:56 PM, Ed Greshko wrote:

On 11/14/19 2:43 PM, Ed Greshko wrote:
No, but that shouldn't make a difference.  It would be HW level. What HW is presented to the guest. 



I do have a Win10 iso if I have time I'll install to see if this does make a difference. 




OK, it didn't take long and I did have the time.

Installed Win10-Pro.  Works the same as with an F31 guest.

Plug in the flash drive and the guest grabs it.  Uncheck the drive 
from the Redirect menu and the

guest releases it.




Would you fire up your 10 VM, do a ps on it, and copy and
paste me the run line?


qemu   61702   1 98 14:47 ?    00:17:29 
/usr/bin/qemu-system-x86_64 -name guest=win10,debug-threads=on -S 
-object 
secret,id=masterKey0,format=raw,file=/var/lib/libvirt/qemu/domain-2-win10/master-key.aes 
-machine pc-q35-4.1,accel=kvm,usb=off,vmport=off,dump-guest-core=off 
-cpu 
Nehalem-IBRS,vme=on,vmx=on,x2apic=on,tsc-deadline=on,hypervisor=on,arat=on,tsc-adjust=on,umip=on,stibp=on,arch-capabilities=on,ssbd=on,rdtscp=on,skip-l1dfl-vmentry=on,hv-time,hv-relaxed,hv-vapic,hv-spinlocks=0x1fff 
-m 4096 -overcommit mem-lock=off -smp 2,sockets=2,cores=1,threads=1 
-uuid b50c7539-161a-40fb-b6a3-2dcfba8e6926 -no-user-config -nodefaults 
-chardev socket,id=charmonitor,fd=36,server,nowait -mon 
chardev=charmonitor,id=monitor,mode=control -rtc 
base=localtime,driftfix=slew -global kvm-pit.lost_tick_policy=delay 
-no-hpet -no-shutdown -global ICH9-LPC.disable_s3=1 -global 
ICH9-LPC.disable_s4=1 -boot strict=on -device 
pcie-root-port,port=0x10,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,addr=0x2 
-device 
pcie-root-port,port=0x11,chassis=2,id=pci.2,bus=pcie.0,addr=0x2.0x1 
-device 
pcie-root-port,port=0x12,chassis=3,id=pci.3,bus=pcie.0,addr=0x2.0x2 
-device 
pcie-root-port,port=0x13,chassis=4,id=pci.4,bus=pcie.0,addr=0x2.0x3 
-device 
pcie-root-port,port=0x14,chassis=5,id=pci.5,bus=pcie.0,addr=0x2.0x4 
-device qemu-xhci,p2=15,p3=15,id=usb,bus=pci.2,addr=0x0 -device 
virtio-serial-pci,id=virtio-serial0,bus=pci.3,addr=0x0 -drive 
file=/var/lib/libvirt/images/win10.qcow2,format=qcow2,if=none,id=drive-sata0-0-0 
-device ide-hd,bus=ide.0,drive=drive-sata0-0-0,id=sata0-0-0,bootindex=1 
-drive 
file=/syntegra/linux-releases/MicroSoft/Win10_1607_English_x64.iso,format=raw,if=none,id=drive-sata0-0-1,readonly=on 
-device ide-cd,bus=ide.1,drive=drive-sata0-0-1,id=sata0-0-1 -netdev 
tap,fd=38,id=hostnet0 -device 
e1000e,netdev=hostnet0,id=net0,mac=52:54:00:24:a0:ea,bus=pci.1,addr=0x0 
-chardev pty,id=charserial0 -device 
isa-serial,chardev=charserial0,id=serial0 -chardev 
spicevmc,id=charchannel0,name=vdagent -device 
virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,id=channel0,name=com.redhat.spice.0 
-device usb-tablet,id=input0,bus=usb.0,port=1 -spice 
port=5900,addr=127.0.0.1,disable-ticketing,image-compression=off,seamless-migration=on 
-device 
qxl-vga,id=video0,ram_size=67108864,vram_size=67108864,vram64_size_mb=0,vgamem_mb=16,max_outputs=1,bus=pcie.0,addr=0x1 
-device ich9-intel-hda,id=sound0,bus=pcie.0,addr=0x1b -device 
hda-duplex,id=sound0-codec0,bus=sound0.0,cad=0 -chardev 
spicevmc,id=charredir0,name=usbredir -device 
usb-redir,chardev=charredir0,id=redir0,bus=usb.0,port=2 -chardev 
spicevmc,id=charredir1,name=usbredir -device 
usb-redir,chardev=charredir1,id=redir1,bus=usb.0,port=3 -device 
virtio-balloon-pci,id=balloon0,bus=pci.4,addr=0x0 -sandbox 
on,obsolete=deny,elevateprivileges=deny,spawn=deny,resourcecontrol=deny 
-msg timestamp=on


Thank you!

When I get some office time on Friday, I will do a side by comparison of 
yours vs mine.  Bet I did something dumb.




___
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: qemu-kvm steels my flash drives

2019-11-14 Thread Todd Chester via users



On 11/14/19 9:55 AM, George N. White III wrote:
On Thu, 14 Nov 2019 at 12:28, ToddAndMargo via users 
mailto:users@lists.fedoraproject.org>> 
wrote:


On 11/13/19 5:22 PM, George N. White III wrote:
 > Has the USB controller been assigned as a PCI device to the VM? 
  If so

 > it would be
 > detached from the host machine.

Controller USB 0
Controller: Type USB; Model USB2
XML:
      
        
      


I think this indicates that the USB controller is managed as a PCI 
device, but it has been a few years since I looked at this.


I found https://libvirt.org/formatdomain.html#elementsHostDev:

"For PCI devices, when |managed| is "yes" it is detached from the host 
before being passed on to the guest and reattached to the host after the 
guest exits. If |managed| is omitted or "no", the user is responsible to 
call |virNodeDeviceDetachFlags| (or |virsh nodedev-detach| before 
starting the guest or hot-plugging the device and 
|virNodeDeviceReAttach| (or |virsh nodedev-reattach|) after hot-unplug 
or stopping the guest."


Since managed is omitted, it seems the automatic detach/reattach should 
not be done.


https://libvirt.org/formatdomain.html says:


"Controllers


Depending on the guest architecture, some device buses can appear more 
than once, with a group of virtual devices tied to a virtual controller. 
Normally, libvirt can automatically infer such controllers without 
requiring explicit XML markup, but sometimes it is necessary to provide 
an explicit controller element, notably when planning the PCI topology 
 for guests where device hotplug 
is expected."


Hi George,

Thank you!

-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: Kid filter?

2020-01-16 Thread Todd Chester via users
On Thu, Jan 16, 2020 at 3:05 PM ToddAndMargo via users 
mailto:users@lists.fedoraproject.org>> 
wrote:


On 2020-01-16 12:46, Greg Woods wrote:
 > At work, we used to use OpenDNS to keep porn off our network.


Just point the DNS server to Open DNS?

DNS1: 208.67.222.222
DNS2: 208.67.220.220




On 2020-01-16 15:04, Greg Woods wrote:
That is what I have tested at home and it seems to work. If you want to 
see it in action you can go to internetbadguys.com 
 (a site run by OpenDNS) both before and 
after setting your forwarding DNS servers to those of OpenDNS and note 
the difference.


--Greg





Cool.  Thank you.

___
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: usb thermometer?

2020-01-22 Thread Todd Chester via users



On 2020-01-22 00:37, J.Witvliet--- via users wrote:

Regarding power,
You might consider doing poe (power over Ethernet)


That would be perfect! Now for a water sensor
that works off PoE.

___
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: What are the differences between RHEL and Fedora Server?

2020-04-17 Thread Todd Chester via users

On 2020-04-16 05:23, Turritopsis Dohrnii Teo En Ming wrote:


How about NPACI Rocks?


I have no idea
___
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: My FC33->FC34 bind-chroot upgrade notes

2021-06-16 Thread Todd Chester via users



On 6/16/21 10:27 PM, Ed Greshko wrote:
Everything running just fine and the named-chroot service still shows 
"enabled".


Every time I have upgraded Fedora to a new release,
I have had to "enable" named-chroot.  If I ever
figure it out, I will definitely get back.

:'(

Maybe it is the universe testing my troubleshooting
skills.  The tip off is when ping by IP works.
___
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
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: gnome: No options to log into classic session

2021-07-15 Thread Todd Chester via users



On 7/14/21 4:38 AM, Stephen Morris wrote:
 From what I'm seeing all those options appear in the bottom right hand 
corner irrespective of whether the desktops are Gnome or Plasma and 
irrespective of whether they are on Xorg or Wayland.


regards,
Steve


They are suppose to.  Mine did not until I threw the
entry in custom.conf.  Go figure.
___
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
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: What CPU for qemu-kvm and Windows 11

2021-10-06 Thread Todd Chester via users



On 10/6/21 4:18 PM, Gordon Messmer wrote:

On 10/5/21 12:16, ToddAndMargo via users wrote:

My host's cpu is not supported.   I was hoping for a
fake CPU (there are about 20 of them to choose from)
would do the trick. 



That's not possible, because QEMU doesn't emulate the CPU.  The host CPU 
must support all of the instructions that would be present in the CPU 
that you report to the guest VM.


The reason that the CPU is an option and not directly copied from the 
host CPU is that guests might migrate from one physical host to another, 
and they may not have precisely the same CPU (and therefore, not 
precisely the same set of instructions).  In order to make that more 
reliable, you can select a CPU whose features are present in all of the 
hosts that might run a guest, and that guest is expected to limit itself 
to the instruction set in the CPU you've selected.


So, the CPU option allows you to select a less capable CPU than the one 
in your host.  It does not allow you to select a newer, more capable CPU.


I was afraid of that.  Dang!  Thank you for excellent
the tutorial.

This looks interesting.  M$ put a key into the registry
to bypass the new requirements.

https://www.bleepingcomputer.com/news/microsoft/how-to-bypass-the-windows-11-tpm-20-requirement/

___
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
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: virt-manager wants password for a user's account

2025-03-21 Thread Todd Chester via users



On 3/21/25 14:06, Samuel Sieb wrote:

On 3/21/25 12:24 PM, Alex Gurenko via users wrote:
Do you need it to ask for a root password? Maybe just add your user to 
the libvirt group with usermod -a -G libvirt  ?


If you do that, it won't ask for any password.  Otherwise, it is trying 
to find an admin user.  But there's no way to get it to ask for the root 
password.




My office machine does.
--
___
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
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue