rundll32.exe keymgr.dll, KRShowKeyMgrFrom here you can remove authenticated network shares so that the next time you will have to type in the credentials again.
Technical problems and solutions face during the quest of life advancement. Hopefully, this could provide help to someone in need someday.
Tuesday, November 20, 2012
Remove saved credentials or password stored in Windows 7
If you are facing problems regarding connecting to a network drive and the system did not prompt you for a username and password. Most likely, you had already a password being saved in the system already. You could type this command to check the credentials that had been stored previously.
Labels:
authenticate,
credentials,
keymgr.dll,
KRShowKeyMgr,
network,
password,
remove,
rundll32.exe,
save,
share,
store,
System,
Windows 7
Tuesday, October 30, 2012
Linux: CentOS 6.3 - Guide to install GNOME Desktop from CLI using yum
1. You would need to install "X Windows System" first, as this is the based that provide GUI and rich input device capability before installing GNOME Desktop. This will take a while as yum would download packages from the net before installing, therefore please have your internet connection setup before executing. Command to execute :-
# yum groupinstall -y 'X Window System'2. Next will be the command for installing GNOME Desktop Environment :-
# yum groupinstall -y 'Desktop'3. Done. To start GNOME type the following command :-
# startxNote: If you would like to start GNOME automatically after reboot, you would need to edit the /etc/inittab file by changing the line " id:3:initdefault: " to " id:5:initdefault: " in the file.
Labels:
-y,
/etc/inittab,
CentOS 6.3,
CLI,
Desktop,
GNOME,
groupinstall,
Guide,
id:3:initdefault,
id:5:initdefault,
install,
Linux,
startx,
System,
Using,
Window,
X,
yum
Linux: CentOS 6.3 - Force DHCP client to renew ip address
Here are a few commands that I used to renew the ip address that has DHCP configured.
1. ifdown and ifup command to restart network card eth0 as follows :-
1. ifdown and ifup command to restart network card eth0 as follows :-
# ifdown eth02. Restarting the networking services command :-
# ifup eth0
# /etc/init.d/networking restart3. Restart network service using service command :-
# service network restart4. This command is for releasing the ip address :-
# sudo dhclient -rThis command is for getting a ip address :-
# sudo dhclient
Labels:
/etc/init.d/networking restart,
address,
CentOS 6.3,
client,
DHCP,
eth0,
Force,
ifdown,
ifup,
ip,
Linux,
renew,
service network restart,
sudo dhclient,
sudo dhclient -r
Linux: CentOS 6.3 - Changing the hostname or computer name
First of all, you need the command to check what is your box computer name(hostname).
Please note that all the "#" sign shown are meant to be the start of the command prompt, therefore please ignore it.
To check your hostname, type the following command:
I am using the following method to change the hostname of my linux box:-
1. Change the hostname by using sudo hostname command.
2. Edit the network configuration file. Type this command to use vi editor.
change the "localhost.domain.local" to your new hostname.
(note: in vi editor press i or the insert key to switch to insert/editing mode. Press "Esc" to exit insert/editing mode.)
2.3 Save and close the file.
(note: in vi editor type :wq! follow by enter to save and quit the editor)
Please note that all the "#" sign shown are meant to be the start of the command prompt, therefore please ignore it.
To check your hostname, type the following command:
# hostname
I am using the following method to change the hostname of my linux box:-
1. Change the hostname by using sudo hostname command.
# sudo hostname 'newhostname'(without the quotes)
2. Edit the network configuration file. Type this command to use vi editor.
# vi /etc/sysconfig/network2.2 Find the following line => hostname = localhost.domain.local
change the "localhost.domain.local" to your new hostname.
(note: in vi editor press i or the insert key to switch to insert/editing mode. Press "Esc" to exit insert/editing mode.)
2.3 Save and close the file.
(note: in vi editor type :wq! follow by enter to save and quit the editor)
Labels:
CentOS 6.3,
Changing,
computer name,
hostname,
Linux
Thursday, October 18, 2012
Day Trading Strategies For Beginners
I would strongly recommend beginners for trading read this link below.
http://www.investopedia.com/articles/trading/06/daytradingretail.asp#axzz29ivIcrjr
The author is writing as per experience and stating the truth. As always, practising to be perfect in your trading isn't as easy as being thought or said.
http://www.investopedia.com/articles/trading/06/daytradingretail.asp#axzz29ivIcrjr
The author is writing as per experience and stating the truth. As always, practising to be perfect in your trading isn't as easy as being thought or said.
Samsung Galaxy Note 2 review
Here is a review that I find it in real detail but do not that it is a little lengthy.
http://www.techradar.com/reviews/phones/mobile-phones/samsung-galaxy-note-2-1093688/review#articleContent
http://www.techradar.com/reviews/phones/mobile-phones/samsung-galaxy-note-2-1093688/review#articleContent
Merging multiple mp3 files into a single mp3 file for Mac OS X
Trying to create rip an audio book into mp3 while I faced this problem.
Basically, the audio book CD came in various tracks in it.
After ripping it from iTunes to mp3, multiple mp3 files had been created which is not very convenient to manage or listen.
Here is a command from the Terminal which I used to merge the multiples mp3 files together >>
for i in *; do echo $i; cat $i >> bigfile.mp3; done;
This command will actually join the mp3 files together and show the sequence it was being joined. Please rename your file in sequence and make sure there isn't any spaces in the filename.
Basically, the audio book CD came in various tracks in it.
After ripping it from iTunes to mp3, multiple mp3 files had been created which is not very convenient to manage or listen.
Here is a command from the Terminal which I used to merge the multiples mp3 files together >>
for i in *; do echo $i; cat $i >> bigfile.mp3; done;
This command will actually join the mp3 files together and show the sequence it was being joined. Please rename your file in sequence and make sure there isn't any spaces in the filename.
Labels:
cat command,
file,
files,
into,
Mac,
Merging,
Merging multiple mp3 files into a single mp3 file for Mac OS X,
mp3,
multiple,
OS X,
single,
Using Terminal
Subscribe to:
Posts (Atom)