Posts

Showing posts with the label vi

Various Posts in a Premier Schedule A Mini Ratna PSU by AIMA Nov 2014 2 posts for VI

Various Posts in a Premier Schedule A Mini Ratna PSU by AIMA Nov 2014 2 posts for VI All India Management Association (AIMA) All India Management Association (AIMA) invites applications from Indian Nationals for the following posts, On behalf of a Premier Schedule-A Mini-Ratna Public Sector Undertaking, providing Warehousing Facilities and Logistic support to Agriculture sector and other Notified commodities. Read more � download  file  now

using vi text editor as hex editor

Image
using vi text editor as hex editor Pranaam to all bhai ji _/_  Today we will learn how to use vi text editor as hex editor in linux environment .   yes we can use vi text editor as hex editor , which is easy to operate as compare to any hex editor lets start :) open your binary file in vi editor using command vi  file_name i am going to open vlc media player binary file it will be something like this  :D :P some random symbols ok just type :%!xxd and it will switch into hex editing mode dont worry , type  :%!xxd and press enter key you will see something like this >:D< you are in hex editing mode , now edit whatever you want once you have done with editing type  esc key and then type %!xdd -r press enter key, we will back to text editing mode .  now, to save changes type :w changes will be saved  this is how you can use vi editor as hex editor :) Thank you Greetz to :- Zero cool ,code breaker ica, Aasim shaikh,Reborn, Raman kumar rana,INX_r0...

Various posts in Airports Authority of India May 2015 1 post for VI

Various posts in Airports Authority of India May 2015 1 post for VI Airports Authority of India (AAI) (A Mini Ratna � Category � 1 Public Sector Enterprise) Advt.No. 2/2015 Airports Authority of India invites applications from eligible candidates for the following posts. Read more � download  file  now

vi settings

vi settings open/ create the .vimrc file in home directory (~) set nohlsearch set nobackup set ts=4 set expandtab set shiftwidth=4 set nowrap download  file  now

vi file editor in linux

vi file editor in linux Pranaam to all bhai ji _/_ in this tutorial we will discuss about "vi" which is a text editor in linux OS.it is use to edit files. command to open file with vi editor is :-   vi  file_name if file does not , still editor create file temporarily :) it is interesting editor :D it has two mode command  mode  insert mode in command mode , we supply a character and that character is perform specific task like copy whole line of text, moving page up or down , counting line in a file etc etc :) bydefault , when we open a file with vi editor , its command line mode :) in insert mode we just type and whatever we type, it simply keep adding those words to file :) we can enter into insert mode by pressing  keyword "i" . now we are allow to type test at any line :D  after completion of file editing , press esc key and we will be back in command line mode and now we will save that file by using command  :w this command wi...

vi editor ubuntu terminal is not working properly

vi editor ubuntu terminal is not working properly Ubuntu terminal is not working properly in vi editor As we all know vi editor is one of the major editing tool for developers. Sometimes its obvious to handle the issue if its not response properly. There are few scenario where this kind of behavior occurs.  If you have newly installed the ubuntu , or you have not updated the terminal with latest update.  Just try to update the terminal by using below command. sudo apt-get update Now check your vi editor behavior , if not yet resolved then try the below command to install the vi (vim) editor. Install Vim Editor using below command :- sudo apt-get install vim Now check your vi editor, I hope its fixed. It worked for me and its working awasome :) Hope this will help you!!! Follow for more details on   Google+   and @Facebook !!! Find More :- How  to install Jboss Fuse on Linux ? How to install jd-gui (Java Decompiler with graphics mode)? How to install Jboss ...