WineTipsI'm planning to mirror it! Stay tuned!
The scope of this Blog is collect in one place all my experiences with linux SuSE. In summary, this is a sort of troubleshooting! If u want u can take my experiences and use it to resolve your own problems (cannot resolve your personal problem wit life yet :D). You can write me if u need help but don't expect too much from me!
domenica, dicembre 19, 2004
WineTips
If you want configure wine easy, I suggest you this site
sabato, dicembre 18, 2004
change file permissions
Again a simple command to simplefy our life on linux/unix machines :D
As you know I am a webmaster and usually I need to upload files on webservers that manage permissions in different ways from me on my machine and I have to chmod a large amount fo files. Using following command I can make this work in seconds :D
Feel free to experiment and change this command on your machine
bye
As you know I am a webmaster and usually I need to upload files on webservers that manage permissions in different ways from me on my machine and I have to chmod a large amount fo files. Using following command I can make this work in seconds :D
find . -type d -name public_html -exec chmod 0755 {} \;It searches (using find recursively (ie it checks folders and sub folders/directories and sub directories) for a directory (-type d) called (-name) public_html and when it does it runs the command (-exec) chmod 0755 (which sets the permissions so that the owner can read, write and execute/open the folder and all other users can read and execute/open the folder).
Feel free to experiment and change this command on your machine
bye
Iscriviti a:
Post (Atom)