Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the latest source code of Cassandra.

I have done some changes to the cassandra code to meet my needs.

Now I want to package this Cassandra into the debian package so that I can easily install it.

I do not have much knowledge about debian and all. Can anyone explain the step by step procedure for the same?

share|improve this question

1 Answer

up vote 4 down vote accepted

Assuming that you already have all the build dependencies, all you need to do is run this command from the Cassandra root directory:

$ dpkg-buildpackage -uc -us

It is strongly recommended that you build it with the OracleJDK instead of OpenJDK. There is a bug with certain versions of OpenJDK that will cause the build to fail.

All of this information is available on the Cassandra Wiki.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.