Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.misc > #13236

Re: How do home users of linux protect themselves against ill-advised changes?

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!news.albasani.net!.POSTED!not-for-mail
From Johnny <johnny@invalid.net>
Newsgroups comp.os.linux.misc
Subject Re: How do home users of linux protect themselves against ill-advised changes?
Date Sun, 4 Jan 2015 17:18:23 -0600
Organization albasani.net
Lines 56
Message-ID <20150104171823.76b222d9@jspc> (permalink)
References <mpro.nhmgax01ltwud02og@wingsandbeaks.org.uk.invalid>
Mime-Version 1.0
Content-Type text/plain; charset=US-ASCII
Content-Transfer-Encoding 7bit
X-Trace news.albasani.net 8wgR7gs2dBPWFrKHsP/YHm9NZeu1aJ3TIteSB+ucDMytx8xZCCPlY6L4eYM/oVHLL5uF+N87jB2znBWxMqJnPQ==
NNTP-Posting-Date Sun, 4 Jan 2015 23:18:23 +0000 (UTC)
Injection-Info news.albasani.net; logging-data="MVdJ/5+Ng/0zu3pb/WDQwCBqlhJs8obnZz13PQQIjSew4FGoxku81nVCMG8XOOs5GQubAqeNRJT9K6yg6Juagh+s5aOLiph0xU+Odw67cr/rjMbOfprzNurtgvSCWvNM"; mail-complaints-to="abuse@albasani.net"
X-Newsreader Claws Mail 3.9.3 (GTK+ 2.24.23; x86_64-pc-linux-gnu)
Face iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAIVBMVEUBEkkoR4kBGFL+/v6gqrwDHVMABi9UaJvo6On5+fkXKlYbNFA9AAACYUlEQVQ4jZ3UzU/iQBQA8GdDMfFkN4rEE76AJl71sNzoLqFdTrShmnhCImPCCQwr6I3YLANXSLa94aYUt3/lvpnyqdk97Dt1+uubmb75gIu/BPwP5I3uuyi+SBiwuqVtxoGeFpAPtVNQcs4yECy9+5XgEo4OXzVt2U1bO7Z0/TfBz/bRcbQVN1rq7gLyfaNd2YaZdXo3hny5U1Ble14sUmrwHEVW8v4FPhcOWo6EwJ80o+ib786sKwGlasuREnC3Gc09XlZ3Ysi2xCwXkOZ86pyEMTyg/IGqgCHvN+xNMGYC9gKPPzq4gOoDYtXTZcYTd+v2JlDXxWA4ufV4QcVNOOd8kPAnbx4NvZWBPTdM+N7QG9RxKyMXFNSq73v+yFnBo8xIT+2q79Ews21wig2CSXPolzfgE54fjVQkqPX8gY2ZnQXsnw39HzZm/Us1wfl3hBVQs+RIuDH5KLOE6/1dAlt0pVTS3J2uAZqdgp0TgPTNA8RlfzzbBwCajISMyfsrSNUAu6KQhoK5N7fFbjcgOKTZMwW7eyFbwq6Anm4jUvncKQJrxku7m2JA1S3TJsQeb29DlnP+7Nx0PO7aBKcr6PHBq0lrEpnuL2ANua9KOwR7BlTuucvgXq+t4JYAapi75n3VzjBcQ8hqoCBe8xGVXMkkWYPFcBXDiVkiQFjCFyXJSGh5o1C8B8aaEvT2FWM0Cr2jUgElMEuCQYdIW58o8Zxidy+Q15MiQYn3L20q6oqxgMAImYwaiEjGjc4YLtxn+QjrSLK5SYfTM6IP0RmKc+4W398MHXMsrwz+Icb/uGT+AITWfCQjN2tRAAAAAElFTkSuQmCC
Cancel-Lock sha1:L8VnYv6ZmXGNmsg5ct2Fq0i/yJo=
Xref csiph.com comp.os.linux.misc:13236

