Copyright question


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Copyright question
# 1  
Old 10-06-2011
Copyright question

Hi

I hope this is the right section to post.
My question is about copyrighted code.

If I read some copyrighted source code to learn something new and then I would like to reuse one idea I liked what is the boundary to avoid rights problems?

I mean, for example, is there the chance to reuse the idea or not at all? , or (just for example) Can I use up to 3 equals code lines? or there are some different criteria?

thanks in advance
# 2  
Old 10-06-2011
It is not really a question of copyright per se. You can easily overcome that hurdle by including the other persons copyright in your code.

The real question is the license attached to the source code.
# 3  
Old 10-06-2011
Hi thx for reply,

Yea actually I know that but this means that also your code,
if it include (even only few lines of code or simply the same modus operandi), must be released with the same license and not under the GPL or another one, right?
# 4  
Old 10-06-2011
Depends on the license, BSD licensing allows you include the code in any product, whereas GPL doesn't but once you reimplement the concept without pasting the code you are not in violation of copyright, though you may hit the patent issue in some jurisdictions.
# 5  
Old 10-06-2011
ok thx Smilie
# 6  
Old 10-06-2011
The GPL prohibits you from selling things derived directly from source using that license, it's no barrier to just using them. An important distinction that's occasionally forgotten.

Also, code using the LGPL may be used as a dynamically-linked library without license problems -- as long as people who purchase the product can freely see the code for the library, and update the library as they please, it's good. The LGPL for this reason used to be known as the "library GPL".
# 7  
Old 10-06-2011
Quote:
Originally Posted by Corona688
The GPL prohibits you from selling things derived directly from source using that license, it's no barrier to just using them. An important distinction that's occasionally forgotten.
I think the use of the word "selling" could unintentionally mislead those not familiar with the GPL. For their benefit, I'd like to make it clear that whether one is compensated or not is irrelevant. You cannot distribute binaries based on modified GPL source without also making available the source modifications.

Regards,
Alister
This User Gave Thanks to alister For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to update copyright header on a folder

Hi, I have multiple shell scripts in diffrent folders on server. Most of them contain copyright information like on the third line * Copyright © 2004, 2005, My Inc. All rights reserved. I need to change these headers to * Copyright © 2003, 2009, My Inc. All rights reserved. ... (2 Replies)
Discussion started by: neeto
2 Replies

2. Shell Programming and Scripting

How to append copyright to all files?

I have one file that contain copyright notice, that I would like to append to all files in our directory structure (excluding binaries). How can I do that? Thanks for your help! (3 Replies)
Discussion started by: SiftinDotCom
3 Replies

3. UNIX for Dummies Questions & Answers

Copyright Symbol?

Anyone know how to have the copyright symbol display without using the '@' sign or the '(c)' key combinations? Is it available? Not important, just my a... retentive side wishing to shore up some scripts with a true copyright symbol. (2 Replies)
Discussion started by: spieterman
2 Replies
Login or Register to Ask a Question