Search content
Sort by

Showing 20 of 25 results by cryptosheeple
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [POW] [MSR] Masari - private, untraceable, and fungible cryptocurrency
by
cryptosheeple
on 17/04/2018, 12:40:21 UTC
Wow look at that hash rate jump. ASICS are definitely in play. Hope the fork happens soon...
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XDAG] Dagger - New Community-based Cryptocurrency - First Mineable DAG !
by
cryptosheeple
on 11/04/2018, 07:18:42 UTC
cheat0 is back?  Grin
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][XRB]Cryptocurrency's killer app: RaiBlocks micropayments
by
cryptosheeple
on 06/04/2018, 22:53:55 UTC


Does not solve the problem


I'll have a try at setting a node up and see how I go.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][XRB]Cryptocurrency's killer app: RaiBlocks micropayments
by
cryptosheeple
on 06/04/2018, 12:43:50 UTC

The output ports seems to be non-7075, maybe try using sport 7075 instead?

Thank you for your answer.

I have done:
Code:
/sbin/iptables -t filter -A OUTPUT -p udp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A INPUT -p udp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A OUTPUT -p tcp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A INPUT -p tcp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A OUTPUT -p udp --sport 7075 -j ACCEPT
/sbin/iptables -t filter -A INPUT -p udp --sport 7075 -j ACCEPT
/sbin/iptables -t filter -A OUTPUT -p tcp --sport 7075 -j ACCEPT
/sbin/iptables -t filter -A INPUT -p tcp --sport 7075 -j ACCEPT

But it is the same Sad


Sad That sucks. Last option would be to check your ip6tables for rules and to also tcpdump the packets to see where they're goin.

Post
Topic
Board Announcements (Altcoins)
Re: [ANN][XRB]Cryptocurrency's killer app: RaiBlocks micropayments
by
cryptosheeple
on 05/04/2018, 11:12:13 UTC
Hi there,

Newby question, please. I have installed a headless node on an Ubuntu 16.04
At node start I have 4 errors strings:
"sendto: Operation not permitted
sendto: Operation not permitted
sendto: Operation not permitted
sendto: Operation not permitted"


I have opened UDP port for peering in the firewall with no result:
#nano In/Out
/sbin/iptables -t filter -A OUTPUT -p udp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A INPUT -p udp --dport 7075 -j ACCEPT

What am I missing? Thank you.

Are you directing packets to a table called filter? Any other rules you have got in place?

Maybe try this instead:

Code:
/sbin/iptables -I INPUT -p udp --dport 7075 -j ACCEPT
/sbin/iptables -I OUTPUT -p udp --dport 7075 -j ACCEPT

Yes, it is part of a larger firewall script where I close "everything" then re-open one by one each port I need (I have others software running on this server). Here is the beginning of the script:
Code:
#!/bin/sh

# Empty rules
/sbin/iptables -t filter -F

# Empty personnal rule
/sbin/iptables -t filter -X

# Forbid everything
/sbin/iptables -t filter -P INPUT DROP
/sbin/iptables -t filter -P FORWARD DROP
/sbin/iptables -t filter -P OUTPUT DROP

# Preserve established connexion
/sbin/iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
/sbin/iptables -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT

# Allow loopback
/sbin/iptables -t filter -A INPUT -i lo -j ACCEPT
/sbin/iptables -t filter -A OUTPUT -o lo -j ACCEPT

Then I open the ports I need according to https://github.com/nanocurrency/raiblocks/wiki/Network-usage

Code:
#nano In/Out
/sbin/iptables -t filter -A OUTPUT -p udp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A INPUT -p udp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A OUTPUT -p tcp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A INPUT -p tcp --dport 7075 -j ACCEPT

The -t filter comes from the way the script starts and does works well will all other programs, I have been using this script for years. I suspect this is related to the UDP nature of the protocol but I have no idea.

Anyone out there has an iptable working script on Ubuntu ?