Show key headers only | View raw


On Sat, 3 Jan 2015 22:11:23 +0000
Jeremy Nicoll - news posts <jn.nntp.scrap007@wingsandbeaks.org.uk>
wrote:

> How do home users of linux protect themselves against ill-advised
> changes?
> 
> What I mean is, if they install patches or some package whose
> configuration screws things up, and they then can't boot - what then?

If you are thinking about moving from XP to Linux, I would recommend
Linux Mint KDE, it is the most configurable using the GUI.

I have been using Linux Mint for just over a year, and for the first
few months I was reinstalling it constantly because I was poking around
trying to figure out what everything was and how it worked.

I had made up my mind I was going to learn to use Linux Mint, and I was
not going back to Windows 7.

The first thing I did was to create two partitions on my hard drive,
and install Linux Mint KDE on both, and set them up exactly the same.
I knew if I screwed up one, the other would still be usable.

If you have Intel Graphics you won't have any problem, If you have
Nvidia, you might have a problem and have to install in compatibility
mode, and then install the right driver.

I can say updates have never caused a problem, I always caused the
problem, and it was usually in my home directory.

Then a nice guy, Kirk_Von_Rockstein, showed me how to use rsync to
backup my home directory, and that ended most of my problems.

I think I should pass that information along to people moving from XP
to Linux.

This is how it's done, except replace my user name with yours:

sudo mkdir -p /usr/local/backups

sudo -av /home/johnny /usr/local/backups

Then when you want to restore:

rsync -av --delete /usr/local/backups/johnny/ /home/johnny

When you want to backup, which should be done often:

rsync -av --delete /home/johnny/ /usr/local/backups/johnny

If Linux Mint becomes unusable, and you can't get to the Terminal, just
hit Ctrl-Alt-F1 and you will get a virtual Terminal, that will allow
you to use rsync to restore your home directory.

Back to comp.os.linux.misc | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

