Hello!
I’ve prepared a small Chmod tutorial for people who have difficulty understanding the command.
I hope you find it useful. If you find any mistakes, please let me know through the comments below.
[ PNG version ]
Hello!
I’ve prepared a small Chmod tutorial for people who have difficulty understanding the command.
I hope you find it useful. If you find any mistakes, please let me know through the comments below.
[ PNG version ]
Has it ever happened to you that someone requests some help with a problem regarding their computer? You will then usually try to provide assistance over the phone. However hard you try to explain, some problems are just not resolvable on phone. At that time, you wish you had just gone and meet the person. But if the person is in another country, you have a problem. Or maybe you are abroad or at a friend’s place, and want to check how your downloads are going, or do something on your machine?
In those situations, you want to “remote control” your computer.
There are a number of software that allow to do this, starting with Windows’ Remote Desktop Connection. It works well when using windows machines over local networking. However, when you take it through the Internet, it’s slow. There is also the problem of cross-platform compatibility. What if you want to help someone running Windows while you’re on Linux? For those situations, you may want a Virtual Network Computing (VNC) software. Basically, a VNC software comes in the form of two software pieces: the server and the client. You install the server on the PC you want to control, and you connect the client (viewer) to it. The problem with VNC is that it is not beginner-friendly since it requires some configuration, and the server-client concept may not be appealing to all. Also, without some tweaking, VNC can be really slow.
If you want a really simple, cross-platform and free solution, you will want TeamViewer.
TeamViewer comes as a single package, which acts as both server and client. It is also portable, in that it can run without installation (tested on Windows only).
So how do you use it? Just download the setup file (or package), choose to install or run it directly, and you’re basically done.
Now, you’ll be presented with this screen:
Two important things are shown in that screen: An ID and a password, which are unique for your machine. Password is sessional: it changes.
To connect to a person, ask them their ID and password. Put it in the box on the right, and choose what type of connection you want. As you see, you can provide “Remote Support” which will allow you to take control of their machine, “Presentation” which is like a “view-only” mode for presentations, with minimal display elements, “File Transfer”, which allows direct transfer of files between two computers, without having to upload the file first, and “VPN”, which is as if your two computers are connected to the same local network. This mode is great for LAN gaming over Internet. However, if you want only that feature, there are better software out there, like Hamachi or Tunngle.
When you click “Connect to partner”, you’ll have to put their password. And that’s it. If you chose Remote Support, you’ll have their desktop in front of you. You can now execute commands etc, as if you were working on your own machine.
TeamViewer works across Firewalls, NAT etc, so you don’t have to configure anything if your partner or yourself have those in place.
In my opinion, that is the simplest remote controlling a computer can be, so if you want to do that, give TeamViewer a try.
So, a friend of mine wanted to know if she could shutdown her PC automatically at a certain time. Or after a certain period of time. Well it’s possible. And I’m going to show you 3 utilities to do it, and how to do it from within your OS too, in case you don’t want to download. There are a LOT of shutdown utilities out there, but those below, I have used personally.
Shutter is my favourite shutdown utility due to its simplicity, but also because it comes from the author of the great ReNamer that I have already covered on Geekscribes previously.
Basically, you just choose the event that triggers the action. Events can be: countdown, at a specific time, a period of low CPU usage, a process stops, battery low, among others. After that, you just set the action to do: sleep or shutdown the computer, mute volume, lock the computer, among others. Then just click Start. I don’t like that “Start” button. In my opinion, it should have been “Schedule”. If you want the action to take place immediately, just click “Now”. Shutter also offers an extensive set of options, like showing a message before an action takes place.
Shutter also includes a Web Interface if you want to do “Now” actions, or run commands remotely. This is a really great feature for those of you with a download/torrent box. Note, this can be a security problem, so be sure to set a good username and password when configuring the web server in Options.
Shutter comes in Installer and Portable formats.
PowerOff takes another approach at events and actions. It puts everything on the main window. So you just select your action on the left. On the right, set options, like whether you want a warning before the action executes, or whether to force-close applications. Then set the time. Either immediate, or schedule it to execute at a specific time.
There are extensive scheduling options, like at a time, on a fixed day, or a daily schedule, on a weekly schedule, on a day of month, or after a time period elapses. One thing I’d like is the “After” option to allow me to set minutes, hours etc, instead of just seconds.
PowerOff also includes remote-control features, like Shutter. Interestingly, you can have the command execute on a remote computer, if the latter supports it. I haven’t tested that feature though.
PowerOff is portable, and comes with the source code, if ever you want to mess around with it. It’s coded in C/C++ language.
Amp WinOff, as you can see from the screenshot above, offers extensive options. You can set the actions to execute at a specific time (1st frame, top-right), or use a countdown (bottom-left frame), or when according to CPU load (top-right frame). You then set which action to take. It’s called “Shutdown mode” in Amp WinOff. You can even schedule days in advance.
While the program offers a many options and is very customizable, I don’t like the terminology used. Why is there a “Use the current time + 1 minute” and then a countdown feature? Also, I doubt “Lock Computer” is a “Shutdown Mode”. Anyway, those don’t really matter once you get familiar with the program. Now, the second thing that is annoying with Amp WinOff is that the website has been down for a while now, and I can’t find a mirror that’s still alive. The shot you’re seeing above is not from the latest version.
If you can find the utility somewhere, good.
Linux:
Yes, you can execute a sheduled shutdown right from your OS. Let’s start with Linux first. It should work on most major distros, but I only tested on Ubuntu.
Fire up your Terminal/Konsole or whatever it’s called in your distro.
Then the command structure is as this:
shutdown [- shutdown parameters] [ time parameter] [ optional message ] shutdown parameters: r = reboot, h = halt, c = cancel shutdown (time parameter is then not required) Some examples: shutdown -r now <-- Reboot immediately shutdown -h 19:00 <-- Shutdown (Halt) the system at 19h shutdown -h +5 "System will shutdown" <-- Shutdown the system in 5 mins from now, and tell users why.
Quite easy huh? Just note that while a shutdown is scheduled, new users won’t be allowed to login 5 minutes before the shutdown sequence is initiated, i.e. only 5 mins left before shutdown. This is to be considered for multi-user environments.
Windows:
The command is similar to that of Linux, but different syntax and parameter names. Just open a command prompt (type cmd in the search box in Vista/Win7, or Winkey+R, then type cmd, or directly type the commands below in the search box in Win7)
shutdown [- shutdown parameters] [-t xx in seconds] [-c reason] shutdown parameters: r = reboot, s = shutdown, a = abort shutdown Some examples: shutdown -r <-- Reboots computer immediately shutdown -s <-- Shutdown computer immediately shutdown -r -t 60 <-- Restart computer in 60 seconds shutdown -s -t 3600 -c "Computer shutting down" <-- Shutdown in one hour (3600 seconds), and tell user why
You should get a confirmation that the command has been accepted. (E.g. Keys icon in the notification area with a message).
That’s it for this post. If you know other methods for scheduling a system shutdown, or maybe to get your favorite utility listed here, drop us a comment. Thanks!
Hello!
This is like, my second review of a game. My first was Race Driver: GRiD, which was awesome after some tweaking. For today, I’ll be reviewing a game from a little known publisher called City Interactive. It is titled with the very imagination-provoking Sniper: Ghost Warrior.
Hello all.
I am a fervent user of the great browser known as Mozilla Firefox. Been using it since it was version 2.x something. I was so tired with IE offloading tons of viruses on me at that time that I figured that there MUST be a safer browser out there in the wild. I tried a few before settling to Mozilla, namely Maxthon and Kmeleon. I should write an article about alternative browsers someday. *note to self*
Anyway, I like Firefox a lot, or affectionately FF if you want. 3.5x is awesome. 4.x promises to be even better. However, there is one problem that’s been around Firefox since like, forever: memory consumption.
FF consumes a lot of memory when you have many tabs open. And I often have a lot of tabs opened. Specially multiple links from the same source opened in different tabs. I got that bad habit; if it can be considered a bad habit.
So, I was casually browsing someday with around 30 tabs opened when I discovered a nice addon called: BarTab. Don’t ask how they came up with that name, I got no idea. Why would anyone name a memory-recovery addon “BarTab”?
Its purpose is to unload tabs that you haven’t visited in a while, and load them again when you focus (click) on them. It’s like opening the tab again, but automatically.
This simple concept allows you to save quite some memory, specially if you like to leave tabs on, do something else, and come back to your previously opened tabs after a while. It’ll not be a major saving, but around 30-40MB of savings are inorder.
To illustrate and prove if this addon works, I conducted a small test. I opened around 20 tabs from random Google searches (I hope I didn’t catch any virus in doing that!) as well as a few media pages like DeviantArt, Youtube and Toyota Europe’s website (Nice music!). I then let BarTab do its magic while leaving the tabs untouched in the background for a minute or two. (Time delay is configurable).
The results, before and after are below:
Not bad huh? The 20-ish tabs are still there, but unloaded. The only annoying thing about BarTab is that you have to wait a bit for pages to reload. If you have a fast connection, it shouldn’t be a problem, but for those with slower connections, you will probably find the delay slightly annoying.
That’s all for BarTab for now. If you have more tricks to reduce FF’s memory usage, comment box’s found below!
An assisted living care facility like The Residences at Plainview / senior independent living provides residents with extra support with activities of daily living when and how they need it. Services are provided as needed and at an assisted living level of care. For more information, visit now this website or go to a place like harvesthomeinwoodcrossing.com/living-options/assisted-living/.
.
What is assisted living?
As the term “assisted living” implies, assisted living and community senior living care provide residents with assistance with activities of daily living when and how they need it. Assistance may include a home-based program, a personal assistant or personal aide, personal care assistant or personal aide, nursing or personal care aides, home health aides, respite care aides, assisted living technicians like the ones on oceanhillsseniorliving.com/living-options/independent-living/, community assistants, and home health aides. There are facilities that are well-equipped with mobility devices or equipment such as this stairlift at https://certifiedstairlifts.co.uk/ to meet the needs of seniors.
Visit sites such as fallbrookglenseniorliving.com/our-community/ to get an idea.
A resident’s services are limited to those that are listed above. Some states have additional programs.
If a resident requests assisted living care, the local family service agency must provide the resident with a notice of assisted living care or offer to assist the resident in getting the services that are most appropriate to his or her individual needs.
State laws may include limits on how long a resident may be assisted living. In some cases, state and federal programs may reimburse certain costs for assisted living services. Check out sites like www.carltonseniorliving.com/living-options/ for additional guidance.
What is assisted living?
Assisted living like this Assisted Living in Los Angeles, CA provides residents with the care they need when they need it most. This care includes assistance with bathing and eating, medical care and medications, transportation, personal care and assistance with social activities. Some assisted living facilities like the ones from https://www.arborpalmsseniorliving.com/ offer programs for seniors who are unable to live independently.
Is assisted living legal?
Assisted living may be legal under many states’ laws and laws of neighboring states. Please contact your local state attorney general office or local housing office for specific information regarding your rights and responsibilities in this situation. Is assisted living affordable? Assisted living may be affordable, but there are some requirements that need to be considered. There are different kinds of assisted living facilities. Some are available in communities such as the ones from Vista at Simi Valley, where they are often owned and operated by the community itself. Others are available in a private setting. They may require certain level of income to be able to offer the services of an assisted living facility. These assisted living facilities may be located in an individual’s own home or other space. As the name implies, they offer medical and/or psychological assistance.
There are also different kinds of nursing homes. The differences in these are primarily in the type of nursing home. Nursing homes usually are not in an individual’s own home. These are generally either assisted living facilities, long-term care nursing homes or institutionalized nursing homes. Some of the facilities may be very different in design and style from one another and may also have different requirements. Some nursing homes, however, are in a nursing home facility that has a community of nursing homes that are located together. This would include the facilities, e.g., memory care community like the Summerfield of Fresno / memory care nursing homes, that are not owned by a private hospital. The nursing homes that are connected to each other are often called a nursing home community. This is a large area that includes a number of nursing homes and may have different layouts for different nursing homes.
The different types of nursing homes often have different amenities. There may be a large parking lot, pool, gym, tennis courts, golf courses, pools, and more. There may also be restaurants or other places where visitors can go to spend time with residents. Many of the residents who live in the community have lived there for a long time. The nursing homes may have different rates, depending on the type of nursing home that is connected to it. You can visit this site to know more.
Utilities are life-savers. I am usually on the lookout of new ones that give me added functionalities at a low memory cost. Here’s a rundown of 10 very useful utilities I have found. Not all are very light on memory though…
Let’s get started, shall we?