I also have in my logs:
Code:
[2018-04-04 12:14:39.686591]: Error broadcasting confirm_ack to [::ffff:138.68.183.123]:1964: Operation not permitted
[2018-04-04 12:14:39.687108]: Error broadcasting confirm_ack to [::ffff:51.255.200.174]:6063: Operation not permitted
[2018-04-04 12:14:39.687115]: Error broadcasting confirm_ack to [::ffff:5.189.128.113]:12000: Operation not permitted
[2018-04-04 12:14:39.687160]: Error broadcasting confirm_ack to [::ffff:186.155.30.146]:52921: Operation not permitted
[2018-04-04 12:14:39.687176]: Error broadcasting confirm_ack to [::ffff:167.99.254.89]:1024: Operation not permitted
[2018-04-04 12:14:39.687257]: Error broadcasting confirm_ack to [::ffff:186.155.30.146]:62212: Operation not permitted


The output ports seems to be non-7075, maybe try using sport 7075 instead?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][XRB]Cryptocurrency's killer app: RaiBlocks micropayments
by
cryptosheeple
on 04/04/2018, 07:33:43 UTC
Hi there,

Newby question, please. I have installed a headless node on an Ubuntu 16.04
At node start I have 4 errors strings:
"sendto: Operation not permitted
sendto: Operation not permitted
sendto: Operation not permitted
sendto: Operation not permitted"


I have opened UDP port for peering in the firewall with no result:
#nano In/Out
/sbin/iptables -t filter -A OUTPUT -p udp --dport 7075 -j ACCEPT
/sbin/iptables -t filter -A INPUT -p udp --dport 7075 -j ACCEPT

What am I missing? Thank you.

Are you directing packets to a table called filter? Any other rules you have got in place?

Maybe try this instead:

Code:
/sbin/iptables -I INPUT -p udp --dport 7075 -j ACCEPT
/sbin/iptables -I OUTPUT -p udp --dport 7075 -j ACCEPT
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [POW] [MSR] Masari - private, untraceable, and fungible cryptocurrency
by
cryptosheeple
on 29/03/2018, 21:44:03 UTC
You are not too late ! Two weeks ago the network  was 2MH/s and the price arounf 0.18. Today Network 9 MH/s and price around 0.45 .You are in the next great position to invest now. You want to guess the numbers one month from now ? Smiley

Buy, or mine?  Huh
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [POW] [MSR] Masari - private, untraceable, and fungible cryptocurrency
by
cryptosheeple
on 29/03/2018, 10:56:44 UTC
+137,25% price jump?
Coin finally lost virginity? Grin

Too bad I got in late   Cry
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [POW] [MSR] Masari - private, untraceable, and fungible cryptocurrency
by
cryptosheeple
on 29/03/2018, 06:20:35 UTC
This is now 4 times in a row that Bitcoin bleeds red and Masari is in the green. Masari is now a more safer option than Tether to keep your money safe in 2018. Nobody is selling their MSR.

Masari is the only one of Cryptonote coin that price up about 700 - 1000 % or more since Nov 2017. Slow but sure, without big pump or big dump. Because miner knew this is valuable.

The price is natural, no big pump or big dump.

* Please note that was my opinion, but with FACT


Lots of activity on Github these last few days from the Devs. Looks like roadmap deadlines will be met. Will be interesting to see what happens to price and Network Hash rate in the next few weeks.

Network rate has spiked!
Post
Topic
Board Announcements (Altcoins)
Re: NANO (new CPU Mining Algo) - formerly RaiBlocks
by
cryptosheeple
on 24/02/2018, 05:53:31 UTC
Nano? Mine? wtf?  Huh
Post
Topic
Board Announcements (Altcoins)
Re: 🌟🚀 [Pre-ANN] AZULIK: adding privacy to DAG fee-less instant transactions 🌟🚀
by
cryptosheeple
on 14/02/2018, 07:17:31 UTC
What's the total number of coins?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][ICO][NEW][AIRDROP] GRIDNET Project - We change the World!
by
cryptosheeple
on 04/02/2018, 09:00:45 UTC
It is most unfortunate that I've got a newbie account registered after 11.11.17!   Cry
Post
Topic
Board Announcements (Altcoins)
Re: [XAO] Alloy - The next generation anonymous, Cryptocurrency based on CryptoNote!
by
cryptosheeple
on 26/01/2018, 03:39:10 UTC
On the old wallet is there a command to change or remove the password?

