JuiceBlog A TFC - Internet - Debian - Juice blog. Formerly named the most famous orange juice of the world, ever!
Posts with the tag GNU/Linux:

No sound after dist-upgrade from stretch to buster

Well, I finally decided to upgrade my Debian to the current stable version. Everything actually went extremely smoothly, even if I wasn’t all that optimistic in the progress.

Multiple monitors without EDID on Linux

I’ve been wanting to make this work for a long time, but the two times I tried to configure it I gave up because I just didn’t know what else to do. This time I sat down and didn’t get up until it worked. I worked on the xorg.conf several times before, so I know my way around it. It was still quite a puzzle for me to get working. If you want to know how to configure a display without EDID on Linux, click here. First I tried using the X way. Multiple Monitors with a Screen each, using one Device, put together in a ServerLayout.

Generating a PGP key for Retroshare

So, exactly a month ago I’ve been playing around with Retroshare. I liked the idea that you use your PGP key as an identifier, but soon hit a brick wall: my key had sub-keys. Specifically, a sub-key for encryption. I posted the issue to Retroshare’s Twitter and they shortly after confirmed my issue. I had no idea how to create a plain, no-subkey PGP key. But it’s so simple!

Installing BTSync properly on Debian

Download the appropriate version of BitTorrent Sync and open a terminal on your Download directory. The archives have various names, so I’ll just use a generic one. First, extract the executable. tar xf btsync.tar.gz Then, move it to the user binaries folder. sudo mv btsync /usr/bin Now, open up your scheduling configuration. crontab -e To the bottom of the file, add this: @reboot btsync --config ~/.config/btsync/btsync.json Exit the editor. Now, create the folder and the file. Choose a port and change it to something you like (the “listen” attribute under “webui”). You may also add “username” and “password” to this, although you don’t have to.

FIX: You are missing 32-bit libs: libGL.so.1

So I’ve been getting an error when trying to start Steam. Luckily, I know how to use a search engine and quickly found a promising post by frankster. This did not fix my problems - I had to run this line to get Steam to work on my laptop: sudo apt-get install libgl1-nvidia-glx:i386 Works like a charm. :)

The future of GoldSrc mapping on GNU/Linux

I like GNU/Linux and the fact that Valve is releasing their Steam and Team Fortress Classic clients on it. I also like mapping for TFC and just recently picked it up again. Due to my recent decision to move to Debian Wheezy on my gaming / desktop computer I have been denied the pleasure of mapping with native mapping tools so far. The Valve Hammer Editor (formerly Worldcraft) is a win32 programme, other editors could be an option, but I prefer the “offiical” tools. I wrote Alfred Reynolds [Steam] [GitHub] an e-mail about this, since he’s currently one of the main GoldSrc developers at Valve.

Why the NVIDIA graphics driver should be available in repositories

It’s not that big of a deal, but would it really be that big of a problem to deliver a proper .deb package for the driver installation? I had to let the Nvidia installer disable my Nouveau driver, I had to manually stop LightDM and I also had to correct the /usr/bin/gcc link, since Nvidia apparently doesn’t care about my CC environment variable. sudo service lightdm stop sudo rm /usr/bin/gcc sudo ln -s /usr/bin/gcc-4.6 /usr/bin/gcc What’s up with that?

Installing Debian with Mate

Preparing your installation medium First you need to put your Debian image on a USB stick. You can do this by using the dd command; if is the input file, of is the output file. We are going to use the ISO as input and the USB device address as output. dd if=/home/orangensaft/Downloads/debian-wheezy-DI-rc1-amd64-netinst.iso of=/dev/sdb When it’s done you’ll see a new line, ready for input. At that point, you may restart your system and boot from USB. Installing Debian & initial setup I recommend keeping a second USB stick around to conveniently deliver missing firmware to the installer, although this is optional if they aren’t essential network or display drivers.

A few helpful mail tips

Most of these things never really bothered me on their own, but after some time it just starts to get annoying. Especially when all the mail you get is about how a file exists that you could easily and quickly delete, or how the configuration is just not right for another certain, convenient feature. How do I read mail? / Which client should I use? To read your mails, you could use the standard mail application. I suggest you try others, like mutt. It’s actually quite nice, if, like me, you just need a client to read local system mail. When it comes to more, you might want to check if your favourite E-Mail desktop application can read the system mail.

Upgrade ownCloud from manual install to repository

I started out with a manual installation on version 4.5.4. It was located in a /home/ folder rather than the /var/www/ directory, which gave me opportunity to think some more. So, let’s begin. Go to the folder your ownCloud installation is in and tar it, in case anything goes wrong. sudo tar -cjvf owncloud.tar.bz2 owncloud/ Since it’s now owned by root because of the sudo, make it yours now. sudo chown orangensaft:orangensaft owncloud.tar.bz2 Subscribe to the new ownCloud server repository. sudo vim /etc/apt/sources.list Add this line at the bottom: deb http://download.opensuse.org/repositories/isv:ownCloud:community/Debian_6.0/ / Then add the key, update your repositories and install owncloud.