Difference between revisions of "Ubuntu OS"
Jump to navigation
Jump to search
(5 intermediate revisions by the same user not shown) | |||
Line 47: | Line 47: | ||
</pre> | </pre> | ||
== Black Screen on Linux Boot == | == Black Screen on Linux Boot == | ||
<p style="text-align: left;"><span style="color: #000000; font-family: Arial; font-size: medium; line-height: normal;">1- In linux, if the screen goes black because Xorg didn't start, you can still get to a terminal by using ctrl+alt+F1 or F2 etc. F7 I believe is the Xserver. You can do this even while X is running to get back to a plain text terminal. You can also exit X by using ctrl+alt+backspace if it is still operational.</span></p> | <p style="text-align: left;"><span style="color: #000000; font-family: Arial; font-size: medium; line-height: normal;">1- In linux, if the screen goes black because Xorg didn't start, you can still get to a terminal by using ctrl+alt+F1 or F2 etc. F7 I believe is the Xserver. You can do this even while X is running to get back to a plain text terminal. You can also exit X by using ctrl+alt+backspace if it is still operational.</span></p> | ||
== Installing GUI in Ubuntu Server == | == Installing GUI in Ubuntu Server == | ||
Line 365: | Line 60: | ||
<p>OR</p> | <p>OR</p> | ||
<p>sudo apt-get install kubuntu-desktop<br /><br />Startx - to start Gui</p> | <p>sudo apt-get install kubuntu-desktop<br /><br />Startx - to start Gui</p> | ||
---- | |||
==[[Main_Page| Home]] - [[Ubuntu_Tips|Category]]== |
Latest revision as of 16:50, 14 April 2022
Allow port 3306 to be accessible externally
edit the /etc/mysql/my.cnf # the bind address which is usurally 127.0.0.1
Installing Bittorrent Sync
sh -c 'echo "deb http://linux-packages.getsync.com/btsync/deb btsync non-free" > /etc/apt/sources.list.d/btsync.list' wget -qO - http://linux-packages.getsync.com/btsync/key.asc | sudo apt-key add - sudo apt-get update sudo apt-get install btsync
Autostart Bitsync: add "Service btsync start" to the /etc/rc.local file
== How to Use BT sync:== There’s already a few great tutorials about setting up Btsync in Ubuntu around the web. And below is a brief how-to: First create a shared folder and set its permissions, here I created a folder shared_folder under the root of my current user: cd && mkdir shared_folder sudo chown YOUR_USER:btsync shared_folder sudo chmod 2775 shared_folder sudo usermod -a -G btsync YOUR_USER Then start the btsync service: sudo service btsync start You may replace start with stop, enable, disable, or status to control Btsync. Now go to localhost:8888 in your web browser and add the previous created folder: Finally share the link, key, or QRcode with your friends and enjoy!
GuruPlug Server
Ip is set to DHCP at boot by a script. so even if you edit the /etc/interface file and add Static ip's it will change on reboot. In order to fix this this you need to edit the /etc/ifplugd/ifplugd.action file and # dhclient3 -e IF_METRIC=100 -pf /var/run/dhclient.eth0.pid -lf /var/lib/dhcp3/dhclient.eth0.leases eth0 line
Black Screen on Linux Boot
1- In linux, if the screen goes black because Xorg didn't start, you can still get to a terminal by using ctrl+alt+F1 or F2 etc. F7 I believe is the Xserver. You can do this even while X is running to get back to a plain text terminal. You can also exit X by using ctrl+alt+backspace if it is still operational.
Installing GUI in Ubuntu Server
sudo apt-get install ubuntu-desktop
OR
sudo apt-get install kubuntu-desktop
Startx - to start Gui