Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Bakit ako gagamit ng linux? anu ba advantage nito + Useful Links

Bakit ka gumagamit ng linux distribution?


  • Total voters
    251
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

assuming may file server ka sa server 2 mo (Samba) pwede mo i-mount yung network drive mo as a CIFS drive. Google mo na lang kung paano gawin yun,.
 
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

mga ka sym kapag ba nag dual boot ako ng linux mint ma a acces ko parin b ung mga drive ko?
for example s windows ko meron c:/ and D:/ then gumawa ako ng parition n E:/ at dun ko ininstall ung linuxmint kapg b pumasok nako s mint makikita ko parin ung drive c: at d: ko? :lol: sorry noob pa e
nasa drive d ko ksi ung mga files for web dev and balak ko sana e access s loob ng linxmint os para ma run ko rin dun ung nasa xammp'
 
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

mga ka sym kapag ba nag dual boot ako ng linux mint ma a acces ko parin b ung mga drive ko?
for example s windows ko meron c:/ and D:/ then gumawa ako ng parition n E:/ at dun ko ininstall ung linuxmint kapg b pumasok nako s mint makikita ko parin ung drive c: at d: ko? :lol: sorry noob pa e
nasa drive d ko ksi ung mga files for web dev and balak ko sana e access s loob ng linxmint os para ma run ko rin dun ung nasa xammp'

In my case na puro linux yung nasa drive ko, i just mount yung drive

sudo mount <prtition> <folder na ehmount mo>

sample
sudo mount /dev/sda1 /media/cdrom

then pasukin mo na doon sa /media/cdrom yung drive

- - - Updated - - -

ito yung drive partition ko

- - - Updated - - -

attachment.php


- - - Updated - - -

attachment.php
 

Attachments

  • 2014-10-06-192526_564x340_scrot.png
    2014-10-06-192526_564x340_scrot.png
    31.2 KB · Views: 103
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

mga ka sym kapag ba nag dual boot ako ng linux mint ma a acces ko parin b ung mga drive ko?
for example s windows ko meron c:/ and D:/ then gumawa ako ng parition n E:/ at dun ko ininstall ung linuxmint kapg b pumasok nako s mint makikita ko parin ung drive c: at d: ko? :lol: sorry noob pa e
nasa drive d ko ksi ung mga files for web dev and balak ko sana e access s loob ng linxmint os para ma run ko rin dun ung nasa xammp'


Ano linuxmint gamit mo? XFCE? Cinnamon? MATE? or KDE?
For this purpose, I think it will help if your drive C and D will automatically mount on boot.
And here's how you can make your Windows Partition (Drive C & D) to automatically mount on boot.
Meaning, hindi mo na kelangan imount everytime na kelangan mo yung mga partition na yun. As if, parang kasama na tlaga sya sa buong FS ng distro mo.

You will be editing the fstab file located at /etc to do this.
1. First, backup the fstab so that in case we made a mistake, we still have a copy of our original fstab file.
Open a terminal and type this command:
sudo cp -p -i /etc/fstab /etc/fstab.backup
This command will create a backup of fstab and name it as fstab.backup

2. We need the UUID of the Windows partition you want to automount, Linux Systems use UUID to recognize our partitions, though
labels can also be used. To know the UUID of the partitions you need, run this command.
sudo blkid
You may recognize your windows partitions from the output of this command via their labels (if they have) or via the "TYPE=" w/c
indicates the type of filesystem the partition is, and because these are windows partition, they will have a "TYPE" of either FAT or NTFS.
So remember, whenever you make partitions, always give it a label and never use NTFS or FAT for linux partitions.

3. Lets make a mount point. Its your choice. But I recommend to always put files inside your home directory. So you may do it this way:
mkdir -p ~/windows
or
mkdir -p ${HOME}/windows
This 2 commands are the same. They will create a folder named windows on your home directory.

4. Now open the fstab file located at /etc.
Now add this line to fstab:

# Add a comment so that you'll remember things.
UUID=<xxxxx> /home/username/windows <type> rw,auto,users,exec,nls=utf8,umask=003,gid=46,uid=1000 0 0

5. Explanation.
# Add a comment so that you'll remember things.
Any line that starts with a "#" on the fstab file is considered as a comment. Its a good practice to always put comments for future reference.

UUID=<xxxxx>
Replace this with the correct UUID you got from the command blkid.

/home/username/windows
Replace this with your preferred mount point. If your a Bash Script writer, keep in mind that fstab is being read by the system on boot, so
bash variables like ${HOME} or symbols like "~" wont work. So dont use those on your fstab file.

<type>
Replace this with the correct type of filesystem of the partition you want to auto mount. This could be ntfs or fat. This info can be also
found from the output of your blkid command.

rw,auto,users,exec,nls=utf8,umask=003,gid=46,uid=1000 0 0
You dont have to care for this. But if you want to know what this arcane parameters are, you may read this.
There are two important things here that must be pointed out though, first is the auto which tells the system to automatically mount this partition at the given mount point. The other is uid=1000 which is simply your user ID. It will help to check your correct UID, run this command on the terminal:
sudo id
A sample output would be like this:
uid=1000(pclogger) gid=1000(pclogger) groups=1000(pclogger),4(adm),7(lp),20(dialout),24(cdrom),
46(plugdev),112(lpadmin),120(admin),122(sambashare)

Make sure the output of id command has 46(plugdev) output which is the equivalent of the gid=46 parameter above.

6. Save fstab then issue this command:
sudo mount -a

7. If things work well, your done. If not, retrieve your fstab backup:
cp -p -f /etc/fstab ~/fstab.mod
cp -p -f /etc/fstab.backup /etc/fstab

The modified fstab that didnt work was saved at your home directory and was named fstab.mod while your last working copy
of fstab was restored. You may now review fstab.mod for any errors and try again.
 
Last edited:
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

question mga ka symb..

Pwede ba akong mag schedule ng backup (tar using cron) from one server to another?

Let's say na I-run ko ung cron sa Server1 pero dapat ma se-save sa Server 2 ung tar files?

Up ko lang tong question ko:lol:
 
gandang umaga mga punkz... :rock: :hi:

napadaan ako sa thread na ito at parang interesting ito... gusto ko matuto kung paano talaga gagamitin yang linux na OS... parang geeky kasi ang dating nito... :giggle:

anyway, mukhang maraming mga linux masters ang nandito ah.. especially si punkz jerjer.. siguro napapadaan din dito si punkz prez..?

very informative ang mga nakikita kong mga reply sa mga tanong kaya siguradong marami akong matututunan dito... :D :peace:
 
sa mga hindi pa nakaka alam ung Software Freedom Day Nov.8 na sa PUP Sta.Mesa.
 
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

nano station ubiquity abot ng 10km

@nicos30
gamit ka ng wine

boss pwede mkahingi ng mismong link? At magkano po sya?
 
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

sa pup din ako graduate sir. san ba gaganapin sa library?
d ko lam san part gaganapin dapat nung Sept.20 yan postponed kasi dumating si Mario :rofl:

boss pwede mkahingi ng mismong link? At magkano po sya?

http://www.olx.ph/index.php/classifieds+directory/q/nanostation

not sure kung brand new yang mga yan or 2nd hand, ang sabi kasi nung boss ko 10k daw ung m5 pero anlau ng range kasi yan gamit namin nung nasa airport pa ako ang range nya is from terminal 3 to terminal 4. pag calculate mo ung diagonal distance ng terminal 3 at 4 more or less 10-20 km
 
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

d ko lam san part gaganapin dapat nung Sept.20 yan postponed kasi dumating si Mario :rofl:



http://www.olx.ph/index.php/classifieds+directory/q/nanostation

not sure kung brand new yang mga yan or 2nd hand, ang sabi kasi nung boss ko 10k daw ung m5 pero anlau ng range kasi yan gamit namin nung nasa airport pa ako ang range nya is from terminal 3 to terminal 4. pag calculate mo ung diagonal distance ng terminal 3 at 4 more or less 10-20 km

