Posts

Showing posts from September 23, 2018

Shortcut to display the preview of all workspaces in unity

Image
Clash Royale CLAN TAG #URR8PPP up vote 1 down vote favorite In unity, does anyone know a shortcut to display the preview of all workspaces (as if you clicked the button of the workspaces on the dock)? I sometimes would like to have an overview of which desktops are already occupied or not before moving to another desktop. So far, to achieve that, I have to click on the button of the workspaces (on the dock). I am currently using an Ubuntu VM on a Mac OS X host. 16.04 unity mac workspaces dock share | improve this question edited Mar 7 at 15:53 asked Mar 7 at 15:40 nbro 124 6 add a comment  |  up vote 1 down vote favorite In unity, does anyone know a shortcut to display the preview of all workspaces (as if you clicked the button of the workspaces on the dock)? I sometimes would like to have an overview of which desktops are already occupied or not before moving to another desktop. So far, to...

Angular CLI & Jenkins continous integration permissions

Image
Clash Royale CLAN TAG #URR8PPP up vote 1 down vote favorite I'm using jenkins for a continuous integration with angular cli, here are my steps : Push to github Jenkins pull the code from my github repository, do npm install and ng build Everything is fine until here. My problem is when I try to copy all the files build in /var/lib/jenkins/workspace/mywebsite/dist to /var/www/html/mywebsite This directory is managed by Nginx. I've got this error : cp: cannot create regular file '/var/www/html/mywebsite/./inline.bundle.js': Permission denied Can someone help me ? Thanks permissions jenkins share | improve this question edited Mar 7 at 16:07 Thomas Ward ♦ 41.5k 23 112 166 asked Mar 7 at 15:50 andy200486 8 2 Did you use sudo when you copied data over? Or, have you considered just symlinking the directory rather than copying data? – Thomas Ward ♦ Mar 7 at 15:57 ...