When I try to connect by FileZilla to server I get error: Nov 28 08:25:51 server01 sshd[19577]: Accepted password for root from 77.120.137.175 port 55070 ssh2 Nov 28 08:25:51 server01 sshd[19577]: subsystem request for sftp Nov 28 08:25:51 server01 sshd[19577]: error: subsystem: cannot stat /usr/libexec/sftp-server: No such file or directory Nov 28 08:25:51 server01 sshd[19577]: [...]
Posted on November 28th, 2012 by admin
Filed under: Software, Solutions | Comments Off
Perhaps you know redmine ported in FreeBSD and first of all I tried to install it: #cd /usr/ports/www/redmine ===> redmine-1.2.1_1 is marked as broken: Does not work with RubyGems 1.8. *** Error code 1 Stop in /usr/ports/www/redmine. Sure. You wouldn’t read this post if process had been done successfully Maintainer of this port marked this [...]
Posted on October 22nd, 2011 by admin
Filed under: Software | 4 Comments »
It is very actual question “mount iso in freebsd“. However mounting of iso is very easy. Let’s make sure it: Firstly we need to make virtual device for our iso image (use mdconfig for it): howtobsd# mdconfig -a -f /path_to_iso/Mac_OS_X.iso md0 md0 (command return) – it is name of virtual device (should appear in /dev/md0). [...]
Posted on October 3rd, 2011 by admin
Filed under: Software | 3 Comments »
Just a few notes about mysqldump. Create dump of mysql base: # mysqldump -uDBUSER -pPASSWORD DBNAME > filename.sql or # mysqldump –user=username –password=password DBNAME > filename.sql if you need to make dump of a few databases you can use parametr -B (or –databases): mysqldump -uDBUSER -pPASSWORD -B DBNAME1 DBNAME2 > filename.sql Make dump of the [...]
Posted on July 5th, 2011 by admin
Filed under: Development, Software, Tips | Comments Off
Too difficult to imagine Unix OS’s administrator which does not use ssh protocol (Secure SHell). In this how-to I would like to show how easy to use SSH Public Key Based Authentication. The most useful benefits for me in key authentication: ssh authentication without password ssh login from shell scripts security There are just two [...]
Posted on March 26th, 2011 by admin
Filed under: Software | Comments Off
Everybody who worked with svn knows fine svn client for windows TortoiseSVN. But what are we have similar for the linux (especially for FreeBSD). “True”-developers will say “I use console svn client and don’t want anything else” and will be right. Although many users wants user-friendly interface. So, today I want introduce you svn client [...]
Posted on December 26th, 2010 by admin
Filed under: Software | Comments Off
The problem with installing skype on FreeBSD: /usr/ports/net/skype12/ – installing, but doesn’t work. /usr/ports/net/skype/ – doesn’t installing: #cd  /usr/ports/net/skype/ #make install clean ===> skype-2.0.0.72,1 is marked as broken: This is the last version of skype that works on FreeBSD, but the distfile is no longer available from the vendor, and won’t be in the future. [...]
Posted on November 3rd, 2010 by admin
Filed under: Software | 8 Comments »
Openmeetings – is open source video conferencing server on FreeBSD Requirements: Openoffice 3.0 or latest Mysql-Server5 (or PostgreSQL) jdk16 (openjdk6, diablo-jdk1.6.0) swftools ImageMagick I hadn’t had swftools and OpenOffice (and i was really upset the fact that I had to install OpenOffice on FreeBSD server) I couldn’t install it from packages because many ports had [...]
Posted on October 15th, 2010 by admin
Filed under: Software | 1 Comment »
How to Install KDE4 on FreeBSD 8.1 1. Before installing you have to update ports tree: 2. Installing X.org: #cd /usr/ports/x11/xorg #make install clean create a X.org configuration file by command: #Xorg -configure and copy this file: #cp /root/xorg.conf.new /etc/X11/xorg.conf for testing Xorg: #Xorg -config xorg.conf.new -retro if installation have been completed is correct – [...]
Posted on September 29th, 2010 by admin
Filed under: Software | 7 Comments »
If you have just installed FreeBSD from CD\DVD, first that you need to do – update ports collection freebsd (update freebsd ports tree) and src files from repositories. With cvsup update ports collection isn’t difficult. Install cvsup: #cd /usr/ports/net/cvsup-without-gui/ #make install clean Copy and edit supfile (I describe only ports tree upfating process. Src updating [...]
Posted on September 12th, 2010 by admin
Filed under: Software | 2 Comments »