Also, the old daemon cannot connect any more. I was sure my balance was over 220 XAO. Now when I run the wallet without the daemon getting any peers it only shows a balance of 80 coins. Is there a website where I can check the balance of an address on the old chain?

@alloyd - Please answer these two questions.


The old blockchain has been shutdown, we've just relaunched the new blockchain. You can get a complete refund for all funds within your old wallet by posting your wallet on our refund page here, https://walletxfer.alloyexplorer.com/.


This site has been shutdown, and processing payments? I haven't submitted yet, how do I get my wallet updated?
Post
Topic
Board Announcements (Altcoins)
Re: SCAM ALERT- STONE RAIBLOCKS PRIVACY FORK
by
cryptosheeple
on 19/01/2018, 11:28:17 UTC
He already recieved almost 400,000 USD in donations, and theres not even a website or a whiterpaper. Also a lot of new accounts supporting and spamming the thread. Obvious scam is obvious.

$400,000 with a single piece of code? Holy christ (just reposting this so people see its a scam)

What code? lol. I can't believe people donated...  Huh
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XDAG] Dagger - new cryptocurrency
by
cryptosheeple
on 19/01/2018, 11:18:01 UTC
Besides GPU mining capabilities, what type of features are you looking to implement in the future for this cheat0shin?  Not loving the current logo (reminds me too much of Gucci brand), how open are you to selecting a new one if more logos are proposed?

Thanks!

Not a fan of the logo either at the moment, but tech first!
Post
Topic
Board Announcements (Altcoins)
Re: [PRE-ANN] Manta - DAG & zkSNARKs - Fast, Fee-less, Private Cryptocurrency
by
cryptosheeple
on 19/01/2018, 10:55:51 UTC
Hey everyone, just making a quick update here!

We're currently not accepting donations for a short period of time as our purpose of initial donations was to provide funds for aiding development, not necessarily serving as an ICO. We look to re-allow donations again in the upcoming weeks.

We appreciate the enthusiasm through this thread and look forward to releasing MANTA as soon as possible, although we will not release it incomplete.

Lastly, we'll be providing occasion development updates between now and the release of our whitepaper and such.

Cheers,

Brian, Jason, and Nikhil

Brilliant. This should be the way. Looking forward to seeing more and investing.
Post
Topic
Board Announcements (Altcoins)
Re: BiblePay - New Coin Launch - Official Thread
by
cryptosheeple
on 15/01/2018, 11:12:42 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XDAG] Dagger - new cryptocurrency
by
cryptosheeple
on 15/01/2018, 06:30:44 UTC
Following the linux documentation and doing everything properly I run into this error:

/xdag -m 5 -d 109.90.229.170:35585

-bash: /xdag: No such file or directory


Needs to start with a period:

./xdag -m 5 -d 109.90.229.170:35585

Thank you.

running xdag> commands return 'command not found'


Did you get it to work?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XDAG] Dagger - new cryptocurrency
by
cryptosheeple
on 15/01/2018, 06:23:25 UTC
Hi

Sorry. But How can I withdraw the coin?

If you are mining, it goes straight into your wallet. There's no withdrawing from anything.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XDAG] Dagger - new cryptocurrency
by
cryptosheeple
on 14/01/2018, 05:46:37 UTC
New version T13.819 is available in the Linux repo.

Feature: the 'stats' command show self hashrate of miner.

brilliant!

thanks for this.