If you are using xUnix system such as Kubuntu, your can try the sed command, as shown in this page and below.
~$ sed -i 's/GenuinePassword/UglyPassword/g' *;
Hope this helps!
~$ sed -i 's/GenuinePassword/UglyPassword/g' *;
pkill hildon-application-managerYou might also be interested to know about Nokia N900 USB networking Maemo Wiki page and Nokia N900 hangs during installations thread.
#!/bin/bash
FILES=*
for f in $FILES
do
echo "Processing $f file..."
#take action on each file. $f store current file name
#cat $f
SHA1_VALUE=$(sha1sum "$f" | awk '{print $1}')
echo $SHA1_VALUE
mv "$f" "$SHA1_VALUE"
done
![]() |
| "There is no disk in the drive. Please insert a disk into drive \Device\Harddisk1\DR1." error. |
Microsoft Windows [Version 6.1.7601]Phew! I do have a lot of old USB storage drive in my home Windows 7 computer. O.O
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Windows\system32>dir C:\Users\Leonard\Downloads\drivecleanup\
Volume in drive C has no label.
Volume Serial Number is XXXX-XXXX
Directory of C:\Users\Leonard\Downloads\drivecleanup
01/03/2012 19:28 <DIR> .
01/03/2012 19:28 <DIR> ..
20/09/2011 18:40 1,618 DriveCleanup.txt
01/03/2012 19:28 <DIR> Win32
01/03/2012 19:28 <DIR> x64
1 File(s) 1,618 bytes
4 Dir(s) 1,652,068,352 bytes free
C:\Windows\system32>C:\Users\Leonard\Downloads\drivecleanup\Win32\DriveCleanup.exe
DriveCleanup V0.8.1 (Win32)
Uninstalls non present USB hubs, USB storage devices and their storage volumes, Disks, CDROMs, Floppies, WPD devices and deletes their registry items
Freeware by Uwe Sieber - www.uwe-sieber.de
removing USB device 'USB\VID_0421&PID_02F4\353781044919304'
OK
removing USB device 'USB\VID_04E8&PID_6860&MI_01\6&1961B21&0&0001'
OK
removing USB device 'USB\VID_0FCE&PID_D044\3578300132302620'
OK
...
...
...
Regkey delete HKLM\System\MountedDevices\\DosDevices\F:
OK
Regkey delete HKLM\System\MountedDevices\\DosDevices\H:
OK
Regkey delete HKLM\System\MountedDevices\\DosDevices\I:
OK
Regkey delete HKLM\System\MountedDevices\\DosDevices\J:
OK
Regkey delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2\H
OK
Regkey delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2\J
OK
Removed 36 USB devices
Removed 2 USB hubs
Removed 40 Disk devices
Removed 7 CDROM devices
Removed 0 Floppy devices
Removed 47 Storage volumes
Removed 35 WPD devices
Removed 56 Keys from registry
C:\Windows\system32>
leonard@Leonard-X59SL:~$ rfkill listRemember that you need to unblock both soft and hard block for your wireless interface on Kubuntu platform to enable wireless networking.
0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no
leonard@Leonard-X59SL:~$ sudo rfkill unblock all
[sudo] password for leonard:
leonard@Leonard-X59SL:~$ rfkill list
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
leonard@Leonard-X59SL:~$