Posts

Showing posts with the label terminal

Using tmux to share a terminal Richard WM Jones

Using tmux to share a terminal Richard WM Jones Using tmux to share a terminal | Richard WM Jones download  file  now

Using apt terminal command in Ubuntu

Using apt terminal command in Ubuntu Yes, you read that right, it is apt instead of apt-get . I was used with apt-get command to install, update and remove repositories packages. apt command compared to apt-get has a few advantages:  coloring and progress bar when you install or update a package. One downside of using apt command is the partial support of tab completion, which apt-get has mastered it. And I know that tab completion is very usefull. In terms of functionality, its almost the same as apt-get command. Even the commands are very similar. 1. Update repositories with apt: sudo apt update 2. List upgradable packages: sudo apt list --upgradable 3. Install/update a package: sudo apt install wget 4. Remove a package: sudo apt remove vim For more informations read the apt command manual: man apt download  file  now

Using apt get terminal command in Ubuntu

Using apt get terminal command in Ubuntu By using apt-get terminal command in Ubuntu, you will be able to serach, install, update and remove Ubuntu applications from repositories. To resynchronize the package index files from their sources via Internet, also known as repositories. You need to do this after each edit of your repositories file /etc/apt/sources.list : sudo apt-get update To install the newest versions of all packages currently installed on the system: sudo apt-get upgrade Install is followed by one or more packages (programs) desired for installation. If package is already installed it will try to update to latest version. sudo apt-get install package-name To uninstall a package: sudo apt-get remove package-name To uninstall a package and remove all of its settings: sudo apt-get remove --purge package-name If you have terminated an installation, you can clean it with: sudo apt-get clean All the terminal options for apt-get can be found running: sudo apt-get --help It wil...

View available updates from terminal without updating the system Ubuntu

View available updates from terminal without updating the system Ubuntu I find it a faster way to install updates on my Ubuntu machine from terminal rather then using a GUI package manager. sudo apt-get update  // collects information on updated packages from the repos sudo apt-get upgrade // install upgrades for packages for which updates are available The commands above are cool, of course, and quick to type, but one thing always annoyed me - I could only see what was updated after I actually initialized the process of upgrading the system. Well, not cool (GUI package manager would show what packages are upgradable). How to view available updates from terminal without updating the system : apt-get --just-print upgrade apt-get -s upgrade These 2 show the very same output (they both simulate an upgrade, dont really do it). So the 2nd one is shorter to type. Another command for the same purpose: aptitude search ~U Anyway, I find a command like below a bit more logical when re...

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 ...