The question in my assignment says this:
create a directory temp with all permissions for everybody, that
cannot be deleted
and copy hello.sh in this directory giving execution rights for
everybody, but hello.sh will be executed as the owner.
So I created a directory called temp and gave permissions like this:
chmod 555 temp
but when I try to cp hello.sh to temp I get an error a
I was playing arround with conky and wanted to show an animation..So I took a compdead.gif and used this line to grap all stills from it:gifsicle --unoptimize --explode /home/pieter/temp/compdead.gif --output /home/pieter/temp/temp.gifAbove line creates images in /temp/ that look like this:temp.gif.001
temp.gif.002
temp.gif.003
temp.gif.004
temp.gif.005
..
temp.gif.236
temp.gif.237
temp.gif.238The
I'm trying to grant read and write permissions to the system Temp location to the IIS_IUSRS group.
(Plesk 10.4 centos 5.8 linux apache2 server, with Tomcat5 on port 8080 and Apache Solr)
I get "The connection has timed out" on requesting domain.com:8080 or www.domain.com:8080 or ip.ad.dr.ess:8080
Every reason I can find why this might be seems not to be the case:
Plesk thinks Tomcat is running fine and lists it as an active
service.
The firewall currently has an accept all rule on port 8080
How to setup Tomcat if my user entered "http://192.168.0.1:8080/axis2", it will redirect to http://servername.com:8080/axis2? I want the url/hostname appeared on user's web browser instead of ip address.
Any help will be appreciated.Currently i am using Tomcat 5.5 to host my system.
I'm just learning some Linux commands and will like to know what the "-p" command means please?
$ mkdir temp/stuff/things
$ mkdir -p temp/stuff/things/frank/joe/alex/john
Gedit and medit are two text editors that I know of that allow me to save a backup.
I want to run a command and save its output and its exit code, in different files.
Here's what i am doing:
cmd.exe /C command 1> %TEMP%\output.log 2> %TEMP%\error.log && echo %ERRORLEVEL% > %TEMP%\status || echo %ERRORLEVEL% > %TEMP%\status
If i don't do output redirection (into %TEMP%\output.log and/or %TEMP%\error.log), then exit code is saved just fine.
However, when i r
Hi fellas!
I make a sh script which the following:
Code:
sudo mkdir Temp
sudo mount -o loop output.img Temp
The command mounts the img.Thats fine.But it moun s it as read only.But I need to edit/delete some files inside it and repack it as ext4 using this command:
Code:
sudo ./mkuserimg.sh -s Temp factoryfs.img ext4 ./temp 893386752B
The part I'm lacking is,How do I remount t