quarta-feira, 11 de Março de 2009

Ubuntu Perfeito

O Script Ubuntu perfeito agora traz novos temas no seu menu de serviços.

Na realidade estes já existiam, no entanto, um problema com o tema Dust que não conseguia ser descarregado da internet impossibilitada a execução de novos temas pelo menu de serviços. Agora já corrigí os links e tá tudo OK.

Link para download : Ubuntu Perfeito 8.14.13

roubado daqui

sexta-feira, 6 de Fevereiro de 2009

Windows Vista: the least popular OS in history

Once upon a time, Microsoft crowed that Windows Vista would be twice as popular as XP. Research firm Ovum, Ltd., predicted a more modest 15 percent switchover in the first year, but gushed that Vista would be “the fastest-moving operating system ever.” IDC forecast 10 percent, relatively anemic compared to XP’s 14 percent in the first year, but a decent showing. And now? More than two years after its launch Vista has managed a penetration of just 9 percent, according to a Forrester Research report released last week, giving it the dubious distinction of being the least popular new Windows OS out of the gate, ever. But things are looking up for Vista. This year finally will be the big one, says Forrester. Really. Thirty-one percent of the 962 North American and European IT decision makers interviewed for the report have already begun migrating to Vista; another 26 percent plan to start in 2009 or later.

On the other hand, “IT decision makers don’t have an entirely rosy outlook for Windows Vista,” wrote analyst Benjamin Gray. Some 28 percent of respondents have not yet decided about whether or not to migrate, and 15 percent plan on skipping Vista altogether and going straight to Windows 7 when a final version is released in 2010. Here’s how enterprises currently break out, according to the report: 71 percent still use Windows XP, 10 percent use Windows 2000, 9 percent use Vista, Apple’s Mac OS X and “other” each garner 3 percent, and 2 percent use Linux.

Source: PC World

segunda-feira, 26 de Janeiro de 2009

Barra de menu desapareceu

Eis um problema que ja me aconteceu 2 vezes.
Á 2ª achei que nao devia de voltar a instalar o linux.... e fui em busca da solução.

a que foi testada e funcionou


* Clicar com botão direito na área de trabalho e clicar em "Criar lançador";
* Criar o comando "gnome-panel" e, ao clicar nesse lançador, o painel (barras) reaparecerá;
* Apagar o lançador.

a que não foi destada mas fica para quem precisar


use the command line, you can do
Code:

sudo apt-get remove --purge ubuntu-desktop && sudo apt-get install ubuntu-desktop

domingo, 28 de Dezembro de 2008

Como alterar as permissões de ficheiros/pastas

* Ler #Notas Gerais

Right click on files/folders -> Propriedades

Separador Permissões -> Leitura/Escrita/Executar (Confira as permissões para Dono/Grupo/Outros)

Como alterar o dono de ficheiros/pastas

* Ler #Notas Gerais

sudo chown system_username /location_of_files_or_folders

Se quiser alterar recursivamente a posse do conteúdo de todos os ficheiros e pastas, use a opção -R igual a isto:

sudo chown -R system_username /location_of_files_or_folders

Como alterar o grupo dono de ficheiros/pastas

* Ler #Notas Gerais

sudo chgrp system_groupname /location_of_files_or_folders

Se quiser alterar recursivamente a posse de grupo do conteúdo de todos os ficheiros e pastas, use a opção -R igual a isto:

sudo chgrp -R system_username /location_of_files_or_folders


http://www.guiaubuntupt.org/wiki/index.php?title=Ubuntu_gutsy#Como_alterar_as_permiss.C3.B5es_de_ficheiros.2Fpastas

segunda-feira, 22 de Dezembro de 2008

instalar Urban terror 4.1 com script

http://www.beer-garden.org/bg2/modules/wfdownloads/singlefile.php?cid=1&lid=171

Correr scripts

$ chmod +x deltemp

The x marks the file as executable; if you list the permissions for the deltemp file afterward, you will see the x in position four, confirming this:

$ ls -l deltemp
-rwx------ 1 hermie other 55 Feb 19 14:02 deltemp

If you want other users to be able to run this script, give them both read and execute permission, like so:

$ chmod ugo+rx deltemp
$ ls -l deltemp
-rwxr-xr-x 1 hermie other 55 Feb 19 14:04 deltemp

Now the permissions show that any user can view or execute the deltemp script, but only you can modify it. To run the script, just enter its name at the command prompt, prefixed with ./ as shown here:

$ ./deltemp

Note: If the current directory is in the PATH environment variable, you can omit the ./ before the name.

But there's one important thing you should know about running shell scripts this way. When you enter the shell script name and tell Bash to run it, a subshell is created for the execution of the script. This subshell inherits all the shell environment variables, including the current directory, but you lose any changes made to that environment when the script terminates.

What's the practical meaning of this? Well, you might expect that the current directory would be /tmp after you've run the deltemp script, but it's not. You'll still be in hermie's home directory. And if we had set an environment variable inside the script, its value would be good only during the execution of the script. Here's an example to demonstrate this point. Create an executable setvar script with these lines:

PS1='My Prompt: '
echo $PS1

Now watch how the values of the current directory and the PS1 variable change:

$ PS1='Bash Me! '
$ echo $PS1
Bash Me! PS1 before setvar.
$ setvar
My Prompt: PS1 during setvar.
$ echo $PS1
Bash Me! PS1 after setvar.

It looks like this script is absolutely useless for the intended purpose of setting the environment variable. But a little trick will make it work the way you want. Run the script by prefixing the name with a dot and a space, like so:

. setvar

This tells Bash to run the setvar script in the current shell environment, instead of creating a temporary subshell. Verify for yourself that the command prompt does in fact change to My Prompt: after running this script.

http://lowfatlinux.com/linux-execute-script.html

sábado, 18 de Outubro de 2008

rar files

Open a terminal window and type in:
sudo apt-get install rar
sudo ln -fs /usr/bin/rar /usr/bin/unrar

After that you can find Archive Manager in the Gnome menu under Applications -> Accessories.

Acerca de mim