debian

VirtualBox Manager – Debian – RedHat – BSD

Currently Debian systems are fully supported in VirtualBox Manager. It is apparent, based on initial user feedback, that RedHat and BSD systems are responding to various commands differently. Ultimately VBM issues a variety of VBoxManage commands and captures the standard output for analysis. Something is different on RedHat and BSD systems.

I am currently installing Fedora, and will install a comparable BSD system for analysis. When proper formatting of the commands are determined I will update VBM with an option to select the type of host being connected to.

VirtualBox 3.1.4 – Debian Lenny SMP Instability

I use an Ubuntu Karmic desktop environment for my host. I use VirtualBox with Debian Lenny for virtual machines. Most of the time virtual machines work fine with multiple processors enabled in VirtualBox, but Debian Lenny does have some instability forcing the VirtualBox configuration to use 1 processor to maintain stability. Maybe changing the kernel, particularly to an SMP kernel, is required; this would make sense. I can try that or just leave it as a single core virtual machine which is stable. I’m not really inclined to do anything because everything works fine as is.

Auth.log in Debian Systems

OpenWrt (White Russian 0.
Image via Wikipedia

Your auth.log file is the first step in determining of an intrusion is being attempted, or has occured. It logs all ssh connection attempts, cron jobs, and su calls. If an ssh brute force attach is occurring you will see countless failed ssh login attempts. Most likely various usernames will be attempted. You should immediately stop the ssh server and implement some security countermeasures. Implement various rules in your hosts.allow and hosts.deny files any if you want implement some iptables rules. Host.allow and deny should be enough; the files control tcp connections to your running system daemons. Iptables will block ip numbers just at the connection attempt is made to the computer so for ultimate security implemente iptables and various host rules.

After locking down your servers you will see brute force attacks stop, and your auth.log file will be mainly filled with cron jobs and su commands by users and daemons. The cron jobs are automated process run by various applications, and are mostly run as root. Mail servers, and other tasks are typically managed by cron jobs. You can check user specific cron jobs using the crontab command. Use option -e to edit a users jobs.

Reblog this post [with Zemanta]

Debian Raw1394 Permission Requirements to Access Device

A simple file permission nag. On Ubuntu this permission is automatically set, but on my recent Lenny install I had to set the permission of the device manually to enable firewire support in MythTV. The 1394 drivers are all automatically installed conveniently, other than this permissions fix there were no other driver or hardware configuration requirements. sudo chown mythtv:mythtv /dev/raw1394

Thermaltake 2U Drive Bay Cooler – System Tweaking

This is my first experience with a water cooling system, and its a winner. A leak is the only thing that will make me hate water cooling, but otherwise my system is cooler than ever; pun intended. I operate at 21 – 30 C without overclocking, and overclocked to 2.6 Ghz I’m at around 35 C. Using the newely updated, and incredibly stable Debian Lenny performance is better than ever. With preload installed and a strategically implemented ram disk system performance is surely maxed out with the processor operating at such cool temperatures.

Debian Etch Compiz – Beryl

Although the Debian repos have Compiz available, I have had bad experiences with what should be a routine installation. Although I have had good experiences utilizing the now outdated Beryl repos and software. To install Beryl for Debian Etch AMD64 add the following repos to your apt sources file: deb http://debian.beryl-project.org/ etch main deb-src http://debian.beryl-project.org/ etch main Add the gpg key: wget -O - http://debian.beryl-project.org/root@lupine.me.uk.gpg | sudo apt-key add - Install Beryl: sudo apt-get update && sudo apt-get install beryl-manager emerald-themes Update xorg.conf (sudo nano /etc/X11/xorg.conf): then added these two lines under the “Screen” section Option “XAANoOffscreenPixmaps” Option “AddARGBGLXVisuals” “true” then added these lines under “Device” Option “AllowGLXWithComposite” “true” Option “RenderAccel” “true” added one line under “Server Layout” Option “AIGLX” “on” Finally at the end of the file add these lines Section “Extensions” Option “Composite” “Enable” EndSection