Jump to content

aptalca

Community Developer
  • Posts

    3,064
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by aptalca

  1. Good to have you back, man. I used your archVM quite a bit.
  2. Arj?? haha don't bother with that one. I don't think anyone's used it in decades
  3. hurricane is the fella responsible, me and aptalca are enjoying the fruits of his labours. haha yeah, hurricane does all the back end work. I just whip up a quick little docker file, point it to hurricane's baseimage and get all the glory
  4. Not British here. I had too google him lol
  5. I believe /boot is the partition that holds the kernel and whatever else is needed before the kernel is loaded. I am not sure how it is handled after boot in ubuntu and/or whether mounting the flash disk as /boot would cause any issues in a container.
  6. lol, never used krusader I was using nautilus on my vm for all large transfer or delete operations (try to delete a folder with several thousands of files on a samba share in windows explorer on a laptop via wifi, you would want to shoot yourself). Since I scrapped the vm, I was using mc in screen on unraid terminal. Dolphin is nicer than nautilus for sure, but I gotta check out krusader, too
  7. Ahh, so you went with the second option of installing. In that case, you can just hit the save button underneath where you enter the repositories and it should update the ones already saved. After that the new templates should show up. The picture I posted is for the community repositories plugin. It is pretty awesome as you can browse all the containers available by all the devs, Then you can click on any one of their container logos to add the specific container. The plugin pulls the info from all the repositories. Here's the page for the plugin: http://lime-technology.com/forum/index.php?topic=39106.0
  8. I just added it today, you might have to update the repositories for it to show up
  9. haha the nerd pack is cool, although I'm not too crazy about the name, lol
  10. DigiKam is updated to 4.9.0 from 3.5.0. Last official stable release for ubuntu 14.04 was 3.5.0. I am using a different repository to install the latest. I had to do a lot of testing to make sure it worked properly before updating. I added the ability to change the resolution. Default is 1280x720, but you can change the WIDTH and HEIGHT variables in the Advanced View window of the container settings. (1080p is a lot more functional on a high res display, but may affect performance on poor or remote network connections) I also added an EDGE variable to enable future updates. Set to 1 for auto updates on start up. I believe it is stable enough that this should be the last update to this container for a while.
  11. Just had to do this the other day for lychee. First exec into the MariaDB container with docker exec -it MariaDB bash Then get into mysql by TERM=xterm mysql and then you can create the user and grant permissions as sparkly noted
  12. ALL DIGIKAM USERS (if there are any ) I screwed up. I missed another config file that digikam uses (horrible documentation). This file in the current release is saved within the container and will be lost during the next update. If you would like to keep your existing settings and database, please perform the following BEFORE you update (update will be released in a couple of days) Open the WebUI, click on browse and then quit Go to the unRaid terminal and enter into the digikam docker with the following command: docker exec -it DigiKam bash Then enter the following commands: mkdir -p /config/.kde cp -Rp /nobody/.kde/* /config/.kde/ rm -r /nobody/.kde ln -s /config/.kde /nobody/.kde chown nobody:users /nobody/.kde chown -R nobody:users /config/.kde After that you can update and your setting should be preserved. All future updates will also preserve settings (I hope) EDIT: I have been testing this extensively and I am confident that the above will preserve your app settings. If you update without doing the above, just point to the same library folder (/config) upon first launch and you should still have your albums and tags, but you will lose a lot of the gui settings like how thumbs are displayed and such.
  13. No problem [emoji3] Do you mean basic copy paste or is there a specific clipboard function in caliber that I'm not aware of? If you're trying to copy and paste from your local computer or another browser window into calibre, I don't think that's going to work. I believe that's a limitation of most vnc or rdp systems. Although some have special workarounds or features that allow it. By default the local and remote clipboards are not shared. For instance the vnc/rdp server used in this case (guacamole) allows you to copy things within the app which you can access by bringing up the side menu (ctrl+alt+shift). But I never really used it myself.
  14. DigiKam docker added WebUI opens the desktop GUI in the browser During the first run, make sure you select /config as the library location
  15. Could the logo pack be installed during startup of the container based on an environment setting the user controls? Kind of like how needo has the edge setting in his docker containers for installing latest versions as opposed to stable
  16. figured it out 2 problems: 1) I forgot to chown nobody:users autostart 2) missing some dependencies (libnotify4 and libwxgtk2.8-dev) Oh, this is glorious Thanks so much and sorry for kind of hijacking the thread. bottom line is, the base image is working really well. in the boinc container, all I had to do was install the main app, drop in the autostart and figure out the volume and port mappings
  17. Should be My firstrun.sh installs boinc and starts the client as nobody with the following: su -c "cd /config && ./boinc_7.2.42_x86_64-pc-linux-gnu.sh" -s /bin/sh nobody su -c "/config/BOINC/run_client --daemon" -s /bin/sh nobody when I exec into the container I see that the client is running as nobody my autostart for openbox has the following xsetroot -solid black -cursor_name left_ptr /config/BOINC/run_manager EDIT*** Oh wait, I think I forgot to change ownership of autostart to nobody
  18. Boinc has separate client and manager Client runs all the time in the background and manager is the gui to control the client Easiest way to install is to download their script from here: http://boinc.berkeley.edu/dl/boinc_7.2.42_x86_64-pc-linux-gnu.sh Copy it to the config folder, when run, the script creates a folder BOINC and puts all install and data files in that folder. the run_client script under BOINC/ starts the client and the run_manager runs the GUI when I open the WebUI of my install, I get a blank screen and the following lines keep repeating in the log: Fri May 1 15:06:33 2015 VNCSConnST: Client pixel format depth 16 (16bpp) little-endian rgb565 guacd[319]: INFO: Using fallback PATBLT (server is ignoring negotiated client capabilities) guacd[319]: INFO: Using fallback PATBLT (server is ignoring negotiated client capabilities) guacd[319]: INFO: Using fallback PATBLT (server is ignoring negotiated client capabilities) guacd[319]: INFO: Using fallback PATBLT (server is ignoring negotiated client capabilities) May 1 15:06:33 d2bec288fc97 guacd[319]: Using fallback PATBLT (server is ignoring negotiated client capabilities) May 1 15:06:33 d2bec288fc97 guacd[319]: Using fallback PATBLT (server is ignoring negotiated client capabilities) May 1 15:06:33 d2bec288fc97 guacd[319]: Using fallback PATBLT (server is ignoring negotiated client capabilities) May 1 15:06:33 d2bec288fc97 guacd[319]: Using fallback PATBLT (server is ignoring negotiated client capabilities)
  19. just to test, I tried to convert my boinc docker to the webrdp by using sparkly's First I created a test base image: https://github.com/aptalca/docker-webrdp-base and https://registry.hub.docker.com/u/aptalca/docker-webrdp-base/dockerfile/ (basically removed all handbrake related processes) Then I created a boinc docker that installs boinc, and creates an autostart file with the boinc manager start command: https://github.com/aptalca/docker-rdp-boinc/tree/development and https://registry.hub.docker.com/u/aptalca/docker-rdp-boinc-dev/dockerfile/ But unfortunately I am getting a blank screen when I open the WebUI
  20. Hi hurricane, great job on the guacamole server and creating web apps out of desktop apps. It is revolutionary and took the concept of unraid/docker to the next level. I saw sparkly's handbrake that is based your guac server and thought it would be great to have a base image that incorporates all the common elements of the guac server and what it needs to have web based rdp gui for other dockers. That way others can use that base and build new dockers. Please see my suggestion to sparkly over here and let me know what you think: https://lime-technology.com/forum/index.php?topic=39624.msg370739#msg370739 Thanks
  21. OK, I went through the repo and I'm starting to understand how it comes together. Would you and hurricane be interested in creating a base image/container for this? It would include all the common files and settings, like setting the unraid user, copying the guac server files, xrdp, etc. That way, whenever someone develops a new docker, they can use that base as a starting point which will lead to 1) significant space saving as the base image (several hundred megs I presume) would be shared between different containers the same way phusion base is 2) Updates and installs would be much faster 3) Building containers for the devs would be much faster I created a base image/container for my rdp stuff: https://registry.hub.docker.com/u/aptalca/docker-rdp-base/dockerfile/ which only has xrdp, lxde and wget installed and my build time went from 25min to 5 min because docker simply imports the already built base image In my rdp based dockers, instead of doing FROM phusion:baseimage, I do FROM aptalca:docker-rdp-base What do you think?
  22. Dude, how do you guys do that? Is it with guacamole? I gotta figure out how to do the browser rdp for specific apps, too, I am pretty jealous
×
×
  • Create New...