Re: Recommendation for filesystem for USB external drive for backups

2020-08-12 Thread Charles Curley
On Wed, 12 Aug 2020 20:14:03 -0400
rhkra...@gmail.com wrote:

> I'm getting closer to setting up a consistent backup plan, backing up
> to an external USB drive.  I'm wondering about a reasonable
> filesystem to use, I think I want to stay in the ext2/3/4 family, and
> I'm wondering if there is any good reason to use anything beyond ext2?

I use my external USB drives for off-site backup, so I use ext4 on top
of an encrypted partition.

http://charlescurley.com/blog/index.html

Start with
http://charlescurley.com/blog/posts/2019/Nov/02/backups-on-linux/ and
work your way forward in http://charlescurley.com/blog/tag/backups.html.

-- 
Does anybody read signatures any more?

https://charlescurley.com
https://charlescurley.com/blog/



Re: Kate: how widen vertical scrollbar

2020-08-12 Thread rhkramer
On Wednesday, July 29, 2020 07:37:20 AM rhkra...@gmail.com wrote:
> Thanks for the reply!  I haven't tried this yet, but that would be the
> plan,
> 
> On Tuesday, July 28, 2020 07:50:19 AM Simon Walter wrote:
> > You probably need to change your theme/window manager settings. Some
> > window

Just for closure, I found the place to change the Widgit Style and changed it 
to Oxygen and all is well.

System Settings ==>
   Application Style ==>
  Widget Style ==>
 Oxygen

Thanks!



Re: Kate: how widen vertical scrollbar

2020-08-12 Thread rhkramer
On Wednesday, July 29, 2020 07:37:20 AM rhkra...@gmail.com wrote:
> Thanks for the reply!  I haven't tried this yet, but that would be the
> plan,
> 
> On Tuesday, July 28, 2020 07:50:19 AM Simon Walter wrote:
> > You probably need to change your theme/window manager settings. Some
> > window

Just for closure, I found the place to change the Widgit Style and changed it 
to Oxygen and all is well.

System Settings ==>
   Application Style ==>
  Widget Style ==>
 Oxygen

Thanks!



Re: Recommendation for filesystem for USB external drive for backups

2020-08-12 Thread Mark Allums

On 8/12/2020 7:14 PM, rhkra...@gmail.com wrote:

I'm getting closer to setting up a consistent backup plan, backing up to an
external USB drive.  I'm wondering about a reasonable filesystem to use, I
think I want to stay in the ext2/3/4 family, and I'm wondering if there is any
good reason to use anything beyond ext2?

