Skip to main content

லினக்ஸ் shortcuts

General keyboard shortcuts
Ctrl + A Select all
Ctrl + C Copy the highlighted content to clipboard
Ctrl + V Paste the clipboard content
Ctrl + N New (Create a new document, not in terminal)
Ctrl + O Open a document
Ctrl + S Save the current document
Ctrl + P Print the current document
Ctrl + W Close the close document
Ctrl + Q Quit the current application Keyboard shortcuts for GNOME desktop
Ctrl + Alt + F1Switch to the first virtual terminal
Ctrl + Alt + F2(F3)(F4)(F5)(F6) Select the different virtual terminals
Ctrl + Alt + F7 Restore back to the current terminal session with X
Ctrl + Alt + BackspaceRestart GNOME
Alt + TabSwitch between open programs
Ctrl + Alt + LLock the screen.
Alt + F1 opens the Applications menu
Alt + F2 opens the Run Application dialog box.
Alt + F3 opens the Deskbar Applet
Alt + F4 closes the current window.
Alt + F5 unmaximizes the current window
Alt + F7 move the current window
Alt + F8 resizes the current window.
Alt + F9 minimizes the current window.
Alt + F10 maximizes the current window
Alt + Space opens the window menu.
Ctrl + Alt + + Switch to next X resolution
Ctrl + Alt + - Switch to previous X resolution
Ctrl + Alt + Left/Rightmove to the next/previous workspace
Keyboard shortcuts for Terminal
Ctrl + A Move cursor to beginning of line
Ctrl + E Move cursor to end of line
Ctrl + C kills the current process.
Ctrl + Z sends the current process to the background.
Ctrl + D logs you out.
Ctrl + R finds the last command matching the entered letters.
Ctrl + U deletes the current line.
Ctrl + K deletes the command from the cursor right.
Ctrl + W deletes the word before the cursor.
Ctrl + L clears the terminal output
Shift +Ctrl + C copy the highlighted command to the clipboard.
Shift +Ctrl + V (or Shift + Insert) pastes the contents of the clipboard.
Alt + F moves forward one word.
Alt + B moves backward one word
Arrow Up/Down browse command history
Win + Tab switch between open windows with Shift Switcher or Ring Switcher effect
Win + E Expo, show all workspace
Ctrl + Alt + Down Film Effect
Ctrl + Alt + Left mouse button Rotate Desktop Cube
Alt + Shift + Up Scale Windows
Ctrl + Alt + D Show Desktop
Win + Left mouse button take screenshot on selected area
Win + Mousewheel Zoom In/Out
Alt + Mousewheel Transparent Window
Alt + F8 Resize Window
Alt + F7 Move Window
Win + P Add Helper
F9 show widget layer
Shift + F9 show water effects
Win + Shift + Left mouse button Fire Effects
Win + Shift + C Clear Fire Effects
Win + Left mouse button Annotate: Draw
Win + 1 Start annotation
Win + 3 End annotation
Win + S selects windows for grouping
Win + T Group Windows together
Win + U Ungroup Windows
Win + Left/Right Flip Windows

Comments

  1. அன்புடைய பதிவருக்கு வணக்கம்,

    தங்களின் வலைப்பூவின் எழுத்து தரத்தையும், கருத்துக்களையும் மிகுந்த ஆய்வுக்குப் பின் சிறந்த தளம் என முடிவு செய்து எமது வலைச்சரம் வலைப்பதிவு தானியங்கி திரட்டியில் இணைத்துள்ளோம். இதில் தங்களுக்கு உடன்பாடு இல்லை என்றால், தயையுடன் எமக்கு தெரிவிக்கவும். எமது வலைச்சரம் திரட்டியில் தங்களின் வலைப்பதிவு இடம்பெறுவதை விரும்பினால் தயையுடன் எமது இணையப் பட்டையை தங்களின் தளத்தில் இணைக்கும் படி கோரிக்கொள்கிறோம். நன்றிகள் ! மேன் மேலும் தங்கள் எழுத்துப் பணி தொடர வாழ்த்துக்கள் ...

    அன்புடன்,

    வலைச்சரம் நிர்வாகம்.

    ReplyDelete

Post a Comment

Popular posts from this blog

ARP/RARP full simulation program

server.c #include "stdio.h" #include "stdlib.h" #include "string.h" #include "sys/types.h" #include "sys/socket.h" #include "arpa/inet.h" #include "netinet/in.h" #define SA struct sockaddr struct IPmac { char ip[100]; char mac[100]; }; int main() { int sockfd,len,i; struct sockaddr_in servaddr; char buff[30],temp[30],ip[30],mac[30];

Configure opendns in ubuntu 12.04

Today i have changed my dns server name to opendns. which is alternative to default dns and it provide more secure, faster browsing experience. What is opendns? OpenDNS is the leading provider of Internet security and DNS services Industry leading malware and botnet protection Award winning Web filtering Faster, reliable, more secure DNS Ultra-reliable, globally distributed cloud network Simple, Smart, Easy How to configure opendns in ubuntu 12.04: open terminal and type sudo nano /etc/resolv.conf enter your password and change these lines   nameserver 208.67.222.222  nameserver 208.67.220.220 to use google public dns use 8.8.8.8, 8.8.4.4 instead of 208.67.222.222, 208.67.220.220 simple isn't..! now see your facebook load faster than before. opendns comes with parental control, so never worry about unwanted websites, and your childrens are safe now. to check your dns changed successfully goto welcome.opendns.com

Given a string, reverse only vowels in it; leaving rest of the string as it is

/* Given a string, reverse only vowels in it; leaving rest of the string as it is. Input : abcdef Output : ebcdaf */ import java.io.*; import java.util.*; public class VowelReverse { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.next(); String vowels = ""; String ans = ""; int arr[] = new int[str.length()]; for(int i=0;i<str.length();i++) { if(str.charAt(i)=='a' || str.charAt(i)=='e' || str.charAt(i)=='i' || str.charAt(i)=='o' || str.charAt(i)=='u') { vowels+=str.charAt(i); arr[i]=1; } } String revVowels = new StringBuffer(vowels).reverse().toString(); int j=0; for(int i=0;i<str.length();i++) { if(arr[i]!=1) { ans+=str.charAt(i); } else { ans+=revVowels.charAt(j); j++; } } System.out.println(ans); } }