How do home users of linux protect themselves against ill-advised changes? Jeremy Nicoll - news posts <jn.nntp.scrap007@wingsandbeaks.org.uk> - 2015-01-03 22:11 +0000
  Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-03 22:25 +0000
  Re: How do home users of linux protect themselves against ill-advised changes? Grant <omg@grrr.id.au> - 2015-01-04 09:48 +1100
  Re: How do home users of linux protect themselves against ill-advised changes? Jack Strangio  <jackstrangio@yahoo.com> - 2015-01-04 01:36 +0000
  Re: How do home users of linux protect themselves against ill-advised changes? William Unruh <unruh@invalid.ca> - 2015-01-04 03:43 +0000
    Re: How do home users of linux protect themselves against ill-advised changes? Jerry Peters <jerry@example.invalid> - 2015-01-04 21:31 +0000
    Re: How do home users of linux protect themselves against ill-advised changes? Jeremy Nicoll - news posts <jn.nntp.scrap007@wingsandbeaks.org.uk> - 2015-01-05 18:30 +0000
      Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-05 19:17 +0000
        Re: How do home users of linux protect themselves against ill-advised  changes? Robert Heller <heller@deepsoft.com> - 2015-01-05 13:48 -0600
        Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 21:04 +0000
      Re: How do home users of linux protect themselves against ill-advised changes? Robert Heller <heller@deepsoft.com> - 2015-01-05 13:48 -0600
        Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-05 21:08 +0000
          Re: How do home users of linux protect themselves against ill-advised  changes? Robert Heller <heller@deepsoft.com> - 2015-01-05 15:23 -0600
            Re: How do home users of linux protect themselves against ill-advised  changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-05 21:29 +0000
              Re: How do home users of linux protect themselves against ill-advised  changes? Mladen Gogala <gogala.mladen@gmail.com> - 2015-01-06 01:29 +0000
          Re: How do home users of linux protect themselves against ill-advised changes? Keith Keller <kkeller-usenet@wombat.san-francisco.ca.us> - 2015-01-05 13:22 -0800
      Re: How do home users of linux protect themselves against ill-advised changes? Jerry Peters <jerry@example.invalid> - 2015-01-05 21:32 +0000
      Re: How do home users of linux protect themselves against ill-advised changes? "J. Clarke" <j.clarke.873638@gmail.com> - 2015-03-06 01:44 -0500
        Re: How do home users of linux protect themselves against ill-advised changes? William Unruh <unruh@invalid.ca> - 2015-03-06 16:19 +0000
  Re: How do home users of linux protect themselves against ill-advised changes? Richard Kettlewell <rjk@greenend.org.uk> - 2015-01-04 12:16 +0000
    Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-04 13:33 +0000
      Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-04 14:00 +0000
        Re: How do home users of linux protect themselves against ill-advised  changes? Robert Heller <heller@deepsoft.com> - 2015-01-04 08:29 -0600
          Re: How do home users of linux protect themselves against ill-advised  changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-04 15:06 +0000
            Re: How do home users of linux protect themselves against ill-advised   changes? Robert Heller <heller@deepsoft.com> - 2015-01-04 09:31 -0600
              Re: How do home users of linux protect themselves against ill-advised changes? Ant <ant@zimage.comANT> - 2015-01-04 09:29 -0800
              Re: How do home users of linux protect themselves against ill-advised   changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-04 18:25 +0000
        Re: How do home users of linux protect themselves against ill-advised changes? William Unruh <unruh@invalid.ca> - 2015-01-04 17:56 +0000
          Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-04 18:20 +0000
            Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-04 23:30 +0000
              Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 11:15 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-05 12:33 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 12:49 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-05 13:10 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 13:36 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Jeremy Nicoll - news posts <jn.nntp.scrap007@wingsandbeaks.org.uk> - 2015-01-05 18:56 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Marc Haber <mh+usenetspam1118@zugschl.us> - 2015-01-05 15:13 +0100
                Re: How do home users of linux protect themselves against ill-advised changes? Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2015-01-05 12:31 -0800
                Re: How do home users of linux protect themselves against ill-advised changes? notbob <notbob@nothome.com> - 2015-01-05 16:05 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Aragorn <thorongil@telenet.be.invalid> - 2015-01-05 18:05 +0100
                Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 18:12 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Aragorn <thorongil@telenet.be.invalid> - 2015-01-06 09:56 +0100
      Re: How do home users of linux protect themselves against ill-advised  changes? Robert Heller <heller@deepsoft.com> - 2015-01-04 08:21 -0600
        Re: How do home users of linux protect themselves against ill-advised  changes? William Unruh <unruh@invalid.ca> - 2015-01-04 18:04 +0000
    Re: How do home users of linux protect themselves against ill-advised changes? Jeremy Nicoll - news posts <jn.nntp.scrap007@wingsandbeaks.org.uk> - 2015-01-05 18:43 +0000
      Re: How do home users of linux protect themselves against ill-advised changes? Robert Heller <heller@deepsoft.com> - 2015-01-05 13:48 -0600
      Re: How do home users of linux protect themselves against ill-advised changes? Richard Kettlewell <rjk@greenend.org.uk> - 2015-01-05 19:51 +0000
  Re: How do home users of linux protect themselves against ill-advised changes? Johnny <johnny@invalid.net> - 2015-01-04 17:18 -0600
    Re: How do home users of linux protect themselves against ill-advised changes? Johnny <johnny@invalid.net> - 2015-01-04 17:26 -0600
  Re: How do home users of linux protect themselves against ill-advised changes? Dan Espen <despen@verizon.net> - 2015-01-04 18:57 -0500
    Re: How do home users of linux protect themselves against ill-advised changes? Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2015-01-04 16:07 -0800
      Re: How do home users of linux protect themselves against ill-advised changes? Dan Espen <despen@verizon.net> - 2015-01-04 19:57 -0500
      Re: How do home users of linux protect themselves against ill-advised changes? William Unruh <unruh@invalid.ca> - 2015-01-05 01:01 +0000
        Re: How do home users of linux protect themselves against ill-advised changes? Dan Espen <despen@verizon.net> - 2015-01-04 23:20 -0500
          Re: How do home users of linux protect themselves against ill-advised changes? William Unruh <unruh@invalid.ca> - 2015-01-05 06:49 +0000
      Re: How do home users of linux protect themselves against ill-advised changes? Keith Keller <kkeller-usenet@wombat.san-francisco.ca.us> - 2015-01-04 18:40 -0800
      Re: How do home users of linux protect themselves against ill-advised changes? notbob <notbob@nothome.com> - 2015-01-05 16:02 +0000
        Re: How do home users of linux protect themselves against ill-advised changes? Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2015-01-05 12:42 -0800
          Re: How do home users of linux protect themselves against ill-advised changes? Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2015-01-06 04:08 +0000
            Re: How do home users of linux protect themselves against ill-advised changes? Bobbie Sellers <bliss-sf4ever@dslextreme.com> - 2015-01-05 22:01 -0800
              Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-06 06:59 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Aragorn <thorongil@telenet.be.invalid> - 2015-01-06 10:00 +0100
                Re: How do home users of linux protect themselves against ill-advised changes? notbob <notbob@nothome.com> - 2015-01-06 14:59 +0000
  Re: How do home users of linux protect themselves against ill-advised changes? Marc Haber <mh+usenetspam1118@zugschl.us> - 2015-01-05 14:21 +0100
    Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 13:35 +0000
      Re: How do home users of linux protect themselves against ill-advised changes? Marc Haber <mh+usenetspam1118@zugschl.us> - 2015-01-05 15:14 +0100
        Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 14:25 +0000
          Re: How do home users of linux protect themselves against ill-advised changes? Marc Haber <mh+usenetspam1118@zugschl.us> - 2015-01-05 16:18 +0100
          Re: How do home users of linux protect themselves against ill-advised  changes? Robert Heller <heller@deepsoft.com> - 2015-01-05 09:35 -0600
          Re: How do home users of linux protect themselves against ill-advised changes? notbob <notbob@nothome.com> - 2015-01-05 16:16 +0000
            Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 16:20 +0000
              Re: How do home users of linux protect themselves against ill-advised changes? notbob <notbob@nothome.com> - 2015-01-05 16:50 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 18:12 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-05 19:20 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 21:05 +0000
              Re: How do home users of linux protect themselves against ill-advised changes? Marc Haber <mh+usenetspam1118@zugschl.us> - 2015-01-05 23:25 +0100
                Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-05 22:48 +0000
                Re: How do home users of linux protect themselves against ill-advised changes? Marc Haber <mh+usenetspam1118@zugschl.us> - 2015-01-06 19:11 +0100
                Re: How do home users of linux protect themselves against ill-advised changes? Tim Watts <tw_usenet@dionic.net> - 2015-01-06 18:28 +0000
        Re: How do home users of linux protect themselves against ill-advised changes? William Unruh <unruh@invalid.ca> - 2015-01-05 15:50 +0000
          Re: How do home users of linux protect themselves against ill-advised changes? Richard Kettlewell <rjk@greenend.org.uk> - 2015-01-05 16:30 +0000
            Re: How do home users of linux protect themselves against ill-advised changes? John Hasler <jhasler@newsguy.com> - 2015-01-05 10:51 -0600
              Re: How do home users of linux protect themselves against ill-advised changes? The Natural Philosopher <tnp@invalid.invalid> - 2015-01-05 19:20 +0000
          Re: How do home users of linux protect themselves against ill-advised changes? Marc Haber <mh+usenetspam1118@zugschl.us> - 2015-01-05 23:26 +0100
            Re: How do home users of linux protect themselves against ill-advised changes? John Hasler <jhasler@newsguy.com> - 2015-01-05 16:43 -0600

csiph-web