Thursday, May 17, 2012

Indian Government Ordered to Block many music sites

The Indian Music Industry (IMI), an industry consortium of 142 music ompanies, has obtained orders from the Calcutta High Court directing all Internet Service Providers (387 ISPs) to block 104 music sites. Court orders were obtained on 27th of January, 6th February, and the 1st and 2nd of March 2012. ISPs have been directed by the court to block all 104 sites within 36 hours. It essentially has the order against Songs.pk as a sample. Apurv Nagpal, CEO of Saregama, told MediaNama that the first order was against songs.pk, and subsequent court orders covered the rest of the sites. The IMI made a case against each website, he added, with proof of piracy of content from labels by each site.
Indian content businesses have increasingly been taking the legal route to combat piracy: T-Series filed lawsuits against several major companies like YouTube (which was later settled), MySpace, Yahoo and Ibibo, and even got the founders of Guruji.com arrested. Reliance BIG Pictures began getting generic “John Doe” orders trying to force filesharing sites to prevent movie uploads, and getting some of them blocked. This is by far the biggest anti-piracy initiative till date.

How They Will Block

The court has asked ISPs to block the sites using any of the three methods:
1. DNS Name blocking: which ISPs use to for looking up IP addresses corresponding to domain names. However, it is possible for filesharing sites to change their domain name: as we reported earlier,like Songs.pk renamed as Songspk.pk
2. IP Address blocking using routers: IP address blocking using routers. However, it is possible for sites to be hosted on alternate servers, once blocked, so this might not entirely address the issue.
3. DPI based URL blocking: “This mechanism involves configuring the ISP’s network management system to monitor traffic by means of Deep Packet Inspection (DPI) and reset or block a customer’s connection to specific Uniform Resource Locators (URLs) as defined in the network management system’s Access Control Lists” DPI-based URL blocking is necessary can be used to block only a portion of a website, for example, “www.example.com/home.html” only, instead of “www.example.com.”
What This Means
The information docket lists each of the 387 ISPs in India, all the 104 music sites, and certain legitimate sites in India, which provide legal options for consumers: Saregama, Nokia Music, Flipkart, Cyworld, 7digital, Gaana*, In, IndiaONE, Meridhun, MyBand, Raaga, Radio One, Saavn, Dhingana, Artist Aloud and Telugu One.
The intent is evident – at one end, IMI is using legal means to stop illegal downloads, and at the other, it is propping up legal businesses. This could act as a fillip for legal sites – perhaps users might choose to stream music over the cloud or buy it online instead of downloading for free. On the other hand, they could find alternate means, through file sharing sites and torrents. Nagpal told that the IMI will go after filesharing sites next, so it appears that the battle against online piracy of Indian music is well and truly on now, and music labels are beginning to take online revenues a lot more seriously.
This might be a consequence of changes in mobile marketing and mobile ringbacktone subscription policies, enforced by the TRAI, which might have impacted mobile revenues.

Here is the list of the sites which IMI wants to block via court orders. Some have been banned and some will be banned:
1. 22beats.com
2. absongs.com
3. apniisp.com
4. apunkabollywood.com
5. bollyextreme.com
6. bollymaza.com
7. bollywood-hits.com
8. bollywoodmp4.com
9. bollywoodstop.com
10. coolgoose.com
11. dacoolsite.com
12. desibajao.net/desihits.net
13. desifunda.net
14. desisong.com
15. dhakdhakradio.com
16. downloadming.com
17. freeindisongs.com
18. funmaza.com
19. gogrumogru.com/songs.ind.in
20. karachimag.com
21. koolfree.com
22. lovepaki.com
23. mastmag.com
24. mobraja.com
25. mp3fundoo.com
26. mp3paradice.com
27. musicduniya.com
28. musiqbuzz.com
29. muskurahat.com
30. netmasty.com
31. pakfellows.com
32. paktimes.com
33. playlist.pk
34. punjabcentral.com
35. radioreloaded.com
36. radiorhythmz.fm
37. radiorocking.com
38. rkmania.com
39. songbox.pk
40. songsinn.com
41. songsnonstop.com
42. songsrack.com
43. songsrip.com
44. songzila.com
45. topupmp3.com
46. town67.com
47. 100india.com
48. musicindiaonline.com
49. aflatune.com
50. bharatlover.com
51. cckerala.com
52. centralmusiq.com
53. chimatamusic.com
54. desimusic.com
55. desishock.net
56. dhool.com
57. dishant.com
58. filmicafe.com
59. filmimusic.com
60. fun1001.com
61. hindimirchi.com
62. sunomusic.com
63. telugufm.com
64. yolike.com
65. andhravilas.com
66. smashits.com
67. songdad.com
68. songslover.net
69. ragalahari.com
70. rameshmusic.com
71. freeplaymp3songdownload.com
72. freefundoo.com
73. desijammers.com
74. thenisai.com
75. mp3feelings.com
76. mazafm.com/hindimirchi.com
77. kjyesudas.com
78. jaanfm.com
79. gr8click.com
80. funscrape.com
81. chirkutonorkut.com
82. tamilmaalai.com
83. tamilkey.info
84. vmusiq.com
85. sevanthi.com
86. tamilwire.com
87. a2ztamilsongs.com
88. mymaza.com
89. germantamilan.com
90. 123music.mobi
91. desiden.mobi
92. longmp3.mobi
93. krazywap.com
94. mobile-zon.com
95. mymp3.mobi
96. samwep.com
97. spicyfm.com
98. wapindia.net
99. wapmaza.mobi
100. waprocks.in
101. mobidreamz.com
102. waptamil.net
103. zinkwap.com
104. songs.pk


