Tech

How to Restart Windows via Remote Desktop

The Shutdown command is not available on the Start menu to shut down and restart, when you are using Remote Desktop. To shut down a remote computer when you are using Remote Desktop, press CTRL+ALT+END, and then click Shutdown. Or, use the shutdown command at a command prompt. ...

Read More

How to install Ruby on Rails in FreeBSD

1. Install ruby 1.8 # pkg_add -r -v ruby 2. Install Ruby Gems and Rails # pkg_add -r -v rubygem-rails 3. Install apache # pkg_add -r -v apache22 4. Install Passenger (aka mod_rails) # pkg_add -r -v rubygem-passenger 5. Add lines to LoadModule passenger with apache # nano /usr/loc...

Read More

Tagged As: , , , ,

How to check if ssh is running on FreeBSD

Here are some command to check if ssh deamon is running on your FreeBSD box. # pgrep ssh or you can type: # top ...

Read More

Tagged As: , , , , ,

How to install ports on FreeBSD

Before you can install ports, you must first obtain the Ports Collection–which is essentially a set of Makefiles, patches, and description files placed in /usr/ports. When installing your FreeBSD system, sysinstall asked if you would like to install the Ports Collection. If...

Read More

Tagged As: , ,

How to install bash on FreeBSD

First you want to check what shell you have currently installed becuase you might have bash installed but just not activated. Go to freebsd terminal and type # shell To install bash via compile method type: # cd /usr/ports/shells/bash # make install clean OR To install package # ...

Read More