You can modify the default desktop manager in raspbian with:
[root@dataBananaBerry:~]# update-alternatives --config x-session-manager
There are 5 options for alternative x-session-manager (that provides /usr/bin/x-session-manager).
Selecction Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/startlxde 50 automatic mode
1 /usr/bin/lxsession 49 manual mode
2 /usr/bin/openbox-session 40 manual mode
3 /usr/bin/startlxde 50 manual mode
Read more...
debian
All posts tagged debian
Solution:
remove tightvncserver and install vnc4server, and restart xrdp.
apt-get remove tightvncserver
apt-get install vnc4server
/etc/init.d/xrdp restart
To remove the segmentation fault error in firefox, run in a shell
# ulimit -s unlimited
We have to include it also in /etc/bash.bashrc
Nowadays most of servers come with two or more network interfaces to allow load balancing or fault tolerance. Debian supports bonding interfaces in the next way. Is recommended running these commands from the console.
Install first ifenslave utilities
# apt get install ifenslave-2.6
Stop networking running:
# /etc/init.d/networking stop
Now add the modules to be loaded editing the file /etc/modprobe.d/bonding with next lines
alias bond0 bonding
options bonding mode=1 miimon=100 downdelay=200 Read more...