Source: Internet


Thursday, December 8, 2011

Java Book by e balagurusamy 3e


Note:Click on the image of the book to open the download Page.

Sunday, August 28, 2011

File and Directory Permissions in Linux

Permissions in Linux File System:

PermissionApplied to a Directory Applied to Any Other Type of File
read (r) Grants the capability to read the contents of the directory or subdirectories. Grants the capability to view the file.
write (w) Grants the capability to create, modify, or remove files or subdirectories. Grants write permissions, allowing an authorized entity to modify the file, such as by adding text to a text file, or deleting the file.
execute (x) Grants the capability to enter the directory. Allows the user to “run” the program.
- No permission. No permission.


Now if we give ls –l we can see the following output:
$ ls -l /home/ravi
-rwxr-xr-- 1 ravi users 1024 Nov 2 00:10 myfile
drwxr-xr--- 1 ravi users 1024 Nov 2 00:10 mydir


The permissions for each are the second through the tenth characters from the left (remember the first character identifies the file type). The permissions are broken into groups of threes, and each position in the group denotes a specific permission, in this order: read, write, execute. The first three characters (2–4) represent the permissions for the file’s owner (ravi in this example). The second group of three characters
(5–7) consists of the permissions for the group to which the file belongs (users in the example output). The last group of three characters (8–10) represents the permissions for everyone else (“others” in Unix parlance).
The following table elaborates on the permissions shown for myfile in the example ls -l output:

Characters Apply to Definition
rwx (characters2–4) The owner (known as user in Unix) of the file. The owner of the file (ravi) has read (or view), write, and execute permission to the file.
r-x (characters 5-7) The group to which the file belongs, The users in the owning group (users) can read the file and execute the file if it has executable components commands, and so forth). The group does not have write permission—notice that the
- character fills the space of a denied permission.
r-- (characters 8–10) Everyone else (others) Anyone else with a valid login to the
system can only read the file—write
and execute permissions are denied (--).

Using chmod in Symbolic Mode:


The first set of file permissions (characters 2–4 from the ls -l command) is represented with the u, for user; the second set (characters 5–7) is by g, for group; and the last set (characters 8–10) is represented by an o, for everyone else (other). You can also use the -a option to grant or remove permissions from all three groups at once.
The example file, testfile, has original permissions of rwxrwxr- -.
operator Meaning Example Result
+ Adds the designated permission(s) to a file. chmod o+wx testfile Adds write and execute permissions for others or directory. (permission character set 9–10) on testfile.
- Removes the designated permission(s) from a file or directory. chmod u-x testfile Removes the file owner’s capability to execute testfile (u = user or owner).
= Sets the designated permission(s) chmod g=r-x Sets permissions for the testfile group to read and execute on testfile (no write).

Here’s how you could combine these commands on a single line:
$ chmod o+wx,u-x,g=r-x testfile

Using chmod with Absolute Permissions

The second way to modify permissions with the chmod command is to use a number to specify each set of permissions for the file. Each permission is assigned a value, as the following table shows, and the total of each set of permissions provides a number for that set.
NumberOctal Permission Representation Permission Reference
0 No permission ---
1 Execute permission ---x
2 Write permission -w-
3 Execute and write permission: 1 (execute) + 2 (write) = 3 -wx
4 Read permission r--
5 Read and execute permission: 4 (read) + 1 (execute) = 5 r-x
6 Read and write permission: 4 (read) + 2 (write) = 6 rw-
7 All permissions: 4 (read) + 2 (write) + 1 (execute) = 7 rwx

Sunday, July 3, 2011

torrent for rar file cracker

For rar file password crack. There are many techniques. One is brute force attack with dictionary.
In this the software has a list of words from 2 lettered word to 4- lettered word and it tries to put every word as password. If you want to crack with this method then u can download any rar file cracker. Jut google "rar file cracker with crack" .

Here is a torrent which provides 9-10 software for rar and zip file cracker. I have not tried them but i guess they will work :
http://thepiratebay.org/torrent/4675258/Zip_and_RAR_password_cracker
just click on download torrent. But for this download the utorrent software first. Google "download utorrent" and link for download will be available for free.

Torrent - downloading software from internet..........

One of the most common work on internet is downloading software's. But generally good software are large in size, so it needs longer time and that also continuous.
A solution to that problem, is torrent. A torrent is a technology with which we can download large files(even a complete movie) with it without the need downloading completely in 1 session.

You can download the torrent software, it is very small and free of cost and then download the torrent file of the software you want to download. Then just open the torrent file with that torrent software and it will start downloading in parts whenever you will get online.

Note: There are many websites which provide free torrent of movies and software's. In fact you can also share software and files with torrent. Just Click on make torrent and elect files. It will give you a torrent file for your files. Just share that torrent file and the files will be automatically uploaded to the person whom you will provide the torrent of your file. But for this you also need tracker and seeders. Trackers are provided by websites for free, you just need to search. Seeder are those people who have downloaded your files and can now stay online so that others can also download.

Tuesday, May 17, 2011

Some Linux books for students

Here are some more books for you all:




UNIX Network Programming.rar


Have a nice day.
And if you need any other book just comment here.

Saturday, January 29, 2011

How to change icon of a file

You might have sometime changed the icon of a folder in win XP but have u tried to change the icon of a file , say text file?
Here's a way:
GO TO FOLDER OPTIONS --> GO TO FILE TYPES--> THEN SCROLL TO THE FILE TYPE YOU WANT TO CHANGE THE ICON-->GOTO ADVANCED OPTION AND THEN CHANGE ICON AND SELET THE NEW ICON U WANT TO SAVE AN ITS DONE.