Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - dizzie

#31
Quote from: ozitraveller on May 20, 2016, 01:30:47 AM
How do you find Devuan Ceres?
Solid, fast, and overall very pleasing to use. It's just Debian without the systemd monster :) But i'm still waiting for some systemd crap to come sneaking in :D
#32



Same old, except running Devuan/SID, with no !@#$ systemd
#33
Hot?

dev.cpu.3.temperature: 34.0C
dev.cpu.2.temperature: 34.0C
dev.cpu.1.temperature: 37.0C
dev.cpu.0.temperature: 37.0C


#34
"Not doing sh*t"


"Pretending to do stuff"


FreeBSD+ZFS is amazing! But I might just go back to Debian in a few days lol. Fun to set up though :)
#35
Artwork & Screenshots / Re: Kovo 2016 ekrano tema
March 25, 2016, 11:41:58 AM
Ha! I knew it!  :D
#36
Artwork & Screenshots / Re: Kovo 2016 ekrano tema
March 24, 2016, 11:29:02 PM
Icons are evil, and confusing.
Messes up with my workflow :)
#37
Artwork & Screenshots / Re: Kovo 2016 ekrano tema
March 24, 2016, 11:09:17 AM
I use a mono spaced font, awesome for coding :)

I should show you my vimrc, it changes colors after what i'm coding, python is in green, c is in red and so forth :)
#38
Artwork & Screenshots / Re: Kovo 2016 ekrano tema
March 23, 2016, 12:38:03 PM
My laptop:

"Doing stuff"


"Doing nuffin"


And NO, no inconsolata font this time, found a better one for coding :)
#39
Artwork & Screenshots / Re: Kovo 2016 ekrano tema
March 23, 2016, 07:12:20 AM
#40
Artwork & Screenshots / Re: Kovo 2016 ekrano tema
March 16, 2016, 03:47:17 PM


:D
#41
Media Room / Re: Just listened to
March 16, 2016, 03:10:24 PM
So this awesome lady, which btw. doesn't look a day over 45, is turning 70 in may


#42
WM Designs and Discussions / Re: i3 (tiling WM)
March 16, 2016, 08:25:00 AM
I've heard about it, but I like my i3 like i like my coffee, strong and compact  :D
#43
Artwork & Screenshots / Re: Kovo 2016 ekrano tema
March 12, 2016, 12:26:21 PM
Quote from: jedi on March 12, 2016, 05:20:54 AM
*(spec's listed for dizzie's sake!  No one else will care  ;) )


:D  Looks good Jedi  :D
I bet your kernel compile time will be cut in half now  ;D
#44
Yes it's real :) 10.0.0.* is faster to type than 192.168.* :D
#45
How To's / HOWTO Setup a file/media/torrent- server
March 10, 2016, 04:02:13 PM

How to setup that old ancient/obsolete computer of yours, into a powerful and fully fledged
fileserver, media server, torrent downloader in less than 20min (ish)


1. Check the hardware, to actually see if the hardware still works (a live cd will do)
2. Install VSIDO or Debian, or whatever really, NO! Not Wintendo please :)


I'll go along using my own hardware/experience in this guide


Inxi spam below



Machine:   Mobo: ASRock model: C70M1 Bios: American Megatrends v: P1.30 date: 05/16/2014
CPU:       Dual core AMD C-70 APU with Radeon HD Graphics (-MCP-) cache: 1024 KB
           clock speeds: max: 1000 MHz 1: 1000 MHz 2: 800 MHz
Network:   Card: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller driver: r8169
           IF: eth0 state: up speed: 1000 Mbps duplex: full mac: <filter>
Drives:    HDD Total Size: 2320.5GB (84.9% used)
ID-1: /dev/sda model: ST31000528AS size: 1000.2GB
ID-2: /dev/sdb model: ST1000DM003 size: 1000.2GB
ID-3: /dev/sdc model: ST9320325AS size: 320.1GB

This mainboard is so low power, so it's not even funny. On full load (CPU 100%) it uses 7 watt :)


Use what drives you have, and since it's mainly a fileserver, i used JBOD/LVM to create one single partition:


   
Quote/dev/mapper/nas-share  2.1T  1.8T  184G  91% /


Secure? Not much. Reliable? Pretty much


   
Quote7:03AM  up 307 days, 15:45,  1 user,  load average: 0.00, 0.01, 0.05

Ok, enough showing off, let's get cracking!


1. Install, reboot, apt-get update, etc etc (you know the drill?)


2. NFS
   1. # apt-get install nfs-kernel-server nfs-common rpcbind
   2. Create a dir to share (/share is a good option)
   3. Edit /etc/exports:
    /share          *(rw,sync,no_subtree_check)
   4. Save the file (^X)
   5. type as root "exportfs -a"
      Check on your desktop if it is working: "showmount -e <ip of server>"
      *** If not, rpcbind can be a bit of a b***, so a reboot might be needed (was in my case)
   6. fstab time!
      Edit your fstab on your desktop : This is what mine looks like (change to match yours)
      10.0.0.100:/share       /mnt/share      nfs4        rsize=8192,wsize=8192,timeo=14,_netdev      0   0
   7. Save/exit
   8. type as root (mount -a) to test if it works (df -h)
   9 If it does, great :)


3. Samba
   1. # apt-get install samba samba-client
   2. I use the same share as with NFS, why? Cause I can, and cause it works for me :)
   
   Do something like this in your smb.conf in /etc
   
   

[share]
path = /share
browseable = yes
available = yes
public = yes
writable = yes
force user = <user>
create mask = 0644
directory mask = 0755

      
   3. Save and exit
   4. # smbpassword -a <user>
   5. restart samba
   6. check on Wintendo machine if the share shows up (it should!)


4. Plexmedia server
   1. # echo "deb http://shell.ninthgate.se/packages/debian wheezy main" >> /etc/apt/sources.list
   2. # curl http://shell.ninthgate.se/packages/shell-ninthgate-se-keyring.key | sudo apt-key add -
   3. # apt-get update
   4. # apt-get install plexmediaserver
   5. Plex can then be found at http://<ip>:32400/web
   ** Refer to plex doc for setting it up ( https://support.plex.tv/hc/en-us/articles/200264746-Quick-Start-Step-by-Step )
   
5. Torrent downloader
   1. I use the deluge webinterface
   2. Install deluge-web
   3. Run 'deluge-web' in a screen (I am lazy! Bite me lol)
   4. Open http://<ip>:8112/
      password is : deluge
      


6. What else? Really up to you, an ftp server maybe (I prefer ssh/sshfs/sftp)


!!NB: This is a rough and simple guide/howto, If you need a more through and through guide, i'll be happy to help with that. Just wanted to share what i've been using for almost a year by now.


And the obligatory screen-shot-or-it-didn't-happen below :)





This is about a 1ft tall ITX case, and 99% silent. Can only hear it if I sorta stick my head all the way down there. :)