Skip to main content

உபுண்டு ஆரம்பம் முதல் இன்றுவரை


உபுண்டுவின் ஆறு மாதத்திற்கு ஒரு முறை ரிலீஸ் செய்வார்கள் என்பது நமக்கு தெரிந்ததே..
அவ்வாறு ரிலீஸ் செய்யும் போது அதற்கு ஒரு பெயரும் வைப்பார்கள் என்பதும் நாம் அறிந்ததே..
அவ்வாறு ஆரம்பம் முதல் இன்றுவரை வெளியிட்ட அனைத்து ரிலீஸ்களும் அதன் பெயர்களையும் நாம் பார்க்கலாம்.
.
உபுண்டுவின் முதல் ரிலீஸ் ubuntu 4.10 பெயர் warty WARTHOG. உபுண்டுவின் 6.06 ஆன Drapper DRAKEல் இருந்துதான் அவர்கள் அகரவரிசை படி வெளியிட தொடங்கினார்கள்.

சரி இனிமேல் நாம் warthogலிருந்து அடுத்த ரிலீஸான quetzalவரை படத்தோடு பார்க்கலாம்.



Ubuntu Warty WARTHOG (4.10):

Warty WARTHOG

Ubuntu Hoary HEDGEHOG (5.04):

warthog

Ubuntu Breezy BADGER (5.10):

BADGER

Ubuntu Dapper DRAKE (6.06):

drake

Ubuntu Edgy EFT (6.10):

eft

Ubuntu Feisty FAWN (7.04):

fawn

Ubuntu Gutsy GIBBON (7.10):

gibbon

Ubuntu Hardy HERON (8.04):

heron

Ubuntu Intrepid IBEX (8.10):

ibex

Ubuntu Jaunty JACKALOPE (9.04):

jacklope

Ubuntu Karmic KOALA (9.10):

koala

Ubuntu Lucid LYNX (10.04):

lynx

Ubuntu Maverick MEERKAT (10.10):

meerkat

Ubuntu Natty NARWHAL (11.04):

narwhal

Ubuntu Oneiric OCELOT (11.10):

ocelot

Ubuntu Precise PANGOLIN (12.04):

pangolin

Ubuntu Quantal QUETZAL (12.10):

quetzal

Comments

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); } }