Announcement

Collapse
No announcement yet.

security updates & external hard disk woes...

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    On a relatively new system you should not need the udev rules thing, an external drive should auto mount once you click on it in the pager or in Dolphin.

    Losing all your settings when renaming .kde is as expected.
    The fact you lost your mail tells me you are using Kmail, because Thunderbird would be in a hidden .thunderbird file in your home, not in .kde.

    If this had any beneficial influence on recovering the lost data fine, if not you can put the original back and your mail will be back too.

    Dolphin properties telling you there are x-thousands of files will be based on hard fact, a good sign indeed

    It seems you don't see them in Dolphin?
    You know how to show hidden files? (press Alt+. that's Alt plus a dot)

    Another way is to use the CLI, when in Dolphin and on the 'empty' directory you press F4.
    This will open a terminal in the bottom half of Dolphin with the cursor in the directory that has focus in the top half.

    Type
    Code:
    ls -n
    and hit return, you should get a list of the content with two columns of the number 1000, that's you the regular owner and group you belong to.
    In case you see rows of different numbers like 1001 or 27 we'll have to fix the ownership.
    In case you see nothing you can try again with
    Code:
    ls -a -n
    , the -a makes hidden files visible.
    Last edited by Teunis; Aug 18, 2013, 02:15 PM.

    Comment


      #17
      Originally posted by Teunis View Post
      Losing all your settings when renaming .kde is as expected.
      The fact you lost your mail tells me you are using Kmail, because Thunderbird would be in a hidden .thunderbird file in your home, not in .kde.
      i didn't actually lose any of my email, but it appears that i may have lost my filters, or, perhaps, some of the directories have been "changed" or something.

      at this point, after crashing twice, once when i booted after renaming ~/.kde and once after replacing it with a ~/.kde from a backup, kmail is functioning the way i would expect.

      Originally posted by Teunis View Post
      If this had any beneficial influence on recovering the lost data fine
      it didn't have any effect on the recovery of my lost data, but it did have a significant effect on the recovery of my preferences, which it would have taken me hours, if not days to reconstruct...

      Originally posted by Teunis View Post
      Dolphin properties telling you there are x-thousands of files will be based on hard fact, a good sign indeed
      i figured it was... now to figure out how to make them visible.

      Originally posted by Teunis View Post
      It seems you don't see them in Dolphin?
      You know how to show hidden files? (press Alt+. that's Alt plus a dot)

      Another way is to use the CLI, when in Dolphin and on the 'empty' directory you press F4.
      This will open a terminal in the bottom half of Dolphin with the cursor in the directory that has focus in the top half.

      Type
      Code:
      ls -n
      and hit return, you should get a list of the content with two columns of the number 1000, that's you the regular owner and group you belong to.
      In case you see rows of different numbers like 1001 or 27 we'll have to fix the ownership.
      In case you see nothing you can try again with
      Code:
      ls -a -n
      , the -a makes hidden files visible.
      nope. NONE of this did anything to show me where that 31.3GB is hiding... 8/

      it's still there, i just can't see (or access) any of it.
      Last edited by przxqgl; Aug 18, 2013, 02:35 PM.
      ⇑ Hybrid Elephant
      http://www.hybridelephant.com/
      ⇓ The world's finest exotic incense

      Comment


        #18
        Forgive me when I sometimes ask for what might be obvious to you but as you noted we don't know each other...

        You are sure the properties that report the thousands of files were done on the directory that otherwise seems empty?
        When Dolphin reports 'something' surely the list command should show at least similar.

        Back to the terminal (or Konsole)
        Code:
        ls -R -1 | wc -l
        This is a Recursive list command, it should give you the number of all files in this and the subdirectories.
        Adding -a will include hidden files.
        Code:
        ls -R -a -1 | wc -l
        Another command would be:
        Code:
        find | wc -l
        This should really show a similar number to what the Dophin properties report...

        Comment


          #19
          Originally posted by Teunis View Post
          Forgive me when I sometimes ask for what might be obvious to you but as you noted we don't know each other...
          it's okay... how else are we going to get to know each other? 8)

          Originally posted by Teunis View Post
          You are sure the properties that report the thousands of files were done on the directory that otherwise seems empty?
          correct. when i view /media/home/salamandir, i see two empty directories, /Desktop and /Downloads, however when i right-click in the window and choose "Properties" it tells me that 31.3GB are used for 45,227 files, which is about 13% of the 913.8GB available on the partition.

          Originally posted by Teunis View Post
          When Dolphin reports 'something' surely the list command should show at least similar.
          one would think so...

          Originally posted by Teunis View Post
          Back to the terminal (or Konsole)
          Code:
          ls -R -1 | wc -l
          This is a Recursive list command, it should give you the number of all files in this and the subdirectories.
          what i get is

          Code:
          salamandir@Gingko:/media/home/salamandir$ ls -R -1 | wc -l
          13770
          Originally posted by Teunis View Post
          Adding -a will include hidden files.
          Code:
          ls -R -a -1 | wc -l
          that gives me:

          Code:
          salamandir@Gingko:/media/home/salamandir$ ls -R -a -1 | wc -l
          62188
          Originally posted by Teunis View Post
          Another command would be:
          Code:
          find | wc -l
          This should really show a similar number to what the Dophin properties report...
          that gives me

          Code:
          salamandir@Gingko:/media/home/salamandir$ find | wc -l
          48662
          somewhat confusing, and definitely a step into a realm that i know nothing about... what's next? 8)
          Last edited by przxqgl; Aug 18, 2013, 04:09 PM.
          ⇑ Hybrid Elephant
          http://www.hybridelephant.com/
          ⇓ The world's finest exotic incense

          Comment


            #20
            Around my bedtime I would one more time use Dolphin and it's Cntr+F.
            This time I suggest to use the wildcard
            Code:
            *.
            this should make a huge list of files.

            You might want to start a little safer and only search for the
            Code:
            *.jpg
            pictures you think there should be.

            Or also safer go
            Code:
            a*.
            that will only show files who's name start with an 'a'

            Now or before, in the top of Dolphin's main window you can right-click on 'name' or 'size', from the drop down menu you select Others and then put a check in front of Path.
            This will show you where these files are hiding.

            Comment


              #21
              Originally posted by Teunis View Post
              Around my bedtime I would one more time use Dolphin and it's Cntr+F.
              This time I suggest to use the wildcard
              Code:
              *.
              this should make a huge list of files.

              SNIP!

              Now or before, in the top of Dolphin's main window you can right-click on 'name' or 'size', from the drop down menu you select Others and then put a check in front of Path.
              This will show you where these files are hiding.
              i did the *.jpg search, and found A WHOLE BUNCH of files, most of which i remembered immediately...

              and then, WHAM! and suddenly the empty /Desktop directory had all of my stuff in it. i believe, at this point, all i have to do is move it from /Desktop one level down, and everything should be as it was.

              i appreciate the help! 8) 8) 8)
              ⇑ Hybrid Elephant
              http://www.hybridelephant.com/
              ⇓ The world's finest exotic incense

              Comment


                #22
                Great to hear!!
                It took a while but we were careful and worked in small steps so as not to upset things.

                One last question, were all these files in a single directory or were there very many of directories?
                I ask because last week there were a few people complaining Dolphin took on large collections a looong time to populate it's window with content and they had to hit F5 to refresh.
                Do you have it set to display Details or are you displaying (large) icons?
                In case of the last it might have been slow as after the rename of the file structure it lost the connection with the .icons cache.

                Comment


                  #23
                  Originally posted by Teunis View Post
                  Great to hear!!
                  It took a while but we were careful and worked in small steps so as not to upset things.
                  i really appreciate your help. i was fairly sure that the data existed, somewhere, i just didn't have the first clue where...

                  then when the "WHAM!" happened and the /Desktop directory went from empty to full of my data, it was a huge releif. i was, hesitantly, ready to give up and start over, even knowing that all the data was intact, but that i just couldn't get to it. it would have been disasterous, but i was prepared for it. now i don't have to worry any longer. 8)

                  ... about THAT disaster... ;-)

                  Originally posted by Teunis View Post
                  One last question, were all these files in a single directory or were there very many of directories?
                  they were in many directories: i had the following directories in the /media/home/salamandir path, including /Documents, /Downloads, /Dropbox, /Install, /Music, /Pictures and /Torrents that had many files and subdirectories (as you can well imagine, given that it was 31.3GB of information), and they're all back to where they should be...

                  i'm so happy... thank you

                  Originally posted by Teunis View Post
                  I ask because last week there were a few people complaining Dolphin took on large collections a looong time to populate it's window with content and they had to hit F5 to refresh.
                  Do you have it set to display Details or are you displaying (large) icons?
                  In case of the last it might have been slow as after the rename of the file structure it lost the connection with the .icons cache.
                  actually, all of my windows in Dolphin are set to display "Details" and i've even gone so far as to have "Tiny Icons" rather than the normal small icons, because to me, the filenames mean more to me than what kind of icon the file has... despite the fact that i don't remember what the filenames are, anyway.

                  i have noticed some subtle differences, however: primarily i use Firefox, and it appears that my "Default Browser" has changed to Rekonq, some, but (strangely) not all of my email is ending up in my Inbox, rather than in the subdirectories that i have filtered them into in the past, and probably other things that i don't immediately notice, but, all in all, it could be a lot worse.

                  once again, thank you for your patience, understanding and assistance. if you feel like sending me your mailing address, i'll send you some expensive incense, as "payment"... 8)
                  Last edited by przxqgl; Aug 19, 2013, 10:12 AM.
                  ⇑ Hybrid Elephant
                  http://www.hybridelephant.com/
                  ⇓ The world's finest exotic incense

                  Comment


                    #24
                    Great!

                    Thanks for the information about the use of Dolphin, this was not a lost icons cache.
                    But it remains strange Dolphin needed so much coaching to reveal the hoard...

                    And thanks for the offer, I saw your website and as a frequent world traveller I have some idea what you offer, nice stuff even for non-hippies
                    But I really like this site and just friendship is sufficient reward!
                    I'm sure you can think of a worthy good cause in your neighbourhood.
                    Or make a small donation to this forum.

                    You've done quite well with your computer, not dumping it right away but instead willing to try various options for recovery.
                    Hang around this forum and you will end up even more competent in the use of Linux and Kubuntu.

                    Comment


                      #25
                      Originally posted by Teunis View Post
                      But it remains strange Dolphin needed so much coaching to reveal the hoard...
                      before my injury i worked as a software tester, and what i saw in this case was surprisingly typical for otherwise "normally" functioning computers... i'm fairly sure that i couldn't reproduce the behaviour in a million years. the problem was clearly a result of what i have come to refer to as "computer demons".

                      Originally posted by Teunis View Post
                      Or make a small donation to this forum.
                      that's an idea... i have been a member for a while, and, while i never had anything like the kinds of difficulties i had in the past few days, i think that a donation to kubuntuforums dot net would be a great way to pay them (and you) back for all your help...

                      Originally posted by Teunis View Post
                      You've done quite well with your computer, not dumping it right away but instead willing to try various options for recovery.
                      Hang around this forum and you will end up even more competent in the use of Linux and Kubuntu.
                      i do a lot of other things: i am a musician and i play with several different bands, and work at a variety of different occupations, so i may not turn into a "regular" here, but, as i said, i have been a member for a while, and every time i need to know something about kubuntu, this is the first place i come...

                      thanks, once again! 8)
                      ⇑ Hybrid Elephant
                      http://www.hybridelephant.com/
                      ⇓ The world's finest exotic incense

                      Comment

                      Working...
                      X