Pages:
Author

Topic: LinuxCoin A lightweight Debian based OS with everything ready to go. - page 20. (Read 285112 times)

hero member
Activity: 770
Merit: 502
drgr33n, does your youtube video HDD install tutorial work on the final?

yes it should work as intended. i do have an installer on it's way just been very busy bud.

Alrighty, I had problems with the tut and prefinal, read up after words, to find out, to wait for final, just double checking before I go through the long haul.

And that is definitely awesome about the installer!
sr. member
Activity: 308
Merit: 251
drgr33n, does your youtube video HDD install tutorial work on the final?

yes it should work as intended. i do have an installer on it's way just been very busy bud.
hero member
Activity: 770
Merit: 502
drgr33n, does your youtube video HDD install tutorial work on the final?
sr. member
Activity: 308
Merit: 251
bitcoin client updated !!

Code:
apt-get update
apt-get install bitcoin
sr. member
Activity: 333
Merit: 250
I followed now this two tutorials, which where working for me:
http://www.linuxcoin.co.uk/wiki/index.php/SSH_X11forwarding
http://www.linuxcoin.co.uk/wiki/index.php/SettingupVNCremotely

But my initial question was another:
I do not want to start always over putty a remote session and I do not want to start remotely vnc.
My Question was, how to make vnc autostarting?
Is there no way to make it starting always after restart with the same settings like in the second tutorial?

add @vino-preferences to /etc/xdg/lxsession/LXDE/autostart

Yhe Desktop permissions error is a weird one I didn't anticipate that. I'll add a fix but if you want to quickly fix yours

Code:
sudo chmod 777 /home/user/Desktop
Thank you very much, both are now working for me. Smiley
sr. member
Activity: 308
Merit: 251
Well I am extremely disapointed. The bitcoin client password tool does not work at all.

It does not matter what I pick, secured or unsecured I get the same wallet

In secured it does not matter what I type in or don't type as a password I see the same wallet

EDIT: yes it seems as if the latest bitcoin client deletes symlinks ? strange !! I'll ask about this now. but have you also noticed the client has the option aswell Wink

I followed now this two tutorials, which where working for me:
http://www.linuxcoin.co.uk/wiki/index.php/SSH_X11forwarding
http://www.linuxcoin.co.uk/wiki/index.php/SettingupVNCremotely

But my initial question was another:
I do not want to start always over putty a remote session and I do not want to start remotely vnc.
My Question was, how to make vnc autostarting?
Is there no way to make it starting always after restart with the same settings like in the second tutorial?

add @vino-preferences to /etc/xdg/lxsession/LXDE/autostart

Yhe Desktop permissions error is a weird one I didn't anticipate that. I'll add a fix but if you want to quickly fix yours

Code:
sudo chmod 777 /home/user/Desktop
sr. member
Activity: 333
Merit: 250
Has anyone the same problems adding icons to the desktop with right mouse click on startmenu item and then on "add to desktop"?

It seem that I do not have any write permissions to the desktop?! I tried to write a text-file directly there, too, but it does not work either. I tried to set more write permissions, but that is not working, too.
sr. member
Activity: 333
Merit: 250
I followed now this two tutorials, which where working for me:
http://www.linuxcoin.co.uk/wiki/index.php/SSH_X11forwarding
http://www.linuxcoin.co.uk/wiki/index.php/SettingupVNCremotely

But my initial question was another:
I do not want to start always over putty a remote session and I do not want to start remotely vnc.
My Question was, how to make vnc autostarting?
Is there no way to make it starting always after restart with the same settings like in the second tutorial?
sr. member
Activity: 333
Merit: 250
thank you for your new release...

Anyway I am sorry to tell you, that there are still the same errors than before:
If I try to login via SSH, it still is asking me for a usernam and a password. Simple pressing enter does not work...
Is there a password?


It talks about this on the first page.

Anyway it is:
user
live

Oh. Thank you.   Embarrassed
sr. member
Activity: 404
Merit: 250
thank you for your new release...

Anyway I am sorry to tell you, that there are still the same errors than before:
If I try to login via SSH, it still is asking me for a usernam and a password. Simple pressing enter does not work...
Is there a password?


It talks about this on the first page.

Anyway it is:
user
live
member
Activity: 84
Merit: 10
I yam what I yam. - Popeye
Well I am extremely disapointed. The bitcoin client password tool does not work at all.

It does not matter what I pick, secured or unsecured I get the same wallet

In secured it does not matter what I type in or don't type as a password I see the same wallet
sr. member
Activity: 333
Merit: 250
thank you for your new release...

Anyway I am sorry to tell you, that there are still the same errors than before:
If I try to login via SSH, it still is asking me for a usernam and a password. Simple pressing enter does not work...
Is there a password?


Another thing is, that I can not put anything on the desktop by clicking into the menue and using right mouse-button for "place on desktop".
Nothing happens then...


