Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC (/showthread.php?tid=113136) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
- gugahoi - 2012-01-10 N3MIS15 Wrote:thanks. but i was hoping for a way to close it remotely when it has been started localy.. maybe i should have explained that.. Then it depends on how you installed it. You can try: Code: sudo service maraschino stop - N3MIS15 - 2012-01-10 didnt work. Basicly when my server starts it runs maraschino with command: Code: python /mnt/cache/.maraschino/Maraschino.py At the moment to update, i comment out that line from my start script, reboot then update and finaly restart maraschino. I am looking for a better way to achieve this on unraid environment. If we had the abilty to create pidfiles this would make things alot easier.. - gugahoi - 2012-01-10 N3MIS15 Wrote:didnt work. Oh I have no idea how unRaid works. There is no way to gracefully shut it down tho. Why do you need to do that? - N3MIS15 - 2012-01-10 to update maraschino from git. (This is also the reason i am hoping an update function inside maraschino comes soon) EDIT: The unraid Web UI gives me a PID no. with this info would it be possible to kill it? Code: root 4389 1 0 20:40 ? 00:00:07 python /mnt/cache/.maraschino/Maraschino.py 4389=pid - gugahoi - 2012-01-10 N3MIS15 Wrote:to update maraschino from git. If you are just running from the Flask development server you can try and do git pull as it automatically detects changes and restarts the server. I'm not 100% sure this will work but you can give it a shot. If you have the PID a "kill" command should work I believe (otherwise try "killall") but someone else's input would be nice as I'm no linux expert. - N3MIS15 - 2012-01-10 kill 4389 worked. thanks for the help, i was hoping to make a script but i will settle for a manual solution - stourwalk - 2012-01-10 Hi, Now that you've changed the dependencies around, whats the easiest way to install this on UnRaid? Might even be tempted to investigate their .plg format once I've got it installed... - percula - 2012-01-10 N3MIS15 Wrote:kill 4389 worked. thanks for the help, i was hoping to make a script but i will settle for a manual solution Remember that the PID will be different each time you run it. You can find the PID fairly easily from the CLI "ps -ef | grep marashino" find the PID and kill PID# - m0uthless - 2012-01-10 Hi all! I tryied to install Maraschino on W7 following this steps (http://forum.xbmc.org/showpost.php?p=956093&postcount=632) but i have a lot of problems. When i type python setup.py my cmd says that Python is not a recognized program so i use C:\Python27\python.exe setup.py but i have this error: c:\Python27\python.exe: can't open file 'c:\HTPC-Apps\Maraschino\setup.py': [Err no 2] No such file or directory I checked my Maraschino directory and setup.py are not present. How can i fix? - HarryRosen - 2012-01-10 for your unraid install do you have to install the other parts like last time? or just clone the git and startup? - dannycorker - 2012-01-10 I have it running quite happily on unRAID now. Just pulled from git, configured settings and ran Maraschino.py. However, adding this to startup seemed to cause a hang, no idea why. So i just login with putty at boot, start a screen and launch Maraschino manually. Would love to see someone make a package for unMENU, might have a look after uni exams. - HarryRosen - 2012-01-10 ok cool, going to try it tonight - Mizaki - 2012-01-10 For when XBMC locks I use: Code: kill -9 `ps -e | grep xbmc | sed 's/^ *//g' | cut -d " " -f1` - karandras24 - 2012-01-10 m0uthless Wrote:Hi all! Ignore that part mate, just copy the settings example, notepad it , enter your settings, save and then just run maraschino. - Mar2zz - 2012-01-10 Mizaki Wrote:For when XBMC locks I use: Code: pgrep -f 'maraschino.py' | xargs kill -9 |