aw ang mahal haha. wala po bang from 1.5k~2k lng po na mgnda n po? so far po yung Melon N9 ang nasa list ko eh
 
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

sa cdr king meron ung parang m5, 2k ata kaso pag may dumaan dun sa line of sight napuputol ung connection
 
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

pwede ba i cron ung dropbox?

Gagawa ka ng script(save my backup to one of my dropbox folder). Then yung cron ay tatawag sa script na ginawa mo in a uniform interval ...

- - - Updated - - -

Cron is time-based job scheduler lang yun....so gawa ka ng script which is yung job(na ipasok nya yung backup doon sa dropbox)..Attawagin palagi ni cron yungjob na yu...

Boss=cron
Messeger=script
Client=Dropbox

Si boss in every 1hr tatawagin si messenger na ihatid mo tong lechon doon kay client........ Hope na kuha...

- - - Updated - - -

Dropbox
---cloud computing na pwede gagaawa ka ng local copy(Dropbox folder) sa hardware mo at nag sync yun palagi with your dropbox account pag may bago na file na naipasok sa folder...
 
Re: Bakit ako gagamit ng linux? anu ba advantage nito at ano ba ang mapapal

^Thanks sa idea at nakuha ko..

Problema ko lang is hindi ako marunong sa scripting pero subukan ko maghanap ng tutorials:thumbsup:
 
Mga boss ano po ba mgndang software pang gwa ng liveUsb? Plano ko po ksi iliveusb ang kali linux . Lagi po fail eh nung gngwà ko un mga tut n nbsa ko

In Windows use: Universal USB Installer or UNetbootin.

If you're going to use persistence (so it saves files between sessions), format the USB to Fat32. Kaunting patience kailangan. Akala mo stuck na siya pero pagtingnan mo ung free space sa USB mo nagbabago naman, ok pa yan hintay lang.
 
In Windows use: Universal USB Installer or UNetbootin.

If you're going to use persistence (so it saves files between sessions), format the USB to Fat32. Kaunting patience kailangan. Akala mo stuck na siya pero pagtingnan mo ung free space sa USB mo nagbabago naman, ok pa yan hintay lang.

Salamat po boss. Pag nag format po ng USB laging fat32? or NTFS? Naguguluhan po ksi ako. Sorry po
 
matanong ko nga lang mga sir na bossing na idol .. supported ba nito lahat ng games ? like frozen throne 2k14 at iba pa na games sa xp ? binasa ko kc lahat ng comment .. na ingganyo ako sa mga nakita ko na good comment kay linux :) kc my pisonet ako eh .. pwede ba to pang gaming ?
salamat sa papansin :) pm na lang sa papansin .. mejo busy lang kc eh .. maraming salamat . laking bagay tong threads na to :)
 
matanong ko nga lang mga sir na bossing na idol .. supported ba nito lahat ng games ? like frozen throne 2k14 at iba pa na games sa xp ? binasa ko kc lahat ng comment .. na ingganyo ako sa mga nakita ko na good comment kay linux :) kc my pisonet ako eh .. pwede ba to pang gaming ?
salamat sa papansin :) pm na lang sa papansin .. mejo busy lang kc eh .. maraming salamat . laking bagay tong threads na to :)

Using wine gagana ang mga windows games sa linux....
Install Steam and get DOTA2...

- - - Updated - - -

In Windows use: Universal USB Installer or UNetbootin.

If you're going to use persistence (so it saves files between sessions), format the USB to Fat32. Kaunting patience kailangan. Akala mo stuck na siya pero pagtingnan mo ung free space sa USB mo nagbabago naman, ok pa yan hintay lang.

I perfer Rufus. Mas simple gamitin.

- - - Updated - - -

^Thanks sa idea at nakuha ko..

Problema ko lang is hindi ako marunong sa scripting pero subukan ko maghanap ng tutorials:thumbsup:

I uploaded an Ebook for Bash Tutorial. Check it at the first post of this thread.
 
Back
Top Bottom