And the third thing I would like to mention, is that there is now appearing the login screen after booting every time. If I wait a moment than it seems to be automatically bypassed.
Maybe this is a correct behavior, maybe not?
sr. member
Activity: 308
Merit: 251
there's probably a few of you stratching your heads thinking what is GRSecurity and PaX ? so here's a little stolen info from gentoo lol

http://www.linuxcoin.co.uk/wiki/index.php/Grsecurity

You may also want to consider adding the command "xhost +"

I know to launch my SmartCoin on the Prefinal from ssh I have to run the following
Code:
DISPLAY=:0 xhost +
DISPLAY=:0 sudo smartcoin

Otherwise SmartCoin will error

here's a safer way lol it was already on the wiki Wink

Code:
sudo su
chmod uog+rw /dev/ati/card*
xauth merge /home/user/.Xauthority
export DISPLAY=:0
smartcoin

will all of those commands need to be run after each reboot or will the chmod and xauth part stick around?  I am using persistence on this setup

No you will have to run

Code:
sudo su
xauth merge /home/user/.Xauthority
export DISPLAY=:0

Everytime or you can just save it as a script and run it everytime you log in.

Code:
#!/bin/bash
xauth merge /home/user/.Xauthority
export DISPLAY=:0

save that as /usr/bin/setup_ssh

then

Code:
chmod 777  /usr/bin/setup_ssh

next time you login all you need to do is.

Code:
sudo su
setup_ssh
newbie
Activity: 42
Merit: 0
You may also want to consider adding the command "xhost +"

I know to launch my SmartCoin on the Prefinal from ssh I have to run the following
Code:
DISPLAY=:0 xhost +
DISPLAY=:0 sudo smartcoin

Otherwise SmartCoin will error

here's a safer way lol it was already on the wiki Wink

Code:
sudo su
chmod uog+rw /dev/ati/card*
xauth merge /home/user/.Xauthority
export DISPLAY=:0
smartcoin

will all of those commands need to be run after each reboot or will the chmod and xauth part stick around?  I am using persistence on this setup
sr. member
Activity: 308
Merit: 251
You may also want to consider adding the command "xhost +"

I know to launch my SmartCoin on the Prefinal from ssh I have to run the following
Code:
DISPLAY=:0 xhost +
DISPLAY=:0 sudo smartcoin

Otherwise SmartCoin will error

here's a safer way lol it was already on the wiki Wink

Code:
sudo su
chmod uog+rw /dev/ati/card*
xauth merge /home/user/.Xauthority
export DISPLAY=:0
smartcoin
sr. member
Activity: 308
Merit: 251


You may also want to consider adding the command "xhost +"

I know to launch my SmartCoin on the Prefinal from ssh I have to run the following
Code:
DISPLAY=:0 xhost +
DISPLAY=:0 sudo smartcoin

Otherwise SmartCoin will error

There is a more secure way to do this i can't remember off the top of my head but please note doing this compromises the security of your build. I will update the wiki on this Wink On a side note has anyone noticed the ssh is a lot faster now  Cheesy

I have!

lol good stuff I aim to please Cheesy
sr. member
Activity: 404
Merit: 250


You may also want to consider adding the command "xhost +"

I know to launch my SmartCoin on the Prefinal from ssh I have to run the following
Code:
DISPLAY=:0 xhost +
DISPLAY=:0 sudo smartcoin

Otherwise SmartCoin will error

There is a more secure way to do this i can't remember off the top of my head but please note doing this compromises the security of your build. I will update the wiki on this Wink On a side note has anyone noticed the ssh is a lot faster now  Cheesy

I have!
sr. member
Activity: 308
Merit: 251

Do this before using the gpu's
Code:
sudo su

or use a root terminal

This fixes my issue with aticonfig as well!

lol should of said I've restricted this to root only Wink

I just sent you a BTC to the LinuxCoin donation address as a thanks for all your hard work!

Muchos gracias señor ! Cheesy

You may also want to consider adding the command "xhost +"

I know to launch my SmartCoin on the Prefinal from ssh I have to run the following
Code:
DISPLAY=:0 xhost +
DISPLAY=:0 sudo smartcoin

Otherwise SmartCoin will error

There is a more secure way to do this i can't remember off the top of my head but please note doing this compromises the security of your build. I will update the wiki on this Wink On a side note has anyone noticed the ssh is a lot faster now  Cheesy
sr. member
Activity: 404
Merit: 250

Do this before using the gpu's
Code:
sudo su

or use a root terminal

This fixes my issue with aticonfig as well!

lol should of said I've restricted this to root only Wink

I just sent you a BTC to the LinuxCoin donation address as a thanks for all your hard work!
newbie
Activity: 42
Merit: 0
You may also want to consider adding the command "xhost +"

I know to launch my SmartCoin on the Prefinal from ssh I have to run the following
Code:
DISPLAY=:0 xhost +
DISPLAY=:0 sudo smartcoin

Otherwise SmartCoin will error
Pages:
Jump to: