adhocshare Blog

0

Setting up thunderbird 17 on Linux with Exchange server 2010 emails, contacts and calendar

Are you running Thunderbird 17 (beta)?? Lets see the components required for setup this time — Basic Thunderbird 17 Setup ppa:mozillateam/thunderbird-next Details: https://launchpad.net/~mozillateam/+archive/thunderbird-next Setup your exchange email account with MAPI plugin. Subscribe to folders. After you add the account right click on...

0

Ripping DVD to Divx/avi

Tools Acidrip Video scale dimension 624×352 Resources http://www.linuxquestions.org/questions/linux-software-2/acidrip-codec-problem-153998/#post836004 No related posts.

0

Some C++ :p

Read content of file to stringstream int main() { std::ifstream file( “myFile” ); if ( file ) { std::stringstream buffer; buffer << file.rdbuf(); file.close(); // operations on the buffer… } } No related posts.

0

gdm2mdm converter

Are you on Linux Mint and are not finding Login window themes? Now you can convert your fancy looking GDM login themes to Mint MDM format. I wrote a small app that does the conversion for you. You can as...

0

Linux C++ / Some basics

Create directory #include <sys/types.h>#include <sys/stat.h>int status = mkdir(“dir_path”, S_IRWXU); No related posts.

0

Linux / mint / Ubuntu – free up disk space

sudo apt clean Cleans up data in directory /var/cache/apt/archives Related posts: Tips and Tricks for Linux Mint after Installation [Mint 13 Maya – Cinnamon Edition] Change Linux Login screen – GNOME Hosting multiple websites on Apache2

0

Linux HDMI no sound with HDA Intel ALC269VB

Digital Output (SPDIF) not working with HDA Intel ALC269VB Got it working! Open a terminal Code: sudo gedit /etc/modprobe.d/alsa-base.conf Add this to the bottom of the file Code: options snd-hda-intel model=auto REBOOT Under Sound Preferences > Hardware > Profile will...

0

Change Linux Login screen – GNOME

Steps Download nice looking GDM themes (GDM = GNOME Display Manager) Open Login manager (# sudo mdmsetup or System > Administration > Login Window) Login manager -> Local -> add -> select the downloaded theme files   Resources I found my set...

0

Find list of open ports / listening ports

lsof Samples # lsof -i -n -P netstat Samples # netstat -tulpn# netstat -a | egrep ‘Proto|LISTEN’# netstat -ao Important netstat arguments -n, –numeric don’t resolve names – this one really saves time ;)-e, –extend display other/more information-p, –programs display...