Saturday, July 20, 2013

Music - One More Night -

One More Night


Maroon 5 - One More Night lyrics

You and I go hard at each other like we're going to war
You and I go rough, we keep throwing things and slamming the door
You and I get so damn dysfunctional, we stopped keeping score
You and I get sick, and I know that we can't do this no more

But baby there you go again, there you go again, making me love you
Yeah, I stopped using my head, using my head let it all go
Got you stuck on my body, on my body like a tattoo
And now I'm feeling stupid, feeling stupid crawling back to you

So I cross my heart and I hope to die
That I'll only stay with you one more night
And I know I said it a million times
But I'll only stay with you one more night

Try to tell you no, but my body keeps on telling you yes
Try to tell you stop, but your lipstick got me so out of breath
I'll be waking up in the morning, probably hating myself
And I'll be waking up feeling satisfied, but guilty as hell

But baby there you go again, there you go again, making me love you
Yeah I stopped using my head, using my head let it all go
Got you stuck on my body, on my body like a tattoo
And now I'm feeling stupid, feeling stupid crawling back to you

So I cross my heart and I hope to die
That I'll only stay with you one more night
And I know I said it a million times
But I'll only stay with you one more night

Yeah baby give me one more night

Well baby there you go again, there you go again, making me love you
Yeah I stopped using my head, using my head let it all go
Got you're stuck on my body, on my body like a tattoo
Yeah... yeah... yeahhhh

So I cross my heart and I hope to die
That I'll only stay with you one more night
And I know I said it a million times
But I'll only stay with you one more night

Yeah baby give me one more night

So I cross my heart and I hope to die
That I'll only stay with you one more night
And I know I said it a million times
But I'll only stay with you one more night

Oh baby gimme one more night



Lyrics | Maroon 5 lyrics - One More Night lyrics



From LYRICSMODE.COM lyrics archive
Lyrics | Maroon 5 lyrics - One More Night lyrics

Friday, June 21, 2013

Install Wireshark in Ubuntu Desktop 12.10

Install Wireshark in Ubuntu Desktop 12.10

1. sudo apt-get install wireshark
2. sudo dpkg-reconfigure wireshark-common
3. sudo usermod -a -G wireshark $USER
4. sudo reboot


Tuesday, June 11, 2013

Play Music Via Command Line - with mplayer

Play Music Via Command Line - with mplayer

1. Install mplayer in Ubuntu Desktop by issue command
sudo apt-get install mplayer
2. Go to the music folder and start to play 
mplayer  file001.mp3
or
mplayer file002.mp4

or you can play music 
mplayer *.mp3
mplayer *.mp4

Common shortcut:
Q = Quit
P = Pause
Up arrow = Jump forward in file more
Right arrow = Jump forward in file less
Down arrow = Jump back in file more
Left arrow = Jump back in file less
) = Volume up
( = Volume down
M = Volume mute
F = Full screen view
O = On-screen display
V = Toggle subtitles in video


Friday, June 7, 2013

Recover Delete Files

Recover Delete Files in Ubuntu Desktop

1. Install
sudo apt-get install scalpel

2. Edit file configure
sudo vi /etc/scalpel/scalpel.conf

and uncomment before the file extension that we want to RECOVER.

3. Run the command to recover.
sudo scalpel /dev/sda6 -o output

4. See the result in folder output.

Monday, May 27, 2013

Bash Scripts

Bash Scripts

Install the latest MetasPloit in Ubuntu Desktop

Install the latest MetasPloit in Ubuntu Desktop

Install the latest MetasPloit in Ubuntu:

1. Download Metasploit framework from :
wget http://downloads.metasploit.com/data/releases/metasploit-latest-linux-installer.run

2. Make installer executable:
chmod +x metasploit-latest-linux-xxx-installer.run

3. Run installer:
./metasploit-latest-linux-xxx-installer.run
4. Follow setup wizard to complete Metasploit installation.

5. To get latest Metasploit updates execute:
sudo msfupdate
6. Run Metasploit:
msfconsole

Command - Find

Command - find


find  a folder name .svn in a folder/subfolder and delete all
# rm -rf `find . -type d -name .svn`
find a file with extension .sh .Sh .sH with -iname
# find -iname *.SH 
find file with extension .tar.gz
# fine -name  *.tar.gz