(Some day I'll try ZFS or BTRFS for my "system" filesystems, but don't see any
point (and don't want to learn) either of them at this point -- I don't see
much need for a backup filesystem.)

But, I'll listen to opinions ;-)



Go for ext4.  No reason not to.



Re: Recommendation for filesystem for USB external drive for backups

2020-08-12 Thread Ben Caradoc-Davies

On 13/08/2020 12:14, rhkra...@gmail.com wrote:

I'm getting closer to setting up a consistent backup plan, backing up to an
external USB drive.  I'm wondering about a reasonable filesystem to use, I
think I want to stay in the ext2/3/4 family, and I'm wondering if there is any
good reason to use anything beyond ext2?


I use and recommend ext4. Journaling protects against filesystem 
metadata corruption, which can be caused by an electrical outage or 
system crash. ext3 also has journaling, but I see no reason to not use 
ext4. It is robust, widely deployed, and the default in Debian.


My backups are pigz-compressed tar archives, encrypted with gpg 
symmetric encryption, with a "pigz -0" outer wrapper to add a 32-bit 
checksum wrapper for convenient verification with "gzip -tv" or similar 
without requiring decryption. Archives are written to both external 
local storage and uploaded to cloud storage.


Because I have a small number of large backup files, I make backup 
filesystems to optimise for large files and maximise space: minimal 
journal, no reserved blocks, large file inode ratio, and no support for 
resizing while mounted. I also disable mount count and interval checking:


mkfs.ext4 -J size=4 -m 0 -T largefile4 -O "^resize_inode" /dev/sdb1
tune2fs -c 0 -i 0 -L Backup /dev/sdb1

I have this line in /etc/fstab:

LABEL=Backup /media/backup ext4 noatime,noauto,user,errors=remount-ro 0 0

Kind regards,

--
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand



Re: Recommendation for filesystem for USB external drive for backups

2020-08-12 Thread Keith Bainbridge

On 13/8/20 10:14 am, rhkra...@gmail.com wrote:

I'm getting closer to setting up a consistent backup plan, backing up to an
external USB drive.  I'm wondering about a reasonable filesystem to use, I
think I want to stay in the ext2/3/4 family, and I'm wondering if there is any
good reason to use anything beyond ext2?

(Some day I'll try ZFS or BTRFS for my "system" filesystems, but don't see any
point (and don't want to learn) either of them at this point -- I don't see
much need for a backup filesystem.)

But, I'll listen to opinions ;-)



I use ext4.   The advantage is journaling, which as I understand it 
reduces the chance of loss in case of power failure or the like. If 
you're using rsync, it will correct any prior bad copies (I think) at 
the next run.


On the basis that 1 back-up is better than none, can you cope with 2 
external devices?   As somebody else said in another topic, (approx) as 
long as you have a well tested spare lying around for when the main 
target fails.   Somebody put it more like this many years ago: There are 
2 kinds of drives around; those that have failed, and those that are 
going to fail.  Thankfully failure is getting rarer.





--
Keith Bainbridge

keithrbaugro...@gmail.com
or ke1thozgro...@gmx.com



Recommendation for filesystem for USB external drive for backups

2020-08-12 Thread rhkramer
I'm getting closer to setting up a consistent backup plan, backing up to an 
external USB drive.  I'm wondering about a reasonable filesystem to use, I 
think I want to stay in the ext2/3/4 family, and I'm wondering if there is any 
good reason to use anything beyond ext2?

(Some day I'll try ZFS or BTRFS for my "system" filesystems, but don't see any 
point (and don't want to learn) either of them at this point -- I don't see 
much need for a backup filesystem.)

But, I'll listen to opinions ;-)



Re: tape drives

2020-08-12 Thread Andy Smith
Hello,

On Wed, Aug 12, 2020 at 11:44:54AM +0100, mick crane wrote:
> Do people use tape drives for backup ?

Only in places that need vast amounts of data stored for a very long
time with restores being rare. Restoration is slow with tapes. Even
a low end LTO drive will set you back thousands of £/$/€.

Most consumers and even most businesses will find it more cost
effective and flexible to backup to HDDs and storage clouds.

Cheers,
Andy

-- 
https://bitfolk.com/ -- No-nonsense VPS hosting



Re: Qt5 & SQLite

2020-08-12 Thread Felix Perez
El mar., 11 de ago. de 2020 a la(s) 17:38, JavierDebian
(javier.debian.bb...@gmail.com) escribió:
>
>
>
> El 7/8/20 a las 18:55, JavierDebian escribió:
> > Buenas tardes.
>
> >
> > ¿Tienen alguna otra opción mejor, o más simple, o más popular para
> > trabajar?
> >
> > Muchas gracias.
> >
> > JAP
>
>
> Buenas tardes.
>
> Buceando la red, buscando y leyendo, creo que me decanto por
>
> Qt5 y MariaDB.
>
> ¿Por qué MariaDB y no otro?
> Pues, según https://db-engines.com/en/system/Firebird%3BMariaDB%3BSQLite
>
> SQLite no soporta C++

Si lo soporta, de echo soporta más lenguajes que Firebird y Mysql.
La implementación del motor esta en C, la de Firebird y Mysql es en C y en C++

Saludos.

> Firebird está limitado en su escalabilidad.

Por lo que he leído y me han comentado, es medianamente escalable, más
que nada se refieren a que los límites para ciertos proyectos son muy
dificiles de alcanzar.

> MariaDB al ser muy compatible con MySQL, facilita la tarea a futuros
> mantenedores.
>

Muy buen punto.

> Me queda ver las diferencias de manejo en campos tipo LONGBLOB para
> archivo de imágenes.
>
> Sigo escuchando sugerencias.
>
> Gracias por lo que me han ayudado.
>
> JAP
>


-- 
usuario linux  #274354
normas de la lista:  http://wiki.debian.org/es/NormasLista
como hacer preguntas inteligentes:
http://www.sindominio.net/ayuda/preguntas-inteligentes.html



Re: Some keys on the keyboard do not work

2020-08-12 Thread Doug McGarrett




On 8/12/20 5:24 AM, songbird wrote:

Dan Ritter wrote:

Doug McGarrett wrote:

Someone along this thread mentioned key-pullers. I have a couple of IBM
model M
keyboards that haven't been cleaned in years. They work well anyway, but I'd
like to clean
the keys. Where could I get one of those key-puller tools?
(If you ever get a chance to get one, TAKE IT! There's no better keyboard
anywhere than
this, altho it's too loud for a crowded office. And ALT-ESC will do the left
Windows-key


$10 at NewEgg. $5-15 at Amazon.

but the keycaps on the Model M are among the easiest to pull by
hand; I like to have a small flat-bladed screwdriver nearby, to
pop one edge of oddly-placed keycaps.

You may want some isopropyl alcohol to wipe away finger-grease
from the remaining surfaces of the keyboard.

   a butter knife will work ok too.

   i agree though about the Model M and similar keyboards and
really miss mine.  too bad that that unicomp keyboards won't
work for me (i've broke two of them the past x number of years
and can't figure out how to fix them and since they're not
sturdy enough it isn't worth sending them in for repairs).


   songbird

There is an outfit that refurbishes Model M keyboards, and I think it 
used to

have a source for a similar k/b. You can find them at:
   https://clickykeyboards.com/
These k/b's are expensive, but the Model M will probably never wear out!
--doug



timeout in initramfs

2020-08-12 Thread grumpy

i set up a machine with wifi with an encrypted root fs
i have this "ip=:wlan0:on" in my boot command line
during boot it talks to my dhcp to set up a connection so i can remotely unlock 
the root fs
i know that this is not really secure but lets ignore my stupidity for the 
moment
anyway it work fine
except when it can not talk to the dhcp
then it just continues try'n forever to connect to the dhcp
this is where i need a timeout
so it will give up and i can unlock the fs at the console



Re: dns cache for localdomain via djbdns

2020-08-12 Thread tomas
On Wed, Aug 12, 2020 at 03:51:11PM +0200, Patrick Frank wrote:
> 
> On 12.08.20 15:28, Dan Ritter wrote:
> >Greg Wooledge wrote:
> >>On Wed, Aug 12, 2020 at 02:59:23PM +0200, Patrick Frank wrote:
> 
> 
> Greg writes: You can execute the "./run" script by hand for testing
> purposes [...]
> 
> When I tried "exec envuidgid Gnscache ..." it logged me out.

No, not "it" logged you out. When you say "exec", you say "replace
the currently running process by that other". When  "that other"
terminates... it's done. So it won't come back to your shell. It's
gone. Basically, with "exec" you logged you out yourself, kind of.

Cheers
 - t


signature.asc
Description: Digital signature


Re: is there a way to corrupt the BIOS and/or the keybord on you laptop from the Internet? ...

2020-08-12 Thread Stefan Monnier
>  The only thing that I have "discovered" is that for whatever reason
> that keyboard doesn't plug directly to one and only one of the USB
> ports (which I had used before just fine), but if connected through a
> USB hub it works just fine. So I wonder what could be going on, or
> "they" are just messing with me, make me "wonder" ... as if I didn't
> have enough to do already.

Hmm... maybe the USB hub has been worried you'd find it useless it so it
asked your keyboard for help?


Stefan



Re: RFE: The installation DVD use LVM2 and crytsetup, why can't you use them with the live DVD?

2020-08-12 Thread Albretch Mueller
 Sorry, I just meant to send the one liner on the subject. lbrtchx



RFE: a "testcd" (a la knoppix) option for the debian DVD?

2020-08-12 Thread Albretch Mueller
On 8/12/20, Albretch Mueller  wrote:
>
>



RFE: The installation DVD use LVM2 and crytsetup, why can't you use them with the live DVD?

2020-08-12 Thread Albretch Mueller
On 8/12/20, Albretch Mueller  wrote:
>> I recommend to thoroughly test your hardware using different OS (possibly
>> non-Linux) and if you manage to reproduce the problems, it would mean a
>> hardware failure.
>
>  The only thing that I have "discovered" is that for whatever reason
> that keyboard doesn't plug directly to one and only one of the USB
> ports (which I had used before just fine), but if connected through a
> USB hub it works just fine. So I wonder what could be going on, or
> "they" are just messing with me, make me "wonder" ... as if I didn't
> have enough to do already.
>
>  I do know that they somehow install keyloggers apparently through
> java script on every computer I use even if I am using a computer at a
> public library.
>
>  On Windows, when I go: "Control Panel\Hardware and Sound" ... and
> then click on: "view hardware and devices" I see what you are supposed
> to see on the attached [ix
>
>  lbrtchx
>



Re: is there a way to corrupt the BIOS and/or the keybord on you laptop from the Internet? ...

2020-08-12 Thread Albretch Mueller
> I recommend to thoroughly test your hardware using different OS (possibly 
> non-Linux) and if you manage to reproduce the problems, it would mean a 
> hardware failure.

 The only thing that I have "discovered" is that for whatever reason
that keyboard doesn't plug directly to one and only one of the USB
ports (which I had used before just fine), but if connected through a
USB hub it works just fine. So I wonder what could be going on, or
"they" are just messing with me, make me "wonder" ... as if I didn't
have enough to do already.

 I do know that they somehow install keyloggers apparently through
java script on every computer I use even if I am using a computer at a
public library.

 On Windows, when I go: "Control Panel\Hardware and Sound" ... and
then click on: "view hardware and devices" I see what you are supposed
to see on the attached [ix

 lbrtchx


ALERTAN SUBESTIMACION DE CASOS: 1 de cada 100 mexicanos se hace la prueba

2020-08-12 Thread Ing . Victor Manuel Zurita Garcia
En México, menos de 1 de cada 100 mexicanos se ha hecho la prueba de COVID-19, 
convirtiéndonos en uno de los paises con menos pruebas en todo el mundo...
 
Pruebas Serológicas COVID-19 (Kit individual)
para Empresas e Instituciones
-APROBADAS POR COFEPRIS-

Pide justo lo que necesites, NO NECESITAS COMPRAR KITS DE 25 PRUEBAS.

¡MISMA CALIDAD, MENOR PRECIO!
MAYOR INFORMACIÓN Y COSTOS
Entregas a toda la república desde 48 horas.
Comunicarse con alguien a través de WhatsApp aquí
:Comunícate con alguno de nuestros ejecutivos a los teléfonos

Ciudad de México: (55) 2450 6187
Guadalajara, Jal. (33) 2005 0994
Monterrey, N.L. (81) 2974 7731


Este boletín informativo tiene como objetivo crear valor en usted y en su 
Empresa. Si usted desea dejar de recibir este tipo de información, conteste con 
la palabra BAJARAPIDA293. O en su defecto puede hacer click en el siguiente 
enlace: unsubscribe from this list


Re: dns cache for localdomain via djbdns

2020-08-12 Thread Greg Wooledge
On Wed, Aug 12, 2020 at 03:51:11PM +0200, Patrick Frank wrote:
> Greg writes: You can execute the "./run" script by hand for testing
> purposes [...]
> 
> When I tried "exec envuidgid Gnscache ..." it logged me out.

So don't do that.  Test it with ./run instead, like I said.

> Greg writes: unicorn:~$ ls -l /etc/dnscache/
> 
> This directory is missing the "supervise" directory.

Because you haven't started the service yet.  That will be created
once daemontools runs it for the first time.

> Dan writes: svc -d /service/dnscache
> 
> It outputs: unable to control /service/dnscache: file does not exist

Because you haven't started the service yet.

You need to create the symlink to start the service.



Re: dns cache for localdomain via djbdns

2020-08-12 Thread Patrick Frank



On 12.08.20 15:28, Dan Ritter wrote:

Greg Wooledge wrote:

On Wed, Aug 12, 2020 at 02:59:23PM +0200, Patrick Frank wrote:



Greg writes: You can execute the "./run" script by hand for testing
purposes [...]

When I tried "exec envuidgid Gnscache ..." it logged me out.


Greg writes: unicorn:~$ ls -l /etc/dnscache/

This directory is missing the "supervise" directory.


Dan writes: svc -d /service/dnscache

It outputs: unable to control /service/dnscache: file does not exist


P.



Re: dns cache for localdomain via djbdns

2020-08-12 Thread Dan Ritter
Greg Wooledge wrote: 
> On Wed, Aug 12, 2020 at 02:59:23PM +0200, Patrick Frank wrote:
> > Hello,
> > 
> > on a Debian 10 host I created a virtual machine with very basic features
> > to build a dns cache for my home network with djbdns. I fail to understand
> > how Daemontools are used properly.
> > 
> > Following the instructions on http://cr.yp.to/djbdns/install.html went okay.
> > http://cr.yp.to/djbdns/run-cache-x.html at step 5 is where I am stuck.
> > 
> > When I go to /service/dnscache and execute "run" it says "starting" so I
> > try svstat /service/dnscache which outputs:
> > "/service/dnscache: unable to open supervise/ok: file does not exist"
> 
> You can execute the "./run" script by hand for testing purposes, to
> make sure you've written it correctly, but that's not how daemontools
> will run it.  If your test is successful, you should Ctrl-C (or otherwise
> terminate) the ./run script that you ran manually.  Make sure it dies.
> 
> You tell daemontools to run the service by creating a symbolic link
> from the /service directory to the directory where the run script
> lives.
> 
> For example:
> 
> unicorn:~$ ls -l /service
> total 0
> lrwxrwxrwx 1 root root 13 Jan 12  2018 dnscache -> /etc/dnscache/
> lrwxrwxrwx 1 root root 39 Jan 12  2018 qmail-deliverabled -> 
> /var/qmail/supervise/qmail-deliverabled/
> lrwxrwxrwx 1 root root 31 Jan 12  2018 qmail-send -> 
> /var/qmail/supervise/qmail-send/
> lrwxrwxrwx 1 root root 28 Jan 12  2018 qpsmtpd -> 
> /var/qmail/supervise/qpsmtpd/
> 
> unicorn:~$ ls -l /etc/dnscache/
> total 24
> drwxr-sr-x 2 root root 4096 Jan 12  2018 env/
> drwxr-sr-x 4 root root 4096 Jan 12  2018 log/
> drwxr-sr-x 4 root root 4096 Jan 12  2018 root/
> -rwxr-xr-x 1 root root  142 Jan 12  2018 run*
> -rw--- 1 root root  128 Jan 12  2018 seed
> drwx--S--- 2 root root 4096 Aug  2 09:00 supervise/
> 
> The presence of the symlink /service/dnscache is picked up by svscan,
> which launches a supervisor process.

This is all correct, but in addition:

svc -d /service/dnscache
  brings it down via the supervisor, similar to the action of
"service dnscache stop" or "/etc/init.d/dnscache stop"

svc -u /service/dnscache
  should start running it again

All of this clashes with manual invocation of ./run, so that has
to be killed before daemontools can take over.

-dsr-



Re: dns cache for localdomain via djbdns

2020-08-12 Thread Greg Wooledge
On Wed, Aug 12, 2020 at 02:59:23PM +0200, Patrick Frank wrote:
> Hello,
> 
> on a Debian 10 host I created a virtual machine with very basic features
> to build a dns cache for my home network with djbdns. I fail to understand
> how Daemontools are used properly.
> 
> Following the instructions on http://cr.yp.to/djbdns/install.html went okay.
> http://cr.yp.to/djbdns/run-cache-x.html at step 5 is where I am stuck.
> 
> When I go to /service/dnscache and execute "run" it says "starting" so I
> try svstat /service/dnscache which outputs:
> "/service/dnscache: unable to open supervise/ok: file does not exist"

You can execute the "./run" script by hand for testing purposes, to
make sure you've written it correctly, but that's not how daemontools
will run it.  If your test is successful, you should Ctrl-C (or otherwise
terminate) the ./run script that you ran manually.  Make sure it dies.

You tell daemontools to run the service by creating a symbolic link
from the /service directory to the directory where the run script
lives.

For example:

unicorn:~$ ls -l /service
total 0
lrwxrwxrwx 1 root root 13 Jan 12  2018 dnscache -> /etc/dnscache/
lrwxrwxrwx 1 root root 39 Jan 12  2018 qmail-deliverabled -> 
/var/qmail/supervise/qmail-deliverabled/
lrwxrwxrwx 1 root root 31 Jan 12  2018 qmail-send -> 
/var/qmail/supervise/qmail-send/
lrwxrwxrwx 1 root root 28 Jan 12  2018 qpsmtpd -> /var/qmail/supervise/qpsmtpd/

unicorn:~$ ls -l /etc/dnscache/
total 24
drwxr-sr-x 2 root root 4096 Jan 12  2018 env/
drwxr-sr-x 4 root root 4096 Jan 12  2018 log/
drwxr-sr-x 4 root root 4096 Jan 12  2018 root/
-rwxr-xr-x 1 root root  142 Jan 12  2018 run*
-rw--- 1 root root  128 Jan 12  2018 seed
drwx--S--- 2 root root 4096 Aug  2 09:00 supervise/

The presence of the symlink /service/dnscache is picked up by svscan,
which launches a supervisor process.



dns cache for localdomain via djbdns

2020-08-12 Thread Patrick Frank

Hello,

on a Debian 10 host I created a virtual machine with very basic features
to build a dns cache for my home network with djbdns. I fail to understand
how Daemontools are used properly.

Following the instructions on http://cr.yp.to/djbdns/install.html went okay.
http://cr.yp.to/djbdns/run-cache-x.html at step 5 is where I am stuck.

When I go to /service/dnscache and execute "run" it says "starting" so I
try svstat /service/dnscache which outputs:
"/service/dnscache: unable to open supervise/ok: file does not exist"

Any hints, please?

P.



Re: tape drives

2020-08-12 Thread mick crane

On 2020-08-12 11:58, Dan Ritter wrote:


https://en.wikipedia.org/wiki/Linear_Tape-Open should be helpful
to you.


cheers
mick

--
Key ID4BFEBB31



Re: [OT] Remote SSH (dynamic IP) without third-party server

2020-08-12 Thread Michael Stone

On Tue, Aug 11, 2020 at 10:26:45PM -0500, David Wright wrote:

Registering a domain name with a dynamic DNS service is more complex
than registering an email service


It really isn't, but whatever. I really don't care if you want to come 
up with some workaround for DNS so feel free to stop arguing about how 
great it is to find an IP in an email header instead of just addressing 
the target via a DNS name.



I don't mind using a major third-party service for the asynchronous
rendezvous, and am not prepared to pay for a facility that I might
use very few times per year.


As has been pointed out repeatedly, there are free dynamic DNS services 
so I don't know why you keep insisting that it has to cost money.




Re: tape drives

2020-08-12 Thread Dan Ritter
The Wanderer wrote: 

> However, while I've considered using tapes for backup in my own private
> environment, last time I looked the cheapest tape drive with support for
> tapes large enough to be reasonable for my hard-drive capacities was
> $3000 - and that's just the drive, not the tapes. That rivals - and may
> surpass - the build-from-parts cost of my entire computer, which is
> already nearly half storage by dollars spent.
> 
> It's possible things have changed since then, but I'd be surprised if
> tape drives were economical enough to be practical in a non-commercial
> environment.

New tape drives are expensive because they are only sold to
businesses; used tape drives are cheap because no business wants
to buy them.

That said, even a new tape drive is a finicky beast compared to
a spinning disk; anyone operating them should really have a
spare drive, tested, sitting around and waiting for the primary
one to fail.

-dsr-



Re: tape drives

2020-08-12 Thread Dan Ritter
mick crane wrote: 
> Do people use tape drives for backup ?
> I saved data to tape before but I think they were DAT and not very big but
> see that these LTO-2 tapes are 600Gb and not expensive.
> Do people use those ?

Yes.

However, my company has switched over to using disk storage for
backups. The time-cost for retrieving a file or a directory is
much lower, and we do that small recovery much more often than
we need to bring back an entire machine. 

Also note that LTO-2 is 200GB per tape, not 600. Tape
manufacturers have an awful habit of pretending that all data is
compressible, and citing a compressed storage amount instead of
the raw storage amount.

https://en.wikipedia.org/wiki/Linear_Tape-Open should be helpful
to you.

-dsr-



Re: tape drives

2020-08-12 Thread The Wanderer
On 2020-08-12 at 06:44, mick crane wrote:

> Do people use tape drives for backup ?
> I saved data to tape before but I think they were DAT and not very big 
> but see that these LTO-2 tapes are 600Gb and not expensive.
> Do people use those ?

Depends on the context you're talking about.

I am given to understand that people do very much still use tape drives
for backup in a server-room / data-center type of context.

However, while I've considered using tapes for backup in my own private
environment, last time I looked the cheapest tape drive with support for
tapes large enough to be reasonable for my hard-drive capacities was
$3000 - and that's just the drive, not the tapes. That rivals - and may
surpass - the build-from-parts cost of my entire computer, which is
already nearly half storage by dollars spent.

It's possible things have changed since then, but I'd be surprised if
tape drives were economical enough to be practical in a non-commercial
environment.

-- 
   The Wanderer

The reasonable man adapts himself to the world; the unreasonable one
persists in trying to adapt the world to himself. Therefore all
progress depends on the unreasonable man. -- George Bernard Shaw



signature.asc
Description: OpenPGP digital signature


tape drives

2020-08-12 Thread mick crane

Do people use tape drives for backup ?
I saved data to tape before but I think they were DAT and not very big 
but see that these LTO-2 tapes are 600Gb and not expensive.

Do people use those ?

mick

--
Key ID4BFEBB31



Re: Some keys on the keyboard do not work

2020-08-12 Thread songbird
Dan Ritter wrote:
> Doug McGarrett wrote: 
>> 
>> Someone along this thread mentioned key-pullers. I have a couple of IBM
>> model M
>> keyboards that haven't been cleaned in years. They work well anyway, but I'd
>> like to clean
>> the keys. Where could I get one of those key-puller tools?
>> (If you ever get a chance to get one, TAKE IT! There's no better keyboard
>> anywhere than
>> this, altho it's too loud for a crowded office. And ALT-ESC will do the left
>> Windows-key
>
>
> $10 at NewEgg. $5-15 at Amazon.
>
> but the keycaps on the Model M are among the easiest to pull by
> hand; I like to have a small flat-bladed screwdriver nearby, to
> pop one edge of oddly-placed keycaps.
>
> You may want some isopropyl alcohol to wipe away finger-grease
> from the remaining surfaces of the keyboard.

  a butter knife will work ok too.

  i agree though about the Model M and similar keyboards and
really miss mine.  too bad that that unicomp keyboards won't
work for me (i've broke two of them the past x number of years
and can't figure out how to fix them and since they're not
sturdy enough it isn't worth sending them in for repairs).


  songbird



Re: Some keys on the keyboard do not work

2020-08-12 Thread songbird
rhkra...@gmail.com wrote:
> Oh, one other thing I should mention -- on most keyboards (at least the ones 
> I've cleaned) there are some metal pieces (essentially springs) under many of 
> the larger (wider) keys.  I am pretty sure they are intended to allow 
> pressing 
> either end (or the center) of those long keys (e.g., the space bar).
>
> I am careful with those, also, to pay attention to how they are installed, 
> and 
> then to reinstall the same way, and also, during the reinstallation, I use a 
> toothpick to put a little bit of vaseline on the pivot point (where they 
> attach to the keyboard).

  yeah, there can be a bit of a challenge to figure out
some things.

  right now i have two keyboards i took apart to see if 
i could fix them or combine them to get one working keyboard
but as it turns out there is some kind of pressure/ribbon
connection inside that i've screwed up and now both are shot 
for sure.  too bad as i really liked them, but they could 
not hold up to how i used them and broke (all plastic case
is too flexible and eventually the connections inside fail
if you use it unsupported propped across your lap).


  songbird



Re: is there a way to corrupt the BIOS and/or the keybord on you laptop from the Internet? ...

2020-08-12 Thread Andrei POPESCU
On Sb, 08 aug 20, 16:24:59, Albretch Mueller wrote:
> 
>  What do you think might be "technically" going on?

Bugs: keyboard firmware, BIOS, Linux, etc.

Kind regards,
Andrei
-- 
http://wiki.debian.org/FAQsFromDebianUser


signature.asc
Description: PGP signature