Re: News : ARM Trying to Buy AmperComputing

Liste des GroupesRevenir à col misc 
Sujet : Re: News : ARM Trying to Buy AmperComputing
De : 186283 (at) *nospam* ud0s4.net (186282@ud0s4.net)
Groupes : comp.os.linux.misc
Date : 23. Jan 2025, 03:29:55
Autres entêtes
Organisation : wokiesux
Message-ID : <PoCdnawcq8s4NAz6nZ2dnZfqn_ednZ2d@earthlink.com>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13
User-Agent : Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0
On 1/22/25 4:32 AM, D wrote:
  On Tue, 21 Jan 2025, 186282@ud0s4.net wrote:
 
On 1/21/25 2:56 PM, Rich wrote:
D <nospam@example.net> wrote:
[-- text/plain, encoding 8bit, charset: utf-8, 94 lines --]
>
>
>
On Mon, 20 Jan 2025, 186282@ud0s4.net wrote:
>
On 1/20/25 3:53 PM, D wrote:
>
>
On Mon, 20 Jan 2025, The Natural Philosopher wrote:
>
On 20/01/2025 09:30, D wrote:
>
  The Pi hat or OMV ?
>
The pi, with directly connected spinning disks. Does the hat have its own
extra power supply?
>
I've managed to get a P4 I think to run one spinning rust disk without
extra power.
Strictly it depends on the disk.
The pi hat for 5 drives has an external 60W PSU
>
Ahh, if it has an external PSU then there is no problem. Ideally, if the pi
hat for 5 drives is intended to accomodate 5 spinning drives, it would be
nice if it did so at full speeds.
>
>
  One review said the WRITEs were a little pokey,
  but not TOO bad. READs were apparently snappy.
>
  This is OK ... most stuff on HDDs is "write once /
  read more often".
>
Hmm, do you have a link? What does "a little pokey" mean in terms of
writes? If it is only performance and latency related, then it is ok,
since the software will take care of a lot of that for me.
>
The nymshift troll was likely referring to two possibilities:
>
1) SMR mechanical drives
2) SSD's
>
In both cases, writes have to be done in what amounnts to a "two step
process".
>
For SMR drives, because the magnetic tracks physically overlap, writes
get queued to a non SMR area, and then get "moved" to the actual disk
sectors as a bigger batch to maintain the proper "overlap" of the
magnetic tracks.
>
For SSD's, writes occur to an "erased" flash block (typically much
larger than a "disk sector" size used by the host) and given enough
writes over a short enough timeframe the SSD controller can run out of
"pre-erased" blocks to use, and when that happens write speed slows
down to the rate that can be done when a "block erase" has to occur
before the actual writes can hit the media.  Note that this "block
erase" can also invove moving any partially used data sectors out of
the block into another block, creating a "write amplification"
situation as well.
>
>
 Disks - magnetic or SSD - are kinda messy. Of course
 their mission is kinda messy - deal with odd-sized
 blobs of data, try to jam it in somewhere, maybe have
 to move pre-existing around, try not to create TOO
 many 'gaps', for years and years.
>
 SSDs are quicker regardless and use less power, but
 that doesn't mean they're just a petabyte of empty
 space, STUFF has to happen. SSDs trend smaller than
 HDDs too and are more $$$ per terabyte. Yer basic
 WD/Seagte magnetic laptop drives are a pretty good
 deal IF you can handle the power req.
 This is the truth!
 
 Made a "different building" aux backup unit using
 a Pi-3 and 2.5" USB mag drive. The idea was to
 keep the Most Important Stuff in a separate
 building, separate leg of the power system. Used
 wi-fi ... but had all day to do its thing. This
 was protection against lighting/surges/fires
 and the dreaded Giant Mug Of Coffee that might
 afflict the main NAS. Cheap, worked great, a
 Python pgm to do the backups (DO confirm yer
 USB and NAS are both mounted). The USB drive
 was powered by the Pi, not an external wart.
 The drive and Pi were taped together and the
 whole mess was velcroed to the underside of a
 shelf out in a shop building.
 Good stuff! I replicate between two countries for added resilience. Both rsync and restic work great backing up to a tor hidden service. To speed things up, the first backup can be done locally, and after that, only deltas are sent from around the world.
   That's how we do it.

So far restic is still good. I wonder what its weaknesses are? Would be a shame to drop my trusted old rsync script + hardlinks in favour of restic only to discover some hidden bug. On the other hand it seems as if 1000s of people all over the world are using it and are happy with it, so maybe it is mature enough.
   I've generally used rsync, though rarely as client/server.
   It's quick and (for better or worse) has lots of options.
   DID find a serious prob once though using the --delete op
   however ... the source got unmounted and rsync interpreted
   that as an empty folder and, as told, cleaned out all
   those 'obsolete' backups. That took about 30 hours to
   rebuild ....
   I've also writ Python and Pascal pgms that do about the
   same thing as basic rsync. Get the source folder tree,
   copy to wherever after translating to folder tree to
   match the destination drive/folder. The good bit there
   is that you can CHECK the mount status of src/dest
   between every file copy, just a quick peek at /proc/mounts.
   You can also like ZIP and or encrypt the backups, using
   some standard naming scheme, file-by-file during the backup.
   Often you need just a few files from backup, ones somebody
   oopsied, so huge zip archives can be a negative. OpenSSL
   works fast for encryption and the Winders version has
   almost exactly the same params. GPG is not so good in
   the file-by-file thing because it has a relatively
   long start-up time.
   Have never used restic, I'll have to give it a look.
   Another way to back up is to 'fork' every file write
   to another, maybe even remote, drive. SoftRAID seems
   to know just what's being written but I've never
   figured out exactly how that works. The idea would
   be to feed the full file path/name of what's just
   been writ/modified into a (de-duplicated) list for
   some daemon or whatever to dupe to yer destination -
   local or cloud. This would be very quick and not bother
   the other gazillion unchanged files.

Date Sujet#  Auteur
15 Jan 25 * News : ARM Trying to Buy AmperComputing376186282@ud0s4.net
15 Jan 25 `* Re: News : ARM Trying to Buy AmperComputing375D
16 Jan 25  `* Re: News : ARM Trying to Buy AmperComputing374186282@ud0s4.net
16 Jan 25   +- Re: News : ARM Trying to Buy AmpereComputing1Lawrence D'Oliveiro
16 Jan 25   `* Re: News : ARM Trying to Buy AmperComputing372D
16 Jan 25    `* Re: News : ARM Trying to Buy AmperComputing371The Natural Philosopher
16 Jan 25     `* Re: News : ARM Trying to Buy AmperComputing370D
16 Jan 25      +* Re: News : ARM Trying to Buy AmperComputing367Computer Nerd Kev
17 Jan 25      i+* Re: News : ARM Trying to Buy AmperComputing343rbowman
17 Jan 25      ii+- Re: News : ARM Trying to Buy AmperComputing1Computer Nerd Kev
17 Jan 25      ii+* Re: News : ARM Trying to Buy AmperComputing4186282@ud0s4.net
17 Jan 25      iii+* Re: News : ARM Trying to Buy AmperComputing2rbowman
17 Jan 25      iiii`- Re: News : ARM Trying to Buy AmperComputing1186282@ud0s4.net
17 Jan 25      iii`- Re: News : ARM Trying to Buy AmperComputing1John Ames
17 Jan 25      ii`* Re: News : ARM Trying to Buy AmperComputing337D
17 Jan 25      ii `* Re: News : ARM Trying to Buy AmperComputing336rbowman
18 Jan 25      ii  `* Re: News : ARM Trying to Buy AmperComputing335D
18 Jan 25      ii   +- Raspberry NAS, anyone?1Lars Poulsen
19 Jan 25      ii   `* Re: News : ARM Trying to Buy AmperComputing333186282@ud0s4.net
19 Jan 25      ii    `* Re: News : ARM Trying to Buy AmperComputing332D
19 Jan 25      ii     +* Re: News : ARM Trying to Buy AmperComputing3The Natural Philosopher
19 Jan 25      ii     i`* Re: News : ARM Trying to Buy AmperComputing2D
20 Jan 25      ii     i `- Re: News : ARM Trying to Buy AmperComputing1The Natural Philosopher
20 Jan 25      ii     `* Re: News : ARM Trying to Buy AmperComputing328186282@ud0s4.net
20 Jan 25      ii      `* Re: News : ARM Trying to Buy AmperComputing327D
20 Jan 25      ii       `* Re: News : ARM Trying to Buy AmperComputing326The Natural Philosopher
20 Jan 25      ii        +* Re: News : ARM Trying to Buy AmperComputing64186282@ud0s4.net
20 Jan 25      ii        i`* Re: News : ARM Trying to Buy AmperComputing63D
21 Jan 25      ii        i +* Re: News : ARM Trying to Buy AmperComputing61186282@ud0s4.net
21 Jan 25      ii        i i`* Re: News : ARM Trying to Buy AmperComputing60D
22 Jan 25      ii        i i +* Re: News : ARM Trying to Buy AmperComputing56186282@ud0s4.net
22 Jan 25      ii        i i i`* Re: News : ARM Trying to Buy AmperComputing55D
22 Jan 25      ii        i i i +* Re: News : ARM Trying to Buy AmperComputing39rbowman
22 Jan 25      ii        i i i i+* Re: News : ARM Trying to Buy AmperComputing21Computer Nerd Kev
22 Jan 25      ii        i i i ii`* Re: News : ARM Trying to Buy AmperComputing20D
23 Jan 25      ii        i i i ii `* Re: News : ARM Trying to Buy AmperComputing19The Natural Philosopher
23 Jan 25      ii        i i i ii  `* Re: News : ARM Trying to Buy AmperComputing18D
23 Jan 25      ii        i i i ii   `* Re: News : ARM Trying to Buy AmperComputing17The Natural Philosopher
23 Jan 25      ii        i i i ii    `* Re: News : ARM Trying to Buy AmperComputing16D
24 Jan 25      ii        i i i ii     +* Re: News : ARM Trying to Buy AmperComputing11rbowman
24 Jan 25      ii        i i i ii     i+* Re: News : ARM Trying to Buy AmperComputing5186282@ud0s4.net
24 Jan 25      ii        i i i ii     ii`* Re: News : ARM Trying to Buy AmperComputing4rbowman
25 Jan 25      ii        i i i ii     ii +- Re: News : ARM Trying to Buy AmperComputing1The Natural Philosopher
25 Jan 25      ii        i i i ii     ii `* Re: News : ARM Trying to Buy AmperComputing2186282@ud0s4.net
25 Jan 25      ii        i i i ii     ii  `- Re: News : ARM Trying to Buy AmperComputing1rbowman
24 Jan 25      ii        i i i ii     i+- Re: News : ARM Trying to Buy AmperComputing1The Natural Philosopher
24 Jan 25      ii        i i i ii     i`* Re: News : ARM Trying to Buy AmperComputing4Rich
25 Jan 25      ii        i i i ii     i `* Re: News : ARM Trying to Buy AmperComputing3The Natural Philosopher
25 Jan 25      ii        i i i ii     i  `* Re: News : ARM Trying to Buy AmperComputing2Computer Nerd Kev
25 Jan 25      ii        i i i ii     i   `- Re: News : ARM Trying to Buy AmperComputing1The Natural Philosopher
24 Jan 25      ii        i i i ii     `* Re: News : ARM Trying to Buy AmperComputing4The Natural Philosopher
24 Jan 25      ii        i i i ii      `* Re: News : ARM Trying to Buy AmperComputing3D
25 Jan 25      ii        i i i ii       `* Re: News : ARM Trying to Buy AmperComputing2186282@ud0s4.net
25 Jan 25      ii        i i i ii        `- Re: News : ARM Trying to Buy AmperComputing1D
22 Jan 25      ii        i i i i+* Re: News : ARM Trying to Buy AmperComputing15D
23 Jan 25      ii        i i i ii+* Re: News : ARM Trying to Buy AmperComputing2The Natural Philosopher
23 Jan 25      ii        i i i iii`- Re: News : ARM Trying to Buy AmperComputing1D
23 Jan 25      ii        i i i ii`* Re: News : ARM Trying to Buy AmperComputing12rbowman
23 Jan 25      ii        i i i ii +* Maker spaces4Lars Poulsen
23 Jan 25      ii        i i i ii i+* Re: Maker spaces2rbowman
23 Jan 25      ii        i i i ii ii`- Re: Maker spaces1Rich
24 Jan 25      ii        i i i ii i`- Re: Maker spaces1Joe Makowiec
23 Jan 25      ii        i i i ii `* Re: News : ARM Trying to Buy AmperComputing7D
23 Jan 25      ii        i i i ii  `* Re: News : ARM Trying to Buy AmperComputing6The Natural Philosopher
23 Jan 25      ii        i i i ii   `* Re: News : ARM Trying to Buy AmperComputing5Computer Nerd Kev
24 Jan 25      ii        i i i ii    `* Re: News : ARM Trying to Buy AmperComputing4The Natural Philosopher
25 Jan 25      ii        i i i ii     `* Re: News : ARM Trying to Buy AmperComputing3Computer Nerd Kev
25 Jan 25      ii        i i i ii      `* Re: News : ARM Trying to Buy AmperComputing2The Natural Philosopher
25 Jan 25      ii        i i i ii       `- Re: News : ARM Trying to Buy AmperComputing1rbowman
23 Jan 25      ii        i i i i`* Re: News : ARM Trying to Buy AmperComputing2186282@ud0s4.net
23 Jan 25      ii        i i i i `- Re: News : ARM Trying to Buy AmperComputing1rbowman
23 Jan 25      ii        i i i `* Re: News : ARM Trying to Buy AmperComputing15186282@ud0s4.net
23 Jan 25      ii        i i i  `* Re: News : ARM Trying to Buy AmperComputing14rbowman
23 Jan 25      ii        i i i   +* Re: News : ARM Trying to Buy AmperComputing12186282@ud0s4.net
23 Jan 25      ii        i i i   i+* Re: News : ARM Trying to Buy AmperComputing4The Natural Philosopher
23 Jan 25      ii        i i i   ii`* Re: News : ARM Trying to Buy AmperComputing3186282@ud0s4.net
23 Jan 25      ii        i i i   ii +- Re: News : ARM Trying to Buy AmperComputing1The Natural Philosopher
23 Jan 25      ii        i i i   ii `- Re: News : ARM Trying to Buy AmperComputing1rbowman
23 Jan 25      ii        i i i   i+* Re: News : ARM Trying to Buy AmperComputing5Rich
23 Jan 25      ii        i i i   ii+- Re: News : ARM Trying to Buy AmperComputing1186282@ud0s4.net
23 Jan 25      ii        i i i   ii`* Re: News : ARM Trying to Buy AmperComputing3The Natural Philosopher
23 Jan 25      ii        i i i   ii `* Re: News : ARM Trying to Buy AmperComputing2186282@ud0s4.net
23 Jan 25      ii        i i i   ii  `- Re: News : ARM Trying to Buy AmperComputing1The Natural Philosopher
23 Jan 25      ii        i i i   i`* Re: News : ARM Trying to Buy AmperComputing2rbowman
23 Jan 25      ii        i i i   i `- Re: News : ARM Trying to Buy AmperComputing1D
23 Jan 25      ii        i i i   `- Re: News : ARM Trying to Buy AmperComputing1D
22 Jan 25      ii        i i `* Re: News : ARM Trying to Buy AmperComputing3186282@ud0s4.net
22 Jan 25      ii        i i  `* Re: News : ARM Trying to Buy AmperComputing2The Natural Philosopher
22 Jan 25      ii        i i   `- Re: News : ARM Trying to Buy AmperComputing1D
21 Jan 25      ii        i `- Re: News : ARM Trying to Buy AmperComputing1The Natural Philosopher
20 Jan 25      ii        `* Re: News : ARM Trying to Buy AmperComputing261D
21 Jan 25      ii         `* Re: News : ARM Trying to Buy AmperComputing260186282@ud0s4.net
21 Jan 25      ii          +* Synology Diskstation architecture (was: Re: News : ARM Trying to Buy AmperComputing)4vallor
21 Jan 25      ii          i+* Re: Synology Diskstation architecture (was: Re: News : ARM Trying to Buy AmperComputing)2186282@ud0s4.net
22 Jan 25      ii          ii`- Re: Synology Diskstation architecture (was: Re: News : ARM Trying to Buy AmperComputing)1vallor
23 Jan 25      ii          i`- Re: Synology Diskstation architecture (was: Re: News : ARM Trying to Buy AmperComputing)1186282@ud0s4.net
21 Jan 25      ii          `* Re: News : ARM Trying to Buy AmperComputing255D
21 Jan 25      ii           +* Re: News : ARM Trying to Buy AmperComputing253Rich
22 Jan 25      ii           i+* Re: News : ARM Trying to Buy AmperComputing240186282@ud0s4.net
22 Jan 25      ii           ii`* Re: News : ARM Trying to Buy AmperComputing239D
23 Jan 25      ii           ii `* Re: News : ARM Trying to Buy AmperComputing238186282@ud0s4.net
22 Jan 25      ii           i`* Re: News : ARM Trying to Buy AmperComputing12The Natural Philosopher
22 Jan 25      ii           `- Re: News : ARM Trying to Buy AmperComputing1186282@ud0s4.net
17 Jan 25      i+* Re: News : ARM Trying to Buy AmperComputing20D
17 Jan 25      i`* Re: News : ARM Trying to Buy AmperComputing3The Natural Philosopher
17 Jan 25      `* Re: News : ARM Trying to Buy AmperComputing2186282@ud0s4.net

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal