Spark KDE table pre-orders open

2012-02-17 Thread der.hans

moin moin,

7 tablet running KDE's Plasma Active, should be available in May.

7 Inch multi-touch capacitive screen
1 GHz ARM Cortex A9 processor with Mali 400 GPU
512 MB DDR2 RAM
4 GB Nand Flash Disk
Wireless Wi-Fi 802.11 b/g (3G via USB Extenal)
1.3 MP built-in front facing camerica
HDMI 1080P Output
2 USB ports
MicroSD slot
3.5 mm audio jack
Hardware volume and power buttons
4 dimensional Gsensor
Battery: 3000mAH @ 7.4v
Weight: 355 grams

Target price of €200.

http://aseigo.blogspot.in/2012/02/spark-pre-order-registration-is-open.html

ciao,

der.hans
--
#  http://www.LuftHans.com/http://www.LuftHans.com/Classes/
#  ABLEconf: http://www.ABLEconf.com/2012/Phoenix/Schedule
#  Saturday, March 24th @ UAT in Tempe - Free Software for Free Enterprise
#  Metrosexuals notwithstanding, quiche still lacks something. -- David Brin---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: ssh

2012-02-17 Thread Stephen
To muddy the water more from the windows side you can use cygwin to get the
core Linux commands and use the same backup plan in place

You could even use rsync...

Linux has tons of ways to run backups...
On Feb 17, 2012 12:05 AM, Michael Havens bmi...@gmail.com wrote:

 cool after investigating further I've modified my command string.
 Could you show me how to make it right (I just assume I'm wrong anymore!)?

 scp -r -o Compression yes -o CompressionLevel 9 user1@host1:mnt/sda1
 user2@host2:desired/directory/file/name


 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: ssh

2012-02-17 Thread kitepi...@kitepilot.com

Mike, take a look at 'rsync'.
ET 



Michael Havens writes: 

so wait a second could I put fsarchiver on the server and then: 


tar --ignore-failed-read [/mnt/sda1] -czf - | ssh
remoteuser@remote.systemtar -xzf - | fsarchiver command 


so the tar command will create a tarball and the the pipe will transfer the
tarball to the server and extract it wich the second pipe will feed into
fsarchiver. Is that correct? I have a question: what does the minus sign in
front of the pipes represent?  Well... I know it represents the name of the
tar ball but is it the name? Could I put anything in that place? 


and then Enriques command  (tar jcf - /path/to/backup|ssh
user@otherbox'tar xf -') would compress a tarball and then create a
non compressed
archive on the server. 


You know... I wondered if I could use scp for this. Investigating the man
page reveals that this is the program I want to use. The text of the
command that I should issue I think would be (I want to do this from a
third computer): 

scp -Cr user1@host1:mnt/sda1 user2@host2:desired/directory/file/name 


I don't know if I assigned a user1 or a host1 name. How can I find this
out? If I didn't how would I assign one or change it to a more appropriate
name? 


This is fun!

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: ssh

2012-02-17 Thread kitepi...@kitepilot.com
In order to ssh into a windoze box as user@host, you'll need to set up a SSH 
server in the windoze box and establish a shell to login into which will 
honor your commands (which all I have done in the past).

Have you considered alcoholism?
You may have a better shot...   :) 

As a rule of thumb, you initiate the backup of a windoze box FROM the box 
itself.

Unless you enjoy self-inflicted pain...
ET 




Michael Havens writes: 


one more thing how would I figure out the  user@host name of a windows
computer?
with that I'll be able to backup my brothers computer! 

On Thu, Feb 16, 2012 at 11:42 PM, Michael Havens bmi...@gmail.com wrote: 

so wait a second could I put fsarchiver on the server and then: 

tar --ignore-failed-read [/mnt/sda1] -czf - | ssh remoteuser@remote.systemtar -xzf - | fsarchiver command 


so the tar command will create a tarball and the the pipe will transfer
the tarball to the server and extract it wich the second pipe will feed
into fsarchiver. Is that correct? I have a question: what does the minus
sign in front of the pipes represent?  Well... I know it represents the
name of the tar ball but is it the name? Could I put anything in that
place? 


and then Enriques command  (tar jcf - /path/to/backup|ssh user@otherbox'tar xf 
-') would compress a tarball and then create a non compressed
archive on the server. 


You know... I wondered if I could use scp for this. Investigating the man
page reveals that this is the program I want to use. The text of the
command that I should issue I think would be (I want to do this from a
third computer): 

scp -Cr user1@host1:mnt/sda1 user2@host2:desired/directory/file/name 


I don't know if I assigned a user1 or a host1 name. How can I find this
out? If I didn't how would I assign one or change it to a more appropriate
name? 

This is fun! 

 



--
:-)~MIKE~(-:

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: ssh

2012-02-17 Thread Michael Havens
hm not working. I wonder why. Any ideas?

bmike1@Michaels-Laptop ~ $ scp -r -o Compression yes -o CompressionLevel 9
-o HostName 192.168.0.3:mnt/sda1
fatherswithforeignbabies...@fatherswithforeignbabies.us:copies/2012-2-17
command-line line 0: Missing yes/no argument.
lost connection
bmike1@Michaels-Laptop ~ $

The yes/no argument is there though!
I tried putting the yes in quotes, capitalized, just y, and some others I
can't remember.

On Fri, Feb 17, 2012 at 12:05 AM, Michael Havens bmi...@gmail.com wrote:

 cool after investigating further I've modified my command string.
 Could you show me how to make it right (I just assume I'm wrong anymore!)?

 scp -r -o Compression yes -o CompressionLevel 9 user1@host1:mnt/sda1
 user2@host2:desired/directory/file/name




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: ssh

2012-02-17 Thread kitepi...@kitepilot.com

Mike, look at the path after the colon:
what that says is:
'copy whatever is inbound to a directory named mnt/sda1
located in my HOME directory'
Is that what you want?
Probably not...
ET 




Michael Havens writes: 

hm not working. I wonder why. Any ideas? 


bmike1@Michaels-Laptop ~ $ scp -r -o Compression yes -o CompressionLevel 9
-o HostName 192.168.0.3:mnt/sda1
fatherswithforeignbabies...@fatherswithforeignbabies.us:copies/2012-2-17
command-line line 0: Missing yes/no argument.
lost connection
bmike1@Michaels-Laptop ~ $ 


The yes/no argument is there though!
I tried putting the yes in quotes, capitalized, just y, and some others I
can't remember. 

On Fri, Feb 17, 2012 at 12:05 AM, Michael Havens bmi...@gmail.com wrote: 


cool after investigating further I've modified my command string.
Could you show me how to make it right (I just assume I'm wrong anymore!)? 


scp -r -o Compression yes -o CompressionLevel 9 user1@host1:mnt/sda1
user2@host2:desired/directory/file/name 



 


--
:-)~MIKE~(-:

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: Spark KDE table pre-orders open

2012-02-17 Thread Michael Havens
leave it to the europeans! i would think redhat or one of those other FOSS
companies should have done that. but then again FOSS is softwaare and a
tablet is hardware. did you know the train was invented by the europeans. I
always thought the US  invented the train. Then I watched a program on
discovery or one of those other channels and learned otherwise!.

On Fri, Feb 17, 2012 at 1:13 AM, der.hans pl...@lufthans.com wrote:
moin moin,


 7 tablet running KDE's Plasma Active, should be available in May.

7 Inch multi-touch capacitive screen
1 GHz ARM Cortex A9 processor with Mali 400 GPU
512 MB DDR2 RAM
4 GB Nand Flash Disk
Wireless Wi-Fi 802.11 b/g (3G via USB Extenal)
1.3 MP built-in front facing camerica
HDMI 1080P Output
2 USB ports
MicroSD slot
3.5 mm audio jack
Hardware volume and power buttons
4 dimensional Gsensor
Battery: 3000mAH @ 7.4v
Weight: 355 grams

 Target price of €200.

 http://aseigo.blogspot.in/**2012/02/spark-pre-order-**
 registration-is-open.htmlhttp://aseigo.blogspot.in/2012/02/spark-pre-order-registration-is-open.html

 ciao,

 der.hans
 --
 #  http://www.LuftHans.com/
 http://www.LuftHans.com/**Classes/http://www.LuftHans.com/Classes/
 #  ABLEconf: 
 http://www.ABLEconf.com/2012/**Phoenix/Schedulehttp://www.ABLEconf.com/2012/Phoenix/Schedule
 #  Saturday, March 24th @ UAT in Tempe - Free Software for Free Enterprise
 #  Metrosexuals notwithstanding, quiche still lacks something. -- David
 Brin
 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: ssh

2012-02-17 Thread Michael Havens
hey. I figured out the username/hostid thing. the laptop is
'bmike1@Michaels-Laptop'. that was easy.

you're right... that isn't what I want. I thought that:

 scp -r -o Compression yes -o CompressionLevel 9 -o HostName
192.168.0.3:mnt/sda1
 fatherswithforeignbabies...@fatherswithforeignbabies.us:
copies/2012-2-17

would copy recursively 192.168.0.3 from /mnt/sda1 to the
server:folder/filename
How should I tell it to start from / rather than ~ ?


On Fri, Feb 17, 2012 at 8:30 AM, kitepi...@kitepilo.com 
kitepi...@kitepilot.com wrote:

 Mike, look at the path after the colon:
 what that says is:
 'copy whatever is inbound to a directory named mnt/sda1
 located in my HOME directory'
 Is that what you want? to th
 Probably not...
 ET


 Michael Havens writes:

 hm not working. I wonder why. Any ideas?
 bmike1@Michaels-Laptop ~ $ scp -r -o Compression yes -o CompressionLevel
 9
 -o HostName 192.168.0.3:mnt/sda1
 fatherswithforeignbabies.us@**fatherswithforeignbabies.us:co**
 pies/2012-2-17
 command-line line 0: Missing yes/no argument.
 lost connection
 bmike1@Michaels-Laptop ~ $
 The yes/no argument is there though!
 I tried putting the yes in quotes, capitalized, just y, and some others I
 can't remember.
 On Fri, Feb 17, 2012 at 12:05 AM, Michael Havens bmi...@gmail.com
 wrote:

 cool after investigating further I've modified my command string.
 Could you show me how to make it right (I just assume I'm wrong
 anymore!)?
 scp -r -o Compression yes -o CompressionLevel 9 user1@host1:mnt/sda1
 user2@host2:desired/directory/**file/name


 --
 :-)~MIKE~(-:

 --**-
 PLUG-discuss mailing list - 
 plug-disc...@lists.plug.**phoenix.az.usPLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.**us/mailman/listinfo/plug-**discusshttp://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


hey. I figured out the username/hostid thing. the laptop is
'bmike1@Michaels-Laptop'. that was easy.
-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: ssh

2012-02-17 Thread kitepi...@kitepilot.com

How should I tell it to start from / rather than ~ ?

Instead of

192.168.0.3:mnt/sda1


Do:

192.168.0.3:/mnt/sda1

The path-resolution rules apply unchanged after the ':'
Do:
man path_resolution 



'Michaels-Laptop' will only resolve in 'Michaels-Laptop', unless you add 
that name/IP combo to some sort of name-resolution system (bind, /etc/hosts, 
many options to choose from) 

localhost (or 127.0.0.1) will resolve to 'this machine' (when properly 
configured, which is the case in most Linux installations if not all of 
them) 


Don't shot yourself on the foot.
Again...
ET 




Michael Havens writes: 


hey. I figured out the username/hostid thing. the laptop is
'bmike1@Michaels-Laptop'. that was easy. 

you're right... that isn't what I want. I thought that: 


 scp -r -o Compression yes -o CompressionLevel 9 -o HostName
192.168.0.3:mnt/sda1
 fatherswithforeignbabies...@fatherswithforeignbabies.us:
copies/2012-2-17 


would copy recursively 192.168.0.3 from /mnt/sda1 to the
server:folder/filename
How should I tell it to start from / rather than ~ ? 



On Fri, Feb 17, 2012 at 8:30 AM, kitepi...@kitepilo.com 
kitepi...@kitepilot.com wrote: 


Mike, look at the path after the colon:
what that says is:
'copy whatever is inbound to a directory named mnt/sda1
located in my HOME directory'
Is that what you want? to th
Probably not...
ET 



Michael Havens writes: 


hm not working. I wonder why. Any ideas?
bmike1@Michaels-Laptop ~ $ scp -r -o Compression yes -o CompressionLevel
9
-o HostName 192.168.0.3:mnt/sda1
fatherswithforeignbabies.us@**fatherswithforeignbabies.us:co**
pies/2012-2-17
command-line line 0: Missing yes/no argument.
lost connection
bmike1@Michaels-Laptop ~ $
The yes/no argument is there though!
I tried putting the yes in quotes, capitalized, just y, and some others I
can't remember.
On Fri, Feb 17, 2012 at 12:05 AM, Michael Havens bmi...@gmail.com
wrote: 


cool after investigating further I've modified my command string.
Could you show me how to make it right (I just assume I'm wrong
anymore!)?
scp -r -o Compression yes -o CompressionLevel 9 user1@host1:mnt/sda1
user2@host2:desired/directory/**file/name 




--
:-)~MIKE~(-: 


--**-
PLUG-discuss mailing list - 
plug-disc...@lists.plug.**phoenix.az.usPLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.**us/mailman/listinfo/plug-**discusshttp://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss 



hey. I figured out the username/hostid thing. the laptop is
'bmike1@Michaels-Laptop'. that was easy.
--
:-)~MIKE~(-:

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: ssh

2012-02-17 Thread Walter Mack

I never tried this, but what should work is this:

tar --ignore-failed-read [/mnt/sda1] -czf - | ssh 
remoteuser@remote.system mailto:remoteuser@remote.system tar -xzf - | 
fsarchiver command


You have to have the whole string that the remote shell is to execute 
into quotes, so it is important to OMIT the double quotes around the 
pipe characters.


having a - as file name is interpreted to mean stdin or stdout (as 
appropriate). This is the key to avoiding these pesky temporarily files. 
tar will simply produce its output on stdout (locally), and consume the 
data from stdin (remotely).



You might want to look into using rsync. That might be an easier (and 
probably better) solution for what you want to do.





On 2/16/2012 11:42 PM, Michael Havens wrote:

so wait a second could I put fsarchiver on the server and then:

tar --ignore-failed-read [/mnt/sda1] -czf - | ssh 
remoteuser@remote.system mailto:remoteuser@remote.system tar -xzf - 
| fsarchiver command


so the tar command will create a tarball and the the pipe will 
transfer the tarball to the server and extract it wich the second pipe 
will feed into fsarchiver. Is that correct? I have a question: what 
does the minus sign in front of the pipes represent?  Well... I know 
it represents the name of the tar ball but is it the name? Could I 
put anything in that place?


and then Enriques command  (tar jcf - /path/to/backup|ssh 
user@otherbox 'tar xf -') would compress a tarball and then create a 
non compressed archive on the server.


You know... I wondered if I could use scp for this. Investigating the 
man page reveals that this is the program I want to use. The text of 
the command that I should issue I think would be (I want to do this 
from a third computer):


scp -Cr user1@host1:mnt/sda1 user2@host2:desired/directory/file/name

I don't know if I assigned a user1 or a host1 name. How can I find 
this out? If I didn't how would I assign one or change it to a more 
appropriate name?


This is fun!


---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread kitepi...@kitepilot.com

Boot your box with a live CD (I can place one in my server for you)
type:
cat /proc/partitions 


If you see your partition, then:
mount -o ro /dev/{my partition} /mnt 

DO A BACKUP NOW!, your stuff will be in /mnt/{somewhere} 


After you backup, then:
umount /mnt
fsck /dev/{my partition} 


If all goes well, then again:
mount -t{your filesystem type} /dev/{my partition} /mnt
chroot /mnt
grub-install /dev/{my partition}
(elevate a prayer...)
exit
reboot
Best of luck...
ET 





Michael Havens writes: 


Yep I think I had a hard disk failure. I restarted my computer and was
presented with: 


 error: unknown filesystem.
 grub rescue 

I then typed 'ls' and the response was 

 (hd0) (hd0,msdos5) (hd0,msdos3) (hd0,msdos1) (fd0) 


which is two partitions, the swap drive, and the floppy disk
how do I verify my suspicion of drive failure?
funny how all this happened just as I was attempting to back it up. 


--
:-)~MIKE~(-:

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: hard disk failure

2012-02-17 Thread kitepi...@kitepilot.com

Another (NON destructive) check you may to do:
as root:
dd if=/dev/{your partition} of=/dev/null
Your HD will (most likely) be OK if it finishes without other error than 
read beyond EOF (or something like that)
ET 




Michael Havens writes: 


Yep I think I had a hard disk failure. I restarted my computer and was
presented with: 


 error: unknown filesystem.
 grub rescue 

I then typed 'ls' and the response was 

 (hd0) (hd0,msdos5) (hd0,msdos3) (hd0,msdos1) (fd0) 


which is two partitions, the swap drive, and the floppy disk
how do I verify my suspicion of drive failure?
funny how all this happened just as I was attempting to back it up. 


--
:-)~MIKE~(-:

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: hard disk failure

2012-02-17 Thread Michael Havens
hm I can't cut a break I tell ya! I started system rescue cd  and
see an option to 'Boot an exhisting Linux OS installed on the disk.' I
select it and it says, 'Attempting to mount partition' (6 differant
partitions) and then '!!!Cannot find a valid root filesystem'

I'm running your dd command right now and it has been running like 2
minutes.


On Fri, Feb 17, 2012 at 10:05 AM, Michael Havens bmi...@gmail.com wrote:

 Yep I think I had a hard disk failure. I restarted my computer and was
 presented with:

  error: unknown filesystem.
  grub rescue

 I then typed 'ls' and the response was

  (hd0) (hd0,msdos5) (hd0,msdos3) (hd0,msdos1) (fd0)

 which is two partitions, the swap drive, and the floppy disk
 how do I verify my suspicion of drive failure?
 funny how all this happened just as I was attempting to back it up.

 --
 :-)~MIKE~(-:




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread Stephen
You can also check the disk with manufacturers tools for physical
defect/damage. Back up your data first! Some of the tests are destructive.
But they generally warn you first.
On Feb 17, 2012 10:17 AM, kitepi...@kitepilot.com kitepi...@kitepilot.com
wrote:

 Another (NON destructive) check you may to do:
 as root:
 dd if=/dev/{your partition} of=/dev/null
 Your HD will (most likely) be OK if it finishes without other error than
 read beyond EOF (or something like that)
 ET


 Michael Havens writes:

 Yep I think I had a hard disk failure. I restarted my computer and was
 presented with:
 error: unknown filesystem.
 grub rescue
 I then typed 'ls' and the response was
 (hd0) (hd0,msdos5) (hd0,msdos3) (hd0,msdos1) (fd0)
 which is two partitions, the swap drive, and the floppy disk
 how do I verify my suspicion of drive failure?
 funny how all this happened just as I was attempting to back it up.
 --
 :-)~MIKE~(-:

 --**-
 PLUG-discuss mailing list - 
 plug-disc...@lists.plug.**phoenix.az.usPLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.**us/mailman/listinfo/plug-**discusshttp://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread Michael Havens
On Fri, Feb 17, 2012 at 10:17 AM, kitepi...@kitepilot.com 
kitepi...@kitepilot.com wrote:

 Another (NON destructive) check you may to do:
 as root:
 dd if=/dev/{your partition} of=/dev/null
 Your HD will (most likely) be OK if it finishes without other error than
 read beyond EOF (or something like that)
 ET


It finished with no error. The return was:

 55285760+0 records in
 55285760+0 records out

Is that a good sign?
-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread kitepi...@kitepilot.com

Pls type here the dd command you are running...
ET 




Michael Havens writes: 


hm I can't cut a break I tell ya! I started system rescue cd  and
see an option to 'Boot an exhisting Linux OS installed on the disk.' I
select it and it says, 'Attempting to mount partition' (6 differant
partitions) and then '!!!Cannot find a valid root filesystem' 


I'm running your dd command right now and it has been running like 2
minutes. 



On Fri, Feb 17, 2012 at 10:05 AM, Michael Havens bmi...@gmail.com wrote: 


Yep I think I had a hard disk failure. I restarted my computer and was
presented with: 


 error: unknown filesystem.
 grub rescue 

I then typed 'ls' and the response was 

 (hd0) (hd0,msdos5) (hd0,msdos3) (hd0,msdos1) (fd0) 


which is two partitions, the swap drive, and the floppy disk
how do I verify my suspicion of drive failure?
funny how all this happened just as I was attempting to back it up. 


--
:-)~MIKE~(-: 

 



--
:-)~MIKE~(-:

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: hard disk failure

2012-02-17 Thread kitepi...@kitepilot.com

So far so good.
Make sure you ran dd against the WHOLE drive:
dd if=/dev/sdX of=/dev/null
ET 



Michael Havens writes: 


On Fri, Feb 17, 2012 at 10:17 AM, kitepi...@kitepilot.com 
kitepi...@kitepilot.com wrote: 


Another (NON destructive) check you may to do:
as root:
dd if=/dev/{your partition} of=/dev/null
Your HD will (most likely) be OK if it finishes without other error than
read beyond EOF (or something like that)
ET 



It finished with no error. The return was: 


 55285760+0 records in
 55285760+0 records out 


Is that a good sign?
--
:-)~MIKE~(-:

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: hard disk failure

2012-02-17 Thread Kevin Fries
is this a 30GB disk?

if so... This looks perfect.  Otherwise, I hope your block size was
something other than the default 512 bytes.

Kevin

On Fri, 2012-02-17 at 11:07 -0700, Michael Havens wrote:
 On Fri, Feb 17, 2012 at 10:17 AM, kitepi...@kitepilot.com
 kitepi...@kitepilot.com wrote:
 Another (NON destructive) check you may to do:
 as root:
 dd if=/dev/{your partition} of=/dev/null
 Your HD will (most likely) be OK if it finishes without other
 error than read beyond EOF (or something like that)
 ET 
 
 It finished with no error. The return was:
 
  55285760+0 records in
  55285760+0 records out
  
 Is that a good sign?
 -- 
 :-)~MIKE~(-:
 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: hard disk failure

2012-02-17 Thread Michael Havens
30 gigs is what it was that might be bad. I ran it against one
partition rather than the whole disk so it should be smaller... shouldn't
it be?

another thing
I tried to mount sda1 abd it tells me that I need to specify the file type
so I try with ext4, 3, and 2 but they all returned with the same error
(mount: wrong fs type) so I check dmesg|tail and the reply is:

 NTFS-fs error (device sda1): ntfs_fill)super(): Not an NTFS volume.
 UDF-fs: No VRS found
 UDF-fs: rescanning
 UDF-fs: No VRS found
 UDF-fs: No partition found (1)
 etc

I get it If you issue the mount caommand it automatically tries to mount
with each filesystem it knows about. So basically all of my filesystems got
erased which means bad disk. Right?


On Fri, Feb 17, 2012 at 11:10 AM, Kevin Fries ke...@fries-biro.com wrote:

 is this a 30GB disk?

 if so... This looks perfect.  Otherwise, I hope your block size was
 something other than the default 512 bytes.

 Kevin

 On Fri, 2012-02-17 at 11:07 -0700, Michael Havens wrote:
  On Fri, Feb 17, 2012 at 10:17 AM, kitepi...@kitepilot.com
  kitepi...@kitepilot.com wrote:
  Another (NON destructive) check you may to do:
  as root:
  dd if=/dev/{your partition} of=/dev/null
  Your HD will (most likely) be OK if it finishes without other
  error than read beyond EOF (or something like that)
  ET
 
  It finished with no error. The return was:
 
   55285760+0 records in
   55285760+0 records out
 
  Is that a good sign?
  --
  :-)~MIKE~(-:
  ---
  PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
  To subscribe, unsubscribe, or to change your mail settings:
  http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread kitepi...@kitepilot.com

which means bad disk. Right?

Wrong...
It means Bad operator, don't blame the tools...   :) 


What does:
tune2fs -l /dev/sdaN
says?
ET 




Michael Havens writes: 


30 gigs is what it was that might be bad. I ran it against one
partition rather than the whole disk so it should be smaller... shouldn't
it be? 


another thing
I tried to mount sda1 abd it tells me that I need to specify the file type
so I try with ext4, 3, and 2 but they all returned with the same error
(mount: wrong fs type) so I check dmesg|tail and the reply is: 


 NTFS-fs error (device sda1): ntfs_fill)super(): Not an NTFS volume.
 UDF-fs: No VRS found
 UDF-fs: rescanning
 UDF-fs: No VRS found
 UDF-fs: No partition found (1)
 etc 


I get it If you issue the mount caommand it automatically tries to mount
with each filesystem it knows about. So basically all of my filesystems got
erased which means bad disk. Right? 



On Fri, Feb 17, 2012 at 11:10 AM, Kevin Fries ke...@fries-biro.com wrote: 

is this a 30GB disk? 


if so... This looks perfect.  Otherwise, I hope your block size was
something other than the default 512 bytes. 

Kevin 


On Fri, 2012-02-17 at 11:07 -0700, Michael Havens wrote:
 On Fri, Feb 17, 2012 at 10:17 AM, kitepi...@kitepilot.com
 kitepi...@kitepilot.com wrote:
 Another (NON destructive) check you may to do:
 as root:
 dd if=/dev/{your partition} of=/dev/null
 Your HD will (most likely) be OK if it finishes without other
 error than read beyond EOF (or something like that)
 ET

 It finished with no error. The return was:

  55285760+0 records in
  55285760+0 records out

 Is that a good sign?
 --
 :-)~MIKE~(-:
 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss 



---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss 

 



--
:-)~MIKE~(-:

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: hard disk failure

2012-02-17 Thread Michael Havens
That's right ET! I am very bad! I need to be punished. NOt by you though.
Find me a cute Asian chick to o... I need to get my mind out of the
gutter!

Anyways:
tune2fs -l /dev/sda1 says Bad magic number in super-block while trying to
open /dev/sda1
out of curiosity I decided to run this with my other partitions and all of
them returned the bad magic number error except sda3 (that is my clones
drive. sda2 is swap.

And I ran this command:

 dd if=/dev/sda1 of=/dev/null;dd if=/dev/sda of=/dev/null

and the reply was:

 55285760+0 records in
 55285760+0 records out
 28306309120 bytes (28GB) copied, 908.02 s, 31.2 MB/s
 78125+0 records in
 78125+0 records out
 4000 bytes copied..

so what? is this hexadecimal or something?



On Fri, Feb 17, 2012 at 12:06 PM, kitepi...@kitepilot.com 
kitepi...@kitepilot.com wrote:

 which means bad disk. Right?

 Wrong...
 It means Bad operator, don't blame the tools...   :)
 What does:
 tune2fs -l /dev/sdaN
 says?
 ET

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread Nathan England

It greatly saddens me, Michael, that you feel so familiar with the members of 
the Phoenix Linux Users Group public email list that you are comfortable 
making such a disgusting comment. 

I joined this public mailing list to learn about linux many years ago, to 
contribute to the group as a member, and participate in the technology it 
represents. As a born-again Christian, I am appalled at the comment, which has 
absolutely NO place in a public forum such as this, and nothing to do with the 
technology this forum represents. And as a father with 4 daughters I take 
personal offense to such a comment. 

In the future, please remember this is not the personal posting grounds of 
Michael Havens, but a public forum for the research, help and evangelism of 
open source technology. There are a whole slew of new .xxx domains where your 
comment would be more appropriate.

Nathan England


On Friday, February 17, 2012 12:37:01 Michael Havens wrote:

That's right ET! I am very bad! I need to be punished. NOt by you though. Find 
me a cute Asian chick to o... I need to get my mind out of the gutter!


---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread Michael Havens
sorry to offend anyone I meant no offense. I have no desire for what I
said to actually take place. It was an off-handed comment meant for humour.
Again I do appologize for offending anyone.

On Fri, Feb 17, 2012 at 1:31 PM, Nathan England nat...@paysonlinux.orgwrote:

 **



 It greatly saddens me, Michael, that you feel so familiar with the members
 of the Phoenix Linux Users Group public email list that you are comfortable
 making such a disgusting comment.



 I joinoneed this public mailing list to learn about linux many years ago,
 to contribute to the group as a member, and participate in the technology
 it represents. As a born-again Christian, I am appalled at the comment,
 which has absolutely NO place in a public forum such as this, and nothing
 to do with the technology this forum represents. And as a father with 4
 daughters I take personal offense to such a comment.



 In the future, please remember this is not the personal posting grounds of
 Michael Havens, but a public forum for the research, help and evangelism of
 open source technology. There are a whole slew of new .xxx domains where
 your comment would be more appropriate.



 Nathan England



 On Friday, February 17, 2012 12:37:01 Michael Havens wrote:

 That's right ET! I am very bad! I need to be punished. NOt by you though.
 Find me a cute Asian chick to o... I need to get my mind out of the
 gutter!



 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread Michael Havens
tune2fs -l /dev/sda1 says Bad magic number in super-block while trying to
open /dev/sda1
out of curiosity I decided to run this with my other partitions and all of
them returned the bad magic number error except sda3 (that is my clones
drive. sda2 is swap.

And I ran this command:

 dd if=/dev/sda1 of=/dev/null;dd if=/dev/sda of=/dev/null

and the reply was:


 55285760+0 records in
 55285760+0 records out
 28306309120 bytes (28GB) copied, 908.02 s, 31.2 MB/s
 78125+0 records in
 78125+0 records out
 4000 bytes copied..

so what? is this hexadecimal or something?


On Fri, Feb 17, 2012 at 12:06 PM, kitepi...@kitepilot.com 
kitepi...@kitepilot.com wrote:

 What does:
 tune2fs -l /dev/sdaN
 says?
 ET


---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread Michael Havens
I just ran gparted on /dev/sda and it lists sda1 as an unknown filesystem.
It is 27Gigs
/dev/sda3 is about 10 gigs and then the swap is 1 gig.

On Fri, Feb 17, 2012 at 1:58 PM, Michael Havens bmi...@gmail.com wrote:

 tune2fs -l /dev/sda1 says Bad magic number in super-block while trying to
 open /dev/sda1
 out of curiosity I decided to run this with my other partitions and all of
 them returned the bad magic number error except sda3 (that is my clones
 drive. sda2 is swap.

 And I ran this command:

  dd if=/dev/sda1 of=/dev/null;dd if=/dev/sda of=/dev/null

 and the reply was:


  55285760+0 records in
  55285760+0 records out
  28306309120 bytes (28GB) copied, 908.02 s, 31.2 MB/s
  78125+0 records in
  78125+0 records out
  4000 bytes copied..

 so what? is this hexadecimal or something?


 On Fri, Feb 17, 2012 at 12:06 PM, kitepi...@kitepilot.com 
 kitepi...@kitepilot.com wrote:

 What does:
 tune2fs -l /dev/sdaN
 says?
 ET





-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: I need opinions.

2012-02-17 Thread Michael Havens
I modified the text of the ad.
http://fatherswithforeignbabies.us/work.htmlNow I'm just asking for
what they think is fair. I also took the link from
the main website off until I make it look better. I'm dealing with hard
drive issue on the other computer right now so CSS (cascading style
sheets?) will have to wait.

On Thu, Feb 16, 2012 at 5:49 PM, Michael Havens bmi...@gmail.com wrote:

 Thank you for the tip Sam. I'll look into CSS.

 On Thu, Feb 16, 2012 at 1:41 PM, Sam Kreimeyer skrei...@gmail.com wrote:

 Hey Mike,

 Not a bad start, nor a bad idea. I would drop the Pay me $5 for the
 link, though. It really sounds like you're doing something underhanded. I
 would seek out alternative ways to market the site and pull some revenue.
 It looks like you have Ad-Sense or something similar running already. As
 long as you're bringing people in, you'll make a few bucks off the
 click-throughs.

 My advice for getting people to stay is to bring a forum into the
 website. I use phpBB on a website I started recently (
 http://whoarethedead.com/), and it's about as easy as it gets. Boards
 are a great way to give people a fun distraction while they're at the site.
 For your purposes (community building, I presume), it would seem almost
 essential. PhpBB has plenty of free tutorials, templates, a massive
 community and easy session integration, which allows for some cool things.
 Dealing with spam bots takes a little work, but google has plenty of help
 (though you might want to keep them. Sometimes they're hilarious). FTP it
 over to your web host and go through the install.php script to get it
 going. It's mostly point-and-click (your web host does have PHP on board,
 right?).

 I peeked through some of the source on the pages. There are a TON of
 lines dedicated to style. Have you considered referencing a style sheet?
 You can do a lot with CSS, and it's a massive time saver for changes across
 multiple pages. I didn't use a CMS for my site (addicted to rolling my own)
 and found that formatting with style sheets is actually pretty easy. You
 can check out mine if you want an example of what they look like
 http://whoarethedead.com/WATD.css. Basically, I define classes in CSS
 and then identify div blocks with those classes. Ultimately, it's the
 same as what most toolkits would do. As long as you have a good reference
 guide, you should be able to do just about anything.

 And my (from limited experience) SEO info-nuggets:

 1- Good tags, clear formatting, etc. are nice, but they guarantee nothing.
 2- Without regularly updated content, you'll get deindexed. Heed the
 words of E-40 and Scrape! Scrape! Scrape!
 3- Back-links. Get them. Do whatever it takes that is still
 cost-effective.
 4- Rate of change in traffic is more important than total rate (think
 trending).

 Probably not as tasty as chicken-nuggets, but born from experience. If
 you get the first 3 locked in, you might look into traffic sharing, buying
 out competing niche-sites and such. Good luck!

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




 --
 :-)~MIKE~(-:




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: I need opinions.

2012-02-17 Thread Sam Kreimeyer
Maybe this is a silly question, but why the secrecy about the link?

Also, here's a good link to CSS. I mostly used this book
http://www.amazon.com/HTML-CSS-Complete-Reference-Fifth/dp/0071496297 to
learn about it. With a little searching you can find it for free, if you
don't want to go through amazon.
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: I need opinions.

2012-02-17 Thread Michael Havens
No secrecy at all. I just don't have a link to the page from my site. But
why do I care I'm sure no one knows about it besides the people on this
list and a few people I know. I'll put it back on in fact.

On Fri, Feb 17, 2012 at 3:31 PM, Sam Kreimeyer skrei...@gmail.com wrote:

 Maybe this is a silly question, but why the secrecy about the link?

 Also, here's a good link to CSS. I mostly used this book
 http://www.amazon.com/HTML-CSS-Complete-Reference-Fifth/dp/0071496297 to
 learn about it. With a little searching you can find it for free, if you
 don't want to go through amazon.

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: hard disk failure

2012-02-17 Thread Technomage Hawke
you can load a live DVD into the system and then try one of the many HDD test 
tools (badblocks with no options is a safe bet and will tell you almost 
immediately if there are any problems). I know there is another command line 
tool that can test drive throughput and read the SMART tables on the 
controller. I can't remember its name off hand, but it is a good one to test 
the drive electronics.

-eric

On Feb 17, 2012, at 10:05 AM, Michael Havens wrote:

 Yep I think I had a hard disk failure. I restarted my computer and was 
 presented with:
 
  error: unknown filesystem.
  grub rescue
 
 I then typed 'ls' and the response was
 
  (hd0) (hd0,msdos5) (hd0,msdos3) (hd0,msdos1) (fd0)
 
 which is two partitions, the swap drive, and the floppy disk
 how do I verify my suspicion of drive failure?
 funny how all this happened just as I was attempting to back it up.
 
 -- 
 :-)~MIKE~(-:
 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: hard disk failure

2012-02-17 Thread Michael Havens
thanks Eric! I don't think the drive is bad  because I can still access
sda3. unfortunately sda1 is where the operating system is .

On Fri, Feb 17, 2012 at 4:27 PM, Technomage Hawke 
technomage.ha...@gmail.com wrote:

 you can load a live DVD into the system and then try one of the many HDD
 test tools (badblocks with no options is a safe bet and will tell you
 almost immediately if there are any problems). I know there is another
 command line tool that can test drive throughput and read the SMART tables
 on the controller. I can't remember its name off hand, but it is a good one
 to test the drive electronics.

 -eric

 On Feb 17, 2012, at 10:I don't think 05 AM, Michael Havens wrote:

  Yep I think I had a hard disk failure. I restarted my computer and
 was presented with:
 
   error: unknown filesystem.
   grub rescue
 
  I then typed 'ls' and the response was
 
   (hd0) (hd0,msdos5) (hd0,msdos3) (hd0,msdos1) (fd0)
 
  which is two partitions, the swap drive, and the floppy disk
  how do I verify my suspicion of drive failure?
  funny how all this happened just as I was attempting to back it up.
 
  --
  :-)~MIKE~(-:
  ---
  PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
  To subscribe, unsubscribe, or to change your mail settings:
  http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

wordpress

2012-02-17 Thread Michael Havens
I'm trying to get it going. I'm following the instructions
herehttp://www.linoob.com/2011/04/starting-wordpress-development-in-ubuntu-10-10-in-10-minutes-part-2-%E2%80%93-installing-wordpress/.
The stupid thing won't accept my password. I go to menu - phpMyadmin and
enter my password and password an the response is '#1045 Can not log in to
the MYSQL server.'  why is this. It might be that mysql is not installed.
So I type in 'apt-get install mysql' find that it is installed. I've spent
a while in google (amazingly) but everything talks about changing password.
Wait here's someting: userid root and that did it! Thanks for your
help guys!
-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss