Page 4 of 4
Re: Complete Beginner
Posted: 11 Nov 2012, 14:16
by rednoah
@kiloback On Windows I have no idea how to redirect and print output, on Linux/Mac it's
tee:
http://en.wikipedia.org/wiki/Tee_%28command%29
Doesn't work in Windows CMD but luckily for you it works in
Windows PowerShell, e.g.
Code: Select all
powershell /c "echo hello | tee D:\log.txt"
@buck3y3 I sense you don't understand what a hardlink is
http://en.wikipedia.org/wiki/Hard_link#Example
Long story short, you can see any normal file as hardlink, if you create another hardlink, there'll just be another one, with a different path, but on disk it'll be the same exact data, two files that are actually one and the same, hence there is no original file. There is data on the disk and two files pointing to it. Only if you delete both files will the OS free the data on disk.
Re: Complete Beginner
Posted: 11 Nov 2012, 15:18
by kiloback
thanks for the info ,because its not native to windows i have to use a commandline utility like "mtee" which im using right now to get the results.
and about hardlink can it link from another partition but same disk?
thanks again btw
Re: Complete Beginner
Posted: 11 Nov 2012, 15:32
by rednoah
Nope, has to be the same filesystem, i.e. same drive/partition.
Re: Complete Beginner
Posted: 11 Nov 2012, 22:00
by buck3y3
In very simple terms...it is kind of like a shortcut, is that basically it?
Re: Complete Beginner
Posted: 12 Nov 2012, 04:56
by rednoah
That's exactly what it's not. On Windows a Shortcut is a normal file, it's data is the path to the actual file.
What you need to understand is that files are links to physical data on the disk. In simple terms, any file is a hardlink in that it point to data on the harddisk. Creating a hardlink means copying the pointer to the data, not the data itself, meaning you have two files pointing to the same physical data. There is no 1-original-1-copy as both are the original.
Google it.

Speaking of beginner...
Posted: 03 Jan 2013, 08:51
by SirLee
the cool web interface, does that publish to a port, or does it only work if you launch it from a gui interface? I have ubuntu server, I installed the .deb package, but I don't know where to go from here. Am I just using the CLI? I've got everything working great on that box (sabnzbd, transmission, couchpotato, sickbeard) the problem is, that process doesn't work 100% of the time. filebot looks like it could be the final piece of the puzzle. I want to clean up downloads that don't work. I mainly want to have it see a movie folder, rename the folder and files beneath correctly (conforming to Plex's standards), and put it in my media library. Is it easy to get there from here?
Re: Complete Beginner
Posted: 03 Jan 2013, 09:37
by rednoah
There is no web interface. You can easily integrate FileBot with any download tool that can run commands on newly downloaded files. See the CLI and Scripting pages for details and have a look at the utorrent-postprocess script.
@see
http://www.youtube.com/watch?v=brGyo2uQzSs
Re: Complete Beginner
Posted: 06 Feb 2013, 09:42
by rednoah
Here's what I came up on how to do things with Transmission on Linux. Should work the same on Mac though:
http://filebot.sourceforge.net/forums/v ... 3382#p3380