Skip to main content

Posts

Showing posts with the label unix command

Advance Unix Command Part 2 #DOTC_Mdb

Advance Unix Command Part 2. Hello Everyone, In my Previous blogs I already discussed about several commands which commonly used in Unix . Today I will discuss some more command which commonly used in Unix . Before starting new commands I will suggest you to please go through my below blogs for Unix command . https://dheeraj60.blogspot.com/2020/08/advance-unix-command-part1-dotcmdb.html https://dheeraj60.blogspot.com/2020/08/basic-and-some-advance-command-in-unix.html https://dheeraj60.blogspot.com/2020/08/basic-and-commonly-used-command-in-unix.html   Let’s start with Unix command : Connect to a remote mysql database. Below is the command to connect remote mysql database as well as local mysql database. Note : You should first now the host name to connect mysql database as well as password. $ mysql -u u255474504_root -p -h 127.0.0.1 Connect to a local mysql database. $ mysql -u   u255474504_root –p Below is the output of above command in putty Terminal.   How to change y

Basic and some Advance Command in Unix #DOTC_Mdb

                  Basic and some Advance Command in Unix    Hello Everyone, In my Previous Blog we discussed about some basic command of Unix which is commonly used. Today I will discuss more about some more important command which is commonly used. Before starting new commands please go through my previous blog for your reference. https://dheeraj60.blogspot.com/2020/08/basic-and-commonly-used-command-in-unix.html Control Command in Unix : In Unix we have some key command through which we can terminate as well as command can run in background. Below are the key command and it’s uses in terminal. Control-C: Command terminates the currently running foreground process. Control-D: Command terminates the currently running login or terminal session. Control-Z: Command suspends the currently running foreground process to the background.   To see the process by using ps –ef command : This command shows every process running , and result shows with PID. I am